.scroll_button {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: #509bff;
  position: fixed;
  right: 3%;
  bottom: 13%;
  z-index: 10;
  display: flex;
  cursor: pointer;
}

.scroll_button:hover {
  background: #a1c3f0;
}

.titlebar {
  background: #ffffff;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e6e8ef;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.titlebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
}

.titlebar_inner {
  width: min(120rem, 92%);
  height: 9rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.titlebar_left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.sitebrand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0b0b0b;
}

.sitebrand_logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.sitebrand_word.accent {
  color: #2563eb;
}

.sitebrand_tagline {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  color: #6b7280;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 480px) {
  .titlebar_inner {
    height: 7rem;
  }
  .sitebrand_logo {
    font-size: 2.2rem;
    gap: 0.4rem;
  }
  .sitebrand_tagline {
    display: none;
  }
}
.nanigeblogtitle_img {
  height: 100%;
}

@media screen and (min-width: 1190px) {
  .blogmain {
    width: 100%;
    display: flex;
  }
  .maincontent {
    width: 144rem;
    display: flex;
    margin-inline: auto;
    justify-content: center;
  }
  .blogcontent {
    width: 84.2rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 1190px) {
  .blogmain {
    width: 100%;
    display: flex;
  }
  .maincontent {
    width: 100%;
    display: flex;
    margin-inline: auto;
    justify-content: center;
  }
  .blogcontent {
    width: 84.2rem;
    max-width: 95%;
    padding: 15px;
  }
}
.sideicon_container {
  position: relative;
  height: 5rem;
  display: flex;
  align-items: center;
}

.sideicon {
  width: 50px;
  height: 35px;
  cursor: pointer;
}

.search_container {
  position: relative;
}

@media (max-width: 600px) {
  .admin_button {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }
  .blog_view_menubar_content {
    width: 119rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
  }
}
@media (min-width: 600px) {
  .admin_button {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
  }
}
.admin_button {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  transition: 0.2s ease;
}

.admin_button:hover {
  cursor: pointer;
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.search_text_form {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.search_text {
  position: absolute;
  top: 42px;
  right: 0;
  width: 230px;
  height: 30px;
  border: solid 1px #bfbfbf;
  border-radius: 3px;
  padding-left: 5px;
  display: none;
}

.search_button {
  position: absolute;
  top: 45px;
  right: 4px;
  width: 25px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  padding: 2px;
  display: none;
}

.search_button:hover {
  background: rgb(220, 220, 220);
}

.search_button_image {
  width: 100%;
}

.batsu_container {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 6px;
  right: 16px;
  cursor: pointer;
  display: none;
}

.batsu_top {
  transform: rotate(-45deg);
}

.batsu_bottom {
  transform: rotate(45deg);
}

.batsu_line {
  right: 0px;
  width: 23px;
  height: 2px;
  background: rgb(198, 196, 196);
  position: absolute;
  top: 10px;
}

.menuicon_container {
  width: 50px;
  height: 50px;
  margin-left: 20px;
}

.menuicon {
  position: relative;
  cursor: pointer;
  height: 50px;
}

.menuline {
  width: 23px;
  height: 2px;
  background: rgb(198, 196, 196);
  position: relative;
  left: 5px;
  transition: all 0.1s;
}

.menuicon_top {
  top: 9px;
}

.menuicon_middle {
  top: 15px;
}

.menuicon_bottom {
  top: 22px;
}

.menuicon_top_open {
  top: 16px !important;
  transform: rotate(-45deg);
}

.menuicon_middle_open {
  background: transparent;
}

.menuicon_bottom_open {
  top: 12px !important;
  transform: rotate(45deg);
}

.menubar {
  width: 100%;
  border-top: solid 0.2rem rgb(0, 199, 243);
  border-bottom: solid 0.2rem rgb(0, 199, 243);
}

.menubar_content {
  align-items: center;
  height: 3.5rem;
  display: flex;
  max-width: 144rem;
  margin-inline: auto;
  justify-content: center;
}

.menubutton {
  width: 23.2rem;
  height: 100%;
  color: #0082B7;
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.menubutton:hover {
  background: rgb(0, 199, 243);
  color: white;
  transition: all 0.2s;
}

.blog_view_menubar {
  display: flex;
  margin-top: 2.2rem;
}

.blog_view_menubar_content {
  width: 119rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.blog_view_menubutton {
  width: 23%;
  aspect-ratio: 295/158;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}

.blog_view_menubutton:hover {
  scale: 0.95;
}

.aws_button {
  background: rgb(125, 26, 224);
  font-size: 4rem;
}

.jquery_button {
  background: rgb(255, 156, 7);
  font-size: 4rem;
}

.figma_button {
  background: rgb(41, 182, 246);
  font-size: 4rem;
}

.windows_button {
  background: rgb(136, 237, 8);
  font-size: 3.2rem;
}

.menu_button_icon {
  margin-right: 1.6rem;
}

.menu_button_icon_img {
  width: 8.4rem;
}

.menu_button_text {
  font-weight: bold;
}

.menu_button_main_text {
  line-height: 6rem;
  height: 6rem;
}

.menu_button_matome {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (min-width: 1190px) {
  .sidecontent {
    padding-top: 2.5rem;
    padding-inline: 2rem;
    width: 33rem;
  }
  .phoneprofile {
    display: none;
  }
}
@media screen and (max-width: 1190px) {
  .sidecontent {
    display: none;
  }
  .phoneprofile {
    width: 50%;
    min-width: 30rem;
    margin-inline: auto;
    margin-block: 0rem 10rem;
  }
}
.profile {
  background: white;
  margin-inline: auto;
  padding: 1rem 1rem 4rem;
  margin-bottom: 1rem;
}

.profile_image {
  height: 9.3rem;
  display: block;
  margin-block: 1.8rem;
  margin-left: 1rem;
}

.profile_name {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  margin-left: 1rem;
}

.profile_message {
  font-size: 1.2rem;
  margin-left: 1rem;
}

.profile_message_title {
  font-size: 1.6rem;
  margin-left: 0.5rem;
  margin-top: 1.5rem;
}

.profile_message_text {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  line-height: 2.1rem;
  margin-top: 0.6rem;
}

.profile_category {
  background: white;
  margin-inline: auto;
  padding: 1rem;
}

.profile_category_title {
  margin-bottom: 2.9rem;
}

.popular_post {
  background: white;
  margin-inline: auto;
  padding: 1rem;
}

.side_title {
  width: 100%;
  line-height: 5rem;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  padding-left: 1rem;
}

.side_title::before,
.side_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 0.2rem;
}

.side_title::before {
  left: 0;
  width: 40%;
  background-color: rgb(0, 199, 243);
}

.side_title::after {
  left: 40%;
  width: 60%;
  background-color: rgb(217, 217, 217);
}

.popular_post_content {
  display: flex;
  padding: 0.5rem;
  margin: 0.5rem;
  transition: all 0.2s;
}

.popular_post_content:hover {
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.popular_post_content:hover img {
  scale: 1.05;
}

.popular_post_img_container {
  width: 10.4rem;
  aspect-ratio: 844/443;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: solid 0.1rem #ced2d2;
}

.popular_post_img {
  margin-inline: auto;
  object-fit: cover;
  max-height: 100%;
  margin: auto;
  transition: all 0.2s;
}

.popular_post_title {
  font-size: 1.4rem;
  margin-left: 1rem;
  width: 15rem;
  color: black;
  padding-top: 0.3rem;
  font-weight: 500;
  height: 6.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side_mokuji {
  background: white;
  margin-inline: auto;
  padding: 1rem;
}

.side_mokuji_content {
  margin-top: 2.2rem;
}

@media (max-width: 1150px) {
  .category_dual_box {
    display: block;
  }
  .category_box {
    width: 14rem;
    aspect-ratio: 1.86;
    background: rgb(41, 182, 246);
    color: white;
    display: flex;
    margin-inline: auto;
    cursor: pointer;
    margin-bottom: 8px;
  }
}
@media (min-width: 1150px) {
  .category_dual_box {
    display: flex;
    margin-bottom: 8px;
  }
  .category_box {
    width: 14rem;
    aspect-ratio: 1.86;
    background: rgb(41, 182, 246);
    color: white;
    display: flex;
    margin-inline: 5px;
    cursor: pointer;
  }
}
.category_box:hover {
  scale: 1.05;
}

.category_box_element {
  margin: auto;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
}

.footer {
  width: 100%;
  background: #EFFCFF;
  padding-bottom: 3rem;
}

.footer_search_text_form {
  position: relative;
}

.footer_search_button {
  position: absolute;
  top: 0.8rem;
  right: 10%;
  width: 2.3rem;
  height: 2.3rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.2rem;
  padding: 0.2rem;
}

.footer_search_button:hover {
  background: rgb(220, 220, 220);
}

.footer_search_button_image {
  width: 100%;
}

.footer_rear_container {
  border-top: solid 0.2rem #A1E3FF;
  position: relative;
  width: 50%;
  max-width: 80rem;
  margin-inline: auto;
}

.rear_element {
  width: 40rem;
  margin-inline: auto;
  line-height: 50px;
  display: flex;
  justify-content: center;
}

.copyright {
  width: 16rem;
  margin-inline: auto;
  font-style: italic;
  font-size: 1.2rem;
}

.rear_element_a {
  margin-inline: 5px;
  color: #5F5D5D;
  font-size: 1.2rem;
  font-weight: bold;
}

.profileP {
  margin: 0;
}

@media (max-width: 900px) {
  .blog_view_menubar_content {
    width: 90%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 2rem 0;
  }
  .blog_view_menubutton {
    width: 90%;
    aspect-ratio: 295/158;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
  }
  .aws_button {
    background: rgb(125, 26, 224);
    font-size: 2.4rem;
  }
  .jquery_button {
    background: rgb(255, 156, 7);
    font-size: 2.4rem;
  }
  .figma_button {
    background: rgb(41, 182, 246);
    font-size: 2.4rem;
  }
  .windows_button {
    background: rgb(136, 237, 8);
    font-size: 2.4rem;
  }
  .menu_button_icon {
    margin-right: 1rem;
    width: 30%;
  }
  .menu_button_icon_img {
    width: 100%;
  }
  .menu_button_main_text {
    line-height: 4rem;
    height: 4rem;
  }
  .menu_button_matome {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .footer_front_container {
    display: block;
    margin-inline: auto;
    padding-block: 1.5rem;
  }
  .footer_front_tagcontainer {
    margin-inline: auto;
    width: 90%;
    padding-inline: 1.5rem;
  }
  .footer_front_right_container {
    margin-top: 1.5rem;
  }
  .front_element {
    margin-inline: auto;
    padding-inline: 1.5rem;
    width: 90%;
    margin-bottom: 1.8rem;
  }
  .footer_tag_title {
    height: 3rem;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-block: 0px 2px;
    border-bottom: solid 0.2rem #43C7FF;
  }
  .rear_element {
    width: 100%;
    margin-inline: auto;
    line-height: 50px;
    display: flex;
    justify-content: center;
  }
  .footer_rear_container {
    border-top: solid 0.2rem #A1E3FF;
    position: relative;
    width: 90%;
    max-width: 80rem;
    margin-inline: auto;
  }
}
@media (min-width: 600px) {
  .footer_front_container {
    display: flex;
    margin-inline: auto;
    padding-block: 1.5rem;
    padding-inline: 1rem;
    justify-content: center;
  }
  .footer_front_tagcontainer {
    margin-inline: 28px;
    width: 50%;
    max-width: 50rem;
    margin-top: 5.5rem;
  }
  .footer_front_right_container {
    margin-top: 5.5rem;
    width: 40%;
    max-width: 40rem;
    margin-left: 5%;
  }
  .front_element {
    margin-left: 10px;
    margin-bottom: 18px;
  }
  .footer_tag_title {
    height: 3rem;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-block: 0px 2px;
    border-bottom: solid 0.2rem #43C7FF;
    display: flex;
    align-items: center;
  }
}
.footer_tag_element {
  margin-inline: 0.2rem;
  cursor: pointer;
}

.big {
  font-size: 1.6rem;
}

.medium {
  font-size: 1.4rem;
}

.small {
  font-size: 1.2rem;
}

.front_element_title {
  height: 3rem;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-block: 0px 2px;
  border-bottom: solid 0.2rem #43C7FF;
  display: flex;
  align-items: center;
}

.footer_img {
  width: 2rem;
  margin-right: 0.87rem;
}

@media screen and (min-width: 1190px) {
  .select_form {
    border: solid 0.2rem rgba(67, 199, 255, 0.4117647059);
    width: 90%;
    height: 3rem;
    margin-top: 5px;
  }
  .footer_search_text {
    border-radius: 20px;
    width: 90%;
    border: none;
    height: 3rem;
    margin-top: 5px;
    padding-left: 15px;
    border: solid 0.2rem rgba(67, 199, 255, 0.4117647059);
  }
}
@media screen and (max-width: 1190px) {
  .select_form {
    border: solid 0.1rem rgba(67, 199, 255, 0.4117647059);
    width: 90%;
    height: 3rem;
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
  .footer_search_text {
    border-radius: 20px;
    width: 90%;
    border: none;
    height: 3rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
    font-size: 1.2rem;
    border: solid 0.2rem rgba(67, 199, 255, 0.4117647059);
  }
}