@charset "UTF-8";
/* ---------------------------
  A Modern CSS Reset
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul {
  padding: 0;
}

ul, ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --blue: #0075c1;
  --lightblue: #E6F1F6;
  --skyblue: #32ADA9;
  --white: #ffffff;
  --black: #000000;
  --gray: #cccccc;
  --lightgray: #F9F9F9;
  --orange: #F05A24;
  --indigo: #1A7FC6;
  --red: #EC1C24;
  --baseColor: var(--red);
  --bgMainColor: var(--lightgray);
  --bgSubColor: var(--lightblue);
  --fontMainColor: var(--black);
  --borderMainColor: var(--gray);
  --mainFont: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3", "Hiragino Sans", Meiryo, sans-serif;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--mainFont);
  font-weight: 400;
  color: var(--fontMainColor);
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
}

html.is_not_scroll, body.is_not_scroll {
  overflow: hidden;
}

body > footer {
  position: sticky;
  top: 100vh;
}

a {
  color: var(--fontMainColor);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp {
    display: inline;
  }
}

.br-sp-none {
  display: inline;
}
@media screen and (max-width: 640px) {
  .br-sp-none {
    display: none;
  }
}

/* ---------------------------
  component
----------------------------- */
.c-cat {
  width: 80px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--blue);
  margin-top: 0.25em;
}
@media screen and (max-width: 640px) {
  .c-cat {
    margin-top: 0;
  }
}
.c-cat--orange {
  background-color: var(--orange);
}
.c-cat--indigo {
  background-color: var(--indigo);
}

/* ---------------------------
  header
----------------------------- */
.header {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 2000;
    width: 100%;
  }
}

.header-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 896px) {
  .header-head {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .header-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-head__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .header-head__logo a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .header-head__logo a {
    gap: 10px;
  }
}
@media screen and (max-width: 640px) {
  .header-head__logo img:first-of-type {
    width: 34px;
  }
}
@media screen and (max-width: 640px) {
  .header-head__logo img:last-of-type {
    width: 180px;
  }
}

.header-head__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-head__nav li {
  display: flex;
  align-items: center;
}
.header-head__nav li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #808080;
  margin: 0 32px;
}
.header-head__nav a {
  display: block;
  font-size: 13px;
  font-weight: bold;
  transition: 0.2s ease-in;
}
@media screen and (min-width: 640px) {
  .header-head__nav a:hover {
    color: var(--blue);
  }
}

.header-foot {
  border-top: 1px solid var(--borderMainColor);
}

.header-foot__nav {
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 40px;
  padding-right: 40px;
  height: 100%;
}
@media screen and (max-width: 1080px) {
  .header-foot__nav {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .header-foot__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bgSubColor);
    padding: 30px 20px 130px;
    overflow-y: auto;
  }
}

.g-nav {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
}

.g-nav__item {
  border-left: 1px solid var(--borderMainColor);
}
.g-nav__item:last-of-type {
  border-right: 1px solid var(--borderMainColor);
}
.g-nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  height: 50px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.2s ease-in;
}
.g-nav__item a img {
  transition: 0.2s ease-in;
}
@media screen and (min-width: 640px) {
  .g-nav__item a:hover {
    background-color: var(--blue);
    color: #ffffff;
  }
  .g-nav__item a:hover img {
    filter: brightness(0) invert(1);
  }
}
@media screen and (max-width: 1080px) {
  .g-nav__item a {
    gap: 0.5em;
    font-size: 13px;
  }
}
.g-nav__item.current a {
  background-color: var(--blue);
  color: #ffffff;
}
.g-nav__item.current a img {
  filter: brightness(0) invert(1);
}

.g-nav__item--indigo.current a {
  background-color: var(--indigo);
}

.g-nav__item--skyblue.current a {
  background-color: var(--skyblue);
}

.header-spnav {
  display: none;
}
@media screen and (max-width: 896px) {
  .header-spnav {
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: calc(100vh - 50px);
    height: calc(100dvh - 50px);
    background-color: #ffffff;
    padding: 20px 10px 150px;
    overflow-y: auto;
  }
}

