@charset "UTF-8";

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  width: 782px;
  margin-right: auto;
  margin-left: auto;
}

.logo-container {
  display: flex; /* これにより、子要素は横に並びます */
  align-items: center; /* 画像を中央揃えにする */
  justify-content: space-around; /* 均等にスペースを分配して並べます（必要に応じて変更してください） */
}

.profile-container {
  display: flex; /* これにより、子要素は横に並びます */
  align-items: center; /* 画像を中央揃えにする */
  justify-content: space-around; /* 均等にスペースを分配して並べます（必要に応じて変更してください） */
}

.container-default {
  margin: 2em auto;
  width: 640px;
}

.home-container {
  position: relative;
  margin: 2em auto;
  padding: 0.5em 1em;
  border: solid 3px #00a273;
  border-radius: 8px;
  width: 640px;
}
.home-container .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #fff;
  color: #00a273;
  font-weight: bold;
}
.home-container p {
  margin: 0;
  padding: 0;
}

.achievement-container {
  position: relative;
  margin: 2em auto;
  padding: 0.5em 1em;
  border: solid 3px #00a273;
  border-radius: 8px;
  width: 640px;
}
.achievement-container .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #fff;
  color: #00a273;
  font-weight: bold;
}
.achievement-container p {
  margin: 0;
  padding: 0;
}

.course {
  position: relative;
  margin: 2em auto;
  padding: 0.5em 1em;
  border: solid 3px #00a273;
  border-radius: 8px;
  width: 640px;
}
.course .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #fff;
  color: #00a273;
  font-weight: bold;
}
.course p {
  margin: 0;
  padding: 0;
}

.course-list li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.course-list li:before {
  list-style: none;
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
  width: 5px;
  height: 10px;
  border-right: 3px solid #00a273;
  border-bottom: 3px solid #00a273;
}

#menuarea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 100;
  margin-bottom: 30px;
  background-color: #ffffff;
}

#menuarea nav {
  margin-left: 10px;
}

#mainnavigation {
  padding-left: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  text-align: center;
}

#mainnavigation li {
  list-style: none;
  text-align: center;
  /* border-left: 1px solid #5a4f4a; */
}

/* #mainnavigation li:last-child {
        /* border-right: 1px solid #5a4f4a; */

#mainnavigation li a {
  white-space: nowrap;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 3px;
  padding-bottom: 3%;
}

#mainnavigation li a:hover {
  color: #000000;
  border-bottom: 3px solid #00a273;
}

#mainnavigation li.current a {
  color: #000000;
  border-bottom: 3px solid #00a273;
}
