@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #222222;
  font-size: 1rem;
  width: 100%;
  min-width: 320px;
  max-width: 1300px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  width: fit-content; /* コンテンツ幅に合わせる */
  margin: 0 auto; /* 中央揃え */
}

li {
  list-style: square;
  text-align: left;
  margin-left: 25px;
  margin-right: 25px;
}

/* ---------------------------------------
   Global Styles for portfolio_steps.html
--------------------------------------- */
.about-learning__period,
.about-learning__track-record,
.about-learning__skills-in-action,
.about-learning__environment,
.about-learning__resource,
.about-learning__programming-skills,
.about-learning__want {
  margin-bottom: 50px;
}

.about-learning__section-title {
  margin-bottom: 10px;
}

/* ---------------------------------------
   Section-specific Styles
--------------------------------------- */

/* --.header----------------------- */
.header {
  text-align: center;
}

.header__link {
  margin: 30px 0 50px 0;
  background-color: rgba(51, 51, 51, 0.1);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  color: rgb(90, 89, 89);
  /* box-shadow: 0px 0px 10px 10px rgb(204, 153, 255); */
  text-decoration: none;
}

/* --.about-learning----------------------- */
.about-learning__section-title {
  text-align: center;
}

/* --.about-learning__period----------------------- */
.about-learning__period__text {
  text-align: center;
}

/* --.about-learning__environment----------------------- */
.about-learning__environment__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.about-learning__environment__item-name {
  width: 30%;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  width: calc(30% + 1px);
}

.about-learning__environment__item-name:last-of-type {
  border-bottom: solid 1px #222222;
}

.about-learning__environment__item-value {
  width: 50%;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  border-right: solid 1px #222222;
}

.about-learning__environment__item-value:last-of-type {
  border-bottom: solid 1px #222222;
}

.about-learning__environment__item-value-link {
  text-decoration: underline;
  white-space: normal;
  overflow-wrap: break-word;
}

/* --.about-learning__resource----------------------- */
.about-learning__resource__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.about-learning__resource__category-name {
  width: 30%;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  width: calc(30% + 1px);
}

.about-learning__resource__category-name:last-of-type {
  border-bottom: solid 1px #222222;
}

.about-learning__resource__category-value {
  width: 50%;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  border-right: solid 1px #222222;
}

.about-learning__resource__category-value:last-of-type {
  border-bottom: solid 1px #222222;
}

/* --.about-learning__programming-skills-------------- */
.about-learning__programming-skills__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.about-learning__programming-skills__category-name {
  width: 30%;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  width: calc(30% + 1px);
}

.about-learning__programming-skills__category-name:last-of-type {
  border-bottom: solid 1px #222222;
}

.about-learning__programming-skills__category-name a {
  color: #0000EE;
  text-decoration: underline;
  white-space: normal;
  overflow-wrap: break-word;
}

.about-learning__programming-skills__category-value {
  width: 50%;
  padding: 5px 0 5px 10px;
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  border-right: solid 1px #222222;
}

.about-learning__programming-skills__category-value:last-of-type {
  border-bottom: solid 1px #222222;
}

.about-learning__programming-skills__note {
  margin-top: 10px;
}

/* --.about-learning__want----------------------- */
.about-learning__want {
  text-align: center;
}

.about-learning__want__list {
  display: inline-block;
  text-align: left;
  margin: 0 10px 0 30px;
}

.about-learning__want__item {
  padding: 5px 0;
  list-style: square;
}

/* --.footer----------------------- */
.footer {
margin-bottom: 20px;
}

#siteinfo {
  margin-bottom: 20px;
}

#siteinfo ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.5;
}

.siteinfo__list {
  display: inline;
  margin: 0;
}

#siteinfo a {
  color: #1a0dab;
}

#siteinfo a:hover {
  text-decoration: underline;
}

#siteinfo span {
  opacity: 0.5;
  padding: 0 0.5rem;
}

.footer__copyright {
  text-align: center;
}

/* ---------------------------------------
   Responsive Styles
--------------------------------------- */
@media screen and (max-width: 576px) {
  body {
    line-height: 2.0;
  }
  /* ---------------------------------------
   Responsive Global Styles for portfolio_steps.html
  --------------------------------------- */
  .about-learning__environment__list,
  .about-learning__resource__list,
  .about-learning__programming-skills__list {
    flex-direction: column;
  }

  .about-learning__environment__item-name,
  .about-learning__environment__item-value,
  .about-learning__resource__category-name,
  .about-learning__resource__category-value,
  .about-learning__programming-skills__category-name,
  .about-learning__programming-skills__category-value {
    width: 80%;
    margin: 0 auto -1px auto;
  }

  .about-learning__environment__item-name,
  .about-learning__resource__category-name,
  .about-learning__programming-skills__category-name {
    border-right: solid 1px #222222;
  }

  .about-learning__environment__item-name,
  .about-learning__resource__category-name,
  .about-learning__programming-skills__category-name,
  .about-learning__environment__item-name:last-of-type,
  .about-learning__resource__category-name:last-of-type,
  .about-learning__programming-skills__category-name:last-of-type {
    background-color: #f1f1f1;
    border-bottom: none;
  }

  .about-learning__environment__item-value,
  .about-learning__resource__category-value,
  .about-learning__programming-skills__category-value {
    border-top: none;
  }

  /* ---------------------------------------
   Responsive Section-specific Styles
  --------------------------------------- */

  /* --.about-learning__programming-skills-------------- */
  .about-learning__programming-skills__note {
    margin: 10px 15px 0 15px;
  }

    .siteinfo__list a {
    font-size: 0.85rem;
  }
  .footer__copyright {
    font-size: 0.85rem;
  }
}