.g-nav-sp__item {
  border-bottom: 1px solid #cccccc;
}
.g-nav-sp__item:first-of-type {
  border-top: 1px solid #cccccc;
}
.g-nav-sp__item a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 1em;
  padding-left: 2.5em;
  background-image: url(../img/common/right_chevron_blue.svg);
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: left 20px center;
}

.header-head__btn {
  display: none;
  width: 50px;
  height: 50px;
  padding: 16px 12px;
  background-color: var(--blue);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  cursor: pointer;
}
@media screen and (max-width: 896px) {
  .header-head__btn {
    display: block;
  }
}
.header-head__btn span {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: #ffffff;
  transform-origin: left;
  transition: 0.3s ease-in-out;
}
.header-head__btn.is_active span:nth-of-type(1) {
  transform: rotate(42deg);
}
.header-head__btn.is_active span:nth-of-type(2) {
  opacity: 0;
}
.header-head__btn.is_active span:nth-of-type(3) {
  transform: rotate(-42deg);
}
.header-head__btn.is_active .menu-trigger__inner {
  transform: translateX(4px);
}

.header-head__btn__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}

/* ---------------------------
  sp-fixed-menu
----------------------------- */
.sp-fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
@media screen and (max-width: 896px) {
  .sp-fixed-menu {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--black);
  }
}

.sp-fixed-menu__item {
  background-color: var(--bgMainColor);
}
.sp-fixed-menu__item a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sp-fixed-menu__item span {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  background-color: var(--blue);
  padding: 60px 0;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 12px 0;
    margin-bottom: 50px;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer-inner {
    justify-content: center;
  }
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 640px) {
  .footer-info {
    display: none;
  }
}

.f-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.f-nav__item a {
  font-size: 14px;
  color: #ffffff;
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .f-nav__item a:hover {
    text-decoration: underline;
  }
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  color: #ffffff;
  font-size: 13px;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .footer-copyright {
    text-align: center;
    font-size: 12px;
  }
}

/* ---------------------------
  post
----------------------------- */
.post > *,
.wp-editor > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post > *:first-child,
.wp-editor > *:first-child {
  margin-top: 0 !important;
}
.post > *:last-child,
.wp-editor > *:last-child {
  margin-bottom: 0 !important;
}
.post h1:not([class]),
.wp-editor h1:not([class]) {
  margin-top: 2em;
  font-size: 20px;
  font-weight: bold;
}
.post h2:not([class]),
.wp-editor h2:not([class]) {
  margin-top: 2em;
  font-size: 18px;
  font-weight: bold;
  color: var(--blue);
}
.post h3:not([class]),
.wp-editor h3:not([class]) {
  margin-top: 1.5em;
  font-size: 15px;
  font-weight: bold;
}
.post h3:not([class])::before,
.wp-editor h3:not([class])::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  display: inline-block;
  background-color: var(--blue);
  margin-right: 0.4em;
  margin-bottom: 0.1em;
}
.post h4:not([class]),
.wp-editor h4:not([class]) {
  margin-top: 2em;
  font-size: 15px;
  font-weight: bold;
  color: var(--blue);
}
.post h5:not([class]),
.wp-editor h5:not([class]) {
  margin-top: 1.5em;
  font-size: 14px;
  font-weight: bold;
}
.post h6:not([class]),
.wp-editor h6:not([class]) {
  font-size: 14px;
  font-weight: bold;
}
.post p:not([class]),
.wp-editor p:not([class]) {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .post p:not([class]),
  .wp-editor p:not([class]) {
    font-size: 13px;
  }
}
.post strong, .post strong > *,
.wp-editor strong,
.wp-editor strong > * {
  font-weight: bold;
}
.post em, .post em > *,
.wp-editor em,
.wp-editor em > * {
  font-style: italic;
}
.post del,
.wp-editor del {
  text-decoration: line-through double var(--noticeColor);
}
.post blockquote,
.wp-editor blockquote {
  padding: 0.5em;
  background-color: #f2f2f2;
}
.post a:not([class]),
.wp-editor a:not([class]) {
  color: var(--blue);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  font-size: 14px;
}
@media screen and (min-width: 640px) {
  .post a:not([class]):hover,
  .wp-editor a:not([class]):hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .post a:not([class]),
  .wp-editor a:not([class]) {
    font-size: 13px;
  }
}
.post ul:not([class]),
.wp-editor ul:not([class]) {
  list-style: disc;
  margin: 1.5em 0;
  padding-left: 1em;
}
.post ul:not([class]) li,
.wp-editor ul:not([class]) li {
  font-size: 14px;
  margin: 0.5em 0;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .post ul:not([class]) li,
  .wp-editor ul:not([class]) li {
    font-size: 13px;
  }
}
.post ul:not([class]) li::marker,
.wp-editor ul:not([class]) li::marker {
  color: var(--blue);
  font-size: 1em;
  line-height: 1;
}
.post ul:not([class]) li:first-of-type,
.wp-editor ul:not([class]) li:first-of-type {
  margin-top: 0;
}
.post ul:not([class]) li:last-of-type,
.wp-editor ul:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.post ol:not([class]),
.wp-editor ol:not([class]) {
  list-style: none;
  counter-reset: ol_number;
  margin: 1.5em 0;
  padding-left: 0;
}
.post ol:not([class]) li,
.wp-editor ol:not([class]) li {
  font-size: 14px;
  margin: 0.5em 0;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .post ol:not([class]) li,
  .wp-editor ol:not([class]) li {
    font-size: 13px;
  }
}
.post ol:not([class]) li:first-of-type,
.wp-editor ol:not([class]) li:first-of-type {
  margin-top: 0;
}
.post ol:not([class]) li:last-of-type,
.wp-editor ol:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.post ol:not([class]) li::before,
.wp-editor ol:not([class]) li::before {
  counter-increment: ol_number;
  content: counter(ol_number) ".";
  font-weight: bold;
}
.post table,
.wp-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.post table caption,
.wp-editor table caption {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.8em;
  text-align: left;
}
.post table th, .post table td,
.wp-editor table th,
.wp-editor table td {
  padding: 0.8em 1em;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #777777;
}
@media screen and (max-width: 640px) {
  .post table th, .post table td,
  .wp-editor table th,
  .wp-editor table td {
    font-size: 13px;
  }
}
.post table th,
.wp-editor table th {
  background-color: var(--bgMainColor);
  font-weight: bold;
}
.post table a:not([class]),
.wp-editor table a:not([class]) {
  font-size: 1em;
  color: var(--fontMainColor);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  word-break: break-all;
}
@media screen and (min-width: 640px) {
  .post table a:not([class]):hover,
  .wp-editor table a:not([class]):hover {
    text-decoration: none;
  }
}
.post .aligncenter,
.wp-editor .aligncenter {
  text-align: center;
}
.post .aligncenter img,
.wp-editor .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post .alignleft,
.wp-editor .alignleft {
  text-align: left;
}
.post .alignleft img,
.wp-editor .alignleft img {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post .alignright,
.wp-editor .alignright {
  text-align: right;
}
.post .alignright img,
.wp-editor .alignright img {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.post > img,
.wp-editor > img {
  margin-top: 2em;
  margin-bottom: 2em;
}
.post img,
.wp-editor img {
  display: block;
}
.post img.aligncenter,
.wp-editor img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post img.alignleft,
.wp-editor img.alignleft {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post img.alignright,
.wp-editor img.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.post .gallery,
.wp-editor .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 640px) {
  .post .gallery,
  .wp-editor .gallery {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.post .gallery br,
.wp-editor .gallery br {
  display: none;
}
.post .gallery img,
.wp-editor .gallery img {
  border: none !important;
  margin: 0 !important;
}
.post .gallery-item,
.wp-editor .gallery-item {
  float: none !important;
  margin: 0 !important;
  width: 100% !important;
}
.post .cols2,
.wp-editor .cols2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 1.5em 0;
}
@media screen and (max-width: 640px) {
  .post .cols2,
  .wp-editor .cols2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.post .cols3,
.wp-editor .cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 1.5em 0;
}
@media screen and (max-width: 896px) {
  .post .cols3,
  .wp-editor .cols3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .post .cols3,
  .wp-editor .cols3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ---------------------------
  top - common
----------------------------- */
.top-common-section {
  padding: 100px 0;
}
@media screen and (max-width: 896px) {
  .top-common-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .top-common-section {
    padding: 40px 0;
  }
}
.top-common-section + .top-common-section {
  border-top: 1px solid var(--borderMainColor);
}

.top-common-head {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 896px) {
  .top-common-head {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .top-common-head {
    justify-content: center;
    gap: 0.6em;
    font-size: 22px;
  }
}
.top-common-head span {
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase;
}
@media screen and (max-width: 896px) {
  .top-common-head span {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .top-common-head span {
    font-size: 13px;
  }
}

/* ---------------------------
  top - hero
----------------------------- */
.hero {
  padding: 88px 0;
  background-color: var(--blue);
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .hero {
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .hero {
    padding: 50px 0 40px;
  }
}

.hero__slogan {
  margin-bottom: 88px;
}
@media screen and (max-width: 640px) {
  .hero__slogan {
    margin-bottom: 36px;
  }
}
.hero__slogan img {
  margin-inline: auto;
  width: 68%;
}
@media screen and (max-width: 640px) {
  .hero__slogan img {
    width: 88%;
    max-width: 400px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 896px) {
  .hero__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }
}
@media screen and (max-width: 640px) {
  .hero__grid {
    gap: 56px;
  }
}

.hero-content__lead {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 896px) {
  .hero-content__lead {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .hero-content__lead {
    font-size: 12px;
  }
}

.hero-content__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 640px) {
  .hero-content__head {
    gap: 8px;
  }
}
@media screen and (max-width: 1080px) {
  .hero-content__head img {
    height: 56px;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .hero-content__head img {
    height: 42px;
  }
}
.hero-content__head .badge {
  background-color: var(--black);
  border-radius: 2em;
  font-size: 14px;
  font-weight: bold;
  padding: 0.5em 1.2em;
}
@media screen and (max-width: 896px) {
  .hero-content__head .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .hero-content__head .badge {
    font-size: 10px;
  }
}
.hero-content__head .name {
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .hero-content__head .name {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .hero-content__head .name {
    font-size: 12px;
  }
}

.hero-content__img {
  margin-inline: auto;
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .hero-content__img {
    margin-top: 20px;
    width: 212px;
  }
}

.top-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 896px) {
  .top-service {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}
@media screen and (max-width: 640px) {
  .top-service {
    gap: 30px;
  }
}
.top-service + .top-service {
  padding-top: 100px;
}
@media screen and (max-width: 896px) {
  .top-service + .top-service {
    padding-top: 80px;
  }
}

.top-service__img img {
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .top-service__img img {
    height: 150px;
    width: auto;
  }
}

.top-service__text h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 896px) {
  .top-service__text h3 {
    justify-content: center;
  }
}
.top-service__text h3 .badge {
  background-color: var(--black);
  border-radius: 2em;
  font-size: 14px;
  font-weight: bold;
  padding: 0.5em 1.2em;
  color: #ffffff;
  margin-left: 18px;
}
@media screen and (max-width: 896px) {
  .top-service__text h3 .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .top-service__text h3 .badge {
    font-size: 10px;
    margin-left: 12px;
  }
}
.top-service__text h3 .name {
  width: 100%;
  font-size: 13px;
  font-weight: normal;
  margin-top: 1em;
}
@media screen and (max-width: 896px) {
  .top-service__text h3 .name {
    text-align: center;
  }
}
.top-service__text h4 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .top-service__text h4 {
    font-size: 16px;
    text-align: center;
  }
}
.top-service__text p {
  font-size: 14px;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .top-service__text p {
    font-size: 13px;
  }
}
.top-service__text ul {
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 640px) {
  .top-service__text ul {
    justify-content: center;
  }
}
.top-service__text li {
  width: 100px;
  padding: 0.3em;
  text-align: center;
  border-radius: 3px;
  color: #ffffff;
  background-color: var(--indigo);
  font-weight: bold;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .top-service__text li {
    font-size: 12px;
    padding: 0.4em 0.3em;
  }
}
.top-service__text a {
  display: flex;
  align-items: center;
  gap: 1.5em;
  font-size: 14px;
  margin-top: 1.5em;
  width: fit-content;
  margin-left: auto;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .top-service__text a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .top-service__text a {
    margin-right: auto;
  }
}
.top-service__text a::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url(../img/common/right_chevron.svg);
  background-position: center;
  background-size: 6px;
  background-repeat: no-repeat;
  background-color: var(--blue);
}

.top-service--secondary li {
  background-color: var(--skyblue);
}

.top-info {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  margin-top: -110px;
  background-color: var(--bgMainColor);
  padding: 40px 50px 60px;
  border-radius: 15px;
}
@media screen and (max-width: 1200px) {
  .top-info {
    margin-top: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 896px) {
  .top-info {
    padding: 40px 40px 60px;
  }
}
@media screen and (max-width: 640px) {
  .top-info {
    padding: 0 20px 30px;
  }
}

.top-info-more {
  display: block;
  max-width: 200px;
  color: #ffffff;
  background-color: var(--blue);
  text-align: center;
  padding: 1.2em;
  width: 100%;
  margin-inline: auto;
  margin-top: 60px;
  border-radius: 3em;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .top-info-more:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 896px) {
  .top-info-more {
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .top-info-more {
    margin-top: 30px;
    max-width: 130px;
    padding: 0.8em 1em;
    font-size: 13px;
  }
}

/* ---------------------------
  cover
----------------------------- */
.cover {
  background-color: var(--blue);
}
@media screen and (max-width: 896px) {
  .cover {
    margin-top: 50px;
  }
}

.cover__title {
  max-width: 1000px;
  margin-inline: auto;
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .cover__title {
    height: 164px;
    gap: 24px;
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .cover__title {
    height: 120px;
    gap: 16px;
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .cover__title {
    font-size: 20px;
  }
}
.cover__title span {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
@media screen and (max-width: 896px) {
  .cover__title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .cover__title span {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .cover__title span {
    font-size: 10px;
  }
}

/* ---------------------------
  breadcrumbs
----------------------------- */
.breadcrumbs {
  background-color: var(--bgMainColor);
  width: 100%;
}
@media screen and (max-width: 640px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
}
.breadcrumbs-list li {
  display: flex;
  align-items: center;
}
.breadcrumbs-list li:not(:last-of-type)::after {
  content: ">";
  font-size: 12px;
  display: inline-block;
  margin: 0 30px 2px;
}
.breadcrumbs-list a, .breadcrumbs-list span {
  font-size: 12px;
  height: 40px;
  display: flex;
  align-items: center;
}
.breadcrumbs-list a {
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .breadcrumbs-list a:hover {
    text-decoration: underline;
  }
}

/* ---------------------------
  contents
----------------------------- */
.page-content {
  padding: 80px 0 100px;
}
@media screen and (max-width: 640px) {
  .page-content {
    padding: 40px 0 64px;
  }
}

.page-company table {
  width: 100%;
  border-collapse: collapse;
}
.page-company th, .page-company td {
  font-size: 14px;
  padding: 2.5em 1em;
  border: 1px solid var(--borderMainColor);
}
@media screen and (max-width: 640px) {
  .page-company th, .page-company td {
    padding: 1em;
    font-size: 13px;
  }
}
.page-company th {
  font-weight: bold;
  text-align: left;
  background-color: var(--bgMainColor);
}
@media screen and (max-width: 640px) {
  .page-company th {
    min-width: 80px;
  }
}

.page-contact {
  padding: 60px;
  border-radius: 15px;
  background-color: var(--bgSubColor);
}
@media screen and (max-width: 896px) {
  .page-contact {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .page-contact {
    border-radius: 8px;
    padding: 16px;
  }
}
.page-contact .lead {
  margin-bottom: 40px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .page-contact .lead {
    margin-bottom: 28px;
    font-size: 13px;
  }
}
.page-contact .lead strong {
  font-weight: bold;
}
.page-contact .lead span {
  color: var(--red);
  display: inline-block;
  margin: 0 0.1em;
}
.page-contact dl {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(1, 200px auto);
  gap: 30px 0;
}
@media screen and (max-width: 896px) {
  .page-contact dl {
    grid-template-columns: repeat(1, 160px auto);
  }
}
@media screen and (max-width: 640px) {
  .page-contact dl {
    display: block;
    gap: 0;
  }
}
.page-contact dt {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .page-contact dt {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .page-contact dt {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .page-contact dt:not(:first-of-type) {
    margin-top: 1.5em;
  }
}
.page-contact dt.must::after {
  content: "*";
  font-size: 14px;
  color: var(--red);
  font-weight: bold;
  display: inline-block;
  margin-left: 0.3em;
}
.page-contact input, .page-contact select, .page-contact textarea {
  border: 1px solid var(--borderMainColor);
  border-radius: 5px;
  padding: 0.3em 0.6em;
  width: 100%;
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .page-contact input, .page-contact select, .page-contact textarea {
    border-radius: 3px;
  }
}
.page-contact textarea {
  height: 160px;
  resize: vertical;
}
.page-contact select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-left: 1em;
}
@media screen and (max-width: 640px) {
  .page-contact select {
    font-size: 14px;
  }
}
.page-contact .agree-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  margin-inline: auto;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .page-contact .agree-wrapper {
    margin-top: 32px;
    gap: 10px;
  }
}
.page-contact .agree p {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .page-contact .agree p {
    font-size: 12px;
  }
}
.page-contact .agree p span {
  color: var(--red);
  font-weight: bold;
}
.page-contact .agree-wrapper input {
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid var(--borderMainColor);
  border-radius: 0;
  background-image: url(../img/common/check.svg);
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .page-contact .agree-wrapper input {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}
.page-contact .agree-wrapper input:checked {
  background-color: var(--blue);
}
.page-contact .privacy {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .page-contact .privacy {
    font-size: 12px;
  }
}
.page-contact .privacy a {
  color: var(--blue);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .page-contact .privacy a:hover {
    text-decoration: none;
  }
}
.page-contact .submit {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .page-contact .submit {
    margin-top: 32px;
    gap: 20px;
  }
}
.page-contact .submit button {
  cursor: pointer;
  display: block;
  padding: 1.2em 1em;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border-radius: 3em;
  max-width: 200px;
  width: 100%;
  background-color: var(--blue);
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .page-contact .submit button {
    padding: 1em;
    font-size: 13px;
  }
}
.page-contact .submit .submit__confirm {
  background-color: #b3b3b3;
  pointer-events: none;
}
.page-contact .submit .submit__confirm.is_active {
  background-color: var(--blue);
  pointer-events: inherit;
}
.page-contact .submit .submit__back {
  background-color: #777777;
}
.page-contact .mw_wp_form_confirm .agree {
  display: none;
}
.page-contact .mw_wp_form_confirm .privacy {
  display: none;
}
.page-contact .mw_wp_form_confirm dd {
  padding-bottom: 1em;
  border-bottom: 1px solid var(--borderMainColor);
}

.page-contact-inner {
  padding: 50px;
  max-width: 880px;
  margin-inline: auto;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  .page-contact-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .page-contact-inner {
    padding: 32px 16px 32px;
  }
}

.page-privacy > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.page-privacy > *:first-child {
  margin-top: 0 !important;
}
.page-privacy > *:last-child {
  margin-bottom: 0 !important;
}
.page-privacy p {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .page-privacy p {
    font-size: 13px;
  }
}
.page-privacy h2 {
  font-size: 16px;
  font-weight: bold;
  padding-left: 0.8em;
  border-left: 3px solid var(--blue);
  margin-top: 3em;
}
@media screen and (max-width: 640px) {
  .page-privacy h2 {
    margin-top: 2em;
  }
}
.page-privacy ul {
  list-style: disc;
  margin: 1em 0;
  padding-left: 1em;
}
.page-privacy ul li {
  font-size: 14px;
  margin: 0.2em 0;
}
@media screen and (max-width: 640px) {
  .page-privacy ul li {
    font-size: 13px;
  }
}
.page-privacy ul li::marker {
  color: var(--blue);
  font-size: 1em;
  line-height: 1;
}
.page-privacy ul li:first-of-type {
  margin-top: 0;
}
.page-privacy ul li:last-of-type {
  margin-bottom: 0;
}

/* ---------------------------
  service
----------------------------- */
@media screen and (max-width: 896px) {
  .cover-service {
    margin-top: 50px;
  }
}
.cover-service--indigo {
  background-color: var(--indigo);
}
.cover-service--skyblue {
  background-color: var(--skyblue);
}
.cover-service .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 440px;
  gap: 40px;
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .cover-service .inner {
    flex-direction: column;
    height: auto;
    padding-top: 80px;
  }
}
@media screen and (max-width: 640px) {
  .cover-service .inner {
    padding-top: 50px;
    gap: 32px;
  }
}

.cover-service__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  max-width: 490px;
}
@media screen and (max-width: 896px) {
  .cover-service__title {
    justify-content: center;
  }
}
@media screen and (max-width: 1080px) {
  .cover-service__title img {
    height: 56px;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .cover-service__title img {
    height: 42px;
  }
}
.cover-service__title .lead {
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 896px) {
  .cover-service__title .lead {
    text-align: center;
  }
}
.cover-service__title .badge {
  background-color: var(--black);
  border-radius: 2em;
  font-size: 14px;
  font-weight: bold;
  padding: 0.4em 1.2em;
  height: fit-content;
  margin-left: 1em;
}
@media screen and (max-width: 896px) {
  .cover-service__title .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .cover-service__title .badge {
    font-size: 10px;
  }
}
.cover-service__title .name {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  padding-left: 2em;
  margin-top: 0.6em;
}
@media screen and (max-width: 896px) {
  .cover-service__title .name {
    text-align: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .cover-service__img img {
    max-width: 240px;
  }
}

.page-service--indigo h2 {
  color: var(--indigo);
}
.page-service--indigo .action {
  background-color: var(--indigo);
}
.page-service--indigo .action a {
  color: var(--indigo);
}
.page-service--skyblue h2 {
  color: var(--skyblue);
}
.page-service--skyblue .action {
  background-color: var(--skyblue);
}
.page-service--skyblue .action a {
  color: var(--skyblue);
}
.page-service h2 {
  font-weight: bold;
}
.page-service img {
  margin-inline: auto;
}
.page-service p {
  font-size: 14px;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .page-service p {
    font-size: 13px;
  }
}
.page-service .grid-main {
  display: grid;
  align-items: center;
  grid-template-columns: 300px auto;
  gap: 100px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1080px) {
  .page-service .grid-main {
    gap: 40px;
  }
}
@media screen and (max-width: 896px) {
  .page-service .grid-main {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .page-service .grid-main {
    gap: 24px;
    padding-bottom: 20px;
  }
}
.page-service .grid-main h2 {
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .page-service .grid-main h2 {
    font-size: 17px;
  }
}
.page-service .grid-main p {
  font-size: 16px;
}
@media screen and (max-width: 896px) {
  .page-service .grid-main p {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .page-service .grid-main p {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .page-service .grid-main img {
    width: 240px;
  }
}
.page-service .grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 50px 0;
}
@media screen and (max-width: 640px) {
  .page-service .grid-1 {
    padding: 20px 0;
  }
}
.page-service .grid-1 > div {
  max-width: 600px;
  margin-inline: auto;
}
.page-service .grid-1 h2 {
  font-size: 16px;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .page-service .grid-1 h2 {
    font-size: 15px;
  }
}
.page-service .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 50px 0;
  gap: 80px 0;
}
@media screen and (max-width: 640px) {
  .page-service .grid-2 {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 0;
    gap: 40px;
  }
}
.page-service .grid-2 > div {
  padding: 0 60px;
}
@media screen and (max-width: 1080px) {
  .page-service .grid-2 > div {
    padding: 0 40px;
  }
}
@media screen and (max-width: 896px) {
  .page-service .grid-2 > div {
    padding: 0;
  }
}
.page-service .grid-2 h2 {
  font-size: 16px;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .page-service .grid-2 h2 {
    font-size: 15px;
  }
}
.page-service .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  padding: 50px 0;
}
@media screen and (max-width: 1080px) {
  .page-service .grid-3 {
    gap: 40px;
  }
}
@media screen and (max-width: 896px) {
  .page-service .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .page-service .grid-3 {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 0;
  }
}
.page-service .grid-3 h2 {
  font-size: 16px;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .page-service .grid-3 h2 {
    font-size: 15px;
  }
}
.page-service .grid-3 p span {
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .page-service .grid-3 p span {
    font-size: 12px;
  }
}
.page-service .action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 80px;
  border-radius: 15px;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .page-service .action {
    gap: 40px;
  }
}
@media screen and (max-width: 896px) {
  .page-service .action {
    padding: 80px 40px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .page-service .action {
    flex-direction: column;
    border-radius: 8px;
    padding: 44px 20px 40px;
    gap: 28px;
    margin-top: 20px;
  }
}
.page-service .action img {
  margin-inline: inherit;
}
@media screen and (max-width: 640px) {
  .page-service .action img {
    width: 240px;
  }
}
.page-service .action a {
  display: block;
  font-size: 14px;
  background-color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 3em;
  width: 100%;
  max-width: 200px;
  padding: 1em;
  transition: opacity 0.3s ease-in-out;
  white-space: nowrap;
}
@media screen and (min-width: 640px) {
  .page-service .action a:hover {
    opacity: 0.8;
  }
}

/* ---------------------------
  info
----------------------------- */
.info-list__item {
  border-bottom: 1px dashed var(--borderMainColor);
}
.info-list__item a {
  display: flex;
  padding: 38px 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .info-list__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .info-list__item a {
    flex-wrap: wrap;
    padding: 24px 0;
  }
}
.info-list__item time {
  display: block;
  width: 130px;
  padding-right: 1em;
  padding-left: 0.8em;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .info-list__item time {
    width: 84px;
    margin-bottom: 0.2em;
    margin-right: 0.5em;
    font-size: 13px;
    padding: 0;
  }
}
.info-list__item .title {
  width: calc(100% - 130px - 80px);
  font-size: 14px;
  font-weight: normal;
  padding-left: 1.2em;
}
@media screen and (max-width: 640px) {
  .info-list__item .title {
    width: 100%;
    padding-left: 0;
    font-size: 13px;
    margin-top: 0.5em;
  }
}

/* ---------------------------
  page navi
----------------------------- */
.wp-pagenavi {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin: 4px;
  border: 1px solid var(--black);
  transition: 0.3s ease-in-out;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 12px;
    height: 32px;
    width: 32px;
  }
}
.wp-pagenavi span.current {
  background-color: var(--lightblue);
}
.wp-pagenavi a {
  transition: 0.2s ease-in;
}
@media screen and (min-width: 640px) {
  .wp-pagenavi a:hover {
    background-color: var(--lightblue);
  }
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
}
.wp-pagenavi .previouspostslink {
  background-image: url(../img/common/prev.svg);
}
.wp-pagenavi .nextpostslink {
  background-image: url(../img/common/next.svg);
}

/* ---------------------------
  info single
----------------------------- */
.info-single-head {
  display: flex;
  flex-wrap: wrap;
}
.info-single-head time {
  display: inline-block;
  font-size: 13px;
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .info-single-head time {
    font-size: 12px;
  }
}
.info-single-head h1 {
  width: 100%;
  border-left: 3px solid var(--blue);
  font-size: 16px;
  font-weight: bold;
  padding-left: 0.5em;
  margin-top: 1.8em;
}
@media screen and (max-width: 640px) {
  .info-single-head h1 {
    font-size: 14px;
    border-width: 3px;
  }
}

.info-single-body {
  padding-top: 30px;
}

.info-single-back {
  margin: 100px auto 0;
}
@media screen and (max-width: 640px) {
  .info-single-back {
    margin-top: 40px;
  }
}

.info-single-links {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.info-single-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--black);
  transition: 0.2s ease-in;
}
@media screen and (min-width: 640px) {
  .info-single-links a:hover {
    background-color: var(--bgSubColor);
  }
}

.info-single-links__prev,
.info-single-links__next {
  width: 40px;
}

.info-single-links__archive {
  width: 80px;
}

.movie {
 margin: 20px auto 40px;
 width: 760px;
 height: 405px
 display: block;
 border: 20px solid #f2f2f2;
}


.project {
    width: 100px;
    margin-top: 1em;
    padding: 0.3em;
    text-align: center;
    border-radius: 3px;
    color: #ffffff;
    background-color: #ccc;
    font-weight: bold;
    font-size: 13px;