@charset "UTF-8";
:root {
  --bgC: #ffffff;
  --mainC: #0053ad;
  --mainC_fil: invert(23%) sepia(28%) saturate(5547%) hue-rotate(198deg)
    brightness(94%) contrast(102%);
  --fontC: #333333;
  --fontC_fil: invert(15%) sepia(77%) saturate(0%) hue-rotate(239deg)
    brightness(98%) contrast(90%);
  --linkC: #0053ad;
  --baseC1: #ffffff;
  --baseC1_fil: invert(100%) sepia(100%) saturate(0%) hue-rotate(3deg)
    brightness(106%) contrast(101%);
  --baseC2: #eeeeee;
  --baseC3: #bbbbbb;
  --baseC4: #777777;
  --filterC: rgba(0, 0, 0, 0.4);
  --fontS32: 32px;
  --fontS24: 24px;
  --fontS20: 20px;
  --fontS18: 18px;
  --fontS16: 16px;
  --fontS14: 14px;
  --fontS12: 12px;
  --gap144: 144px;
  --gap96: 96px;
  --gap48: 48px;
  --gap24: 24px;
  --headerH: 122px;
  --header_menu1_H: 78px;
  --wpadminbar: 32px;
}
html {
  scroll-padding-top: var(--headerH);
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fontS16);
  color: var(--fontC);
  line-height: 1.6;
  background-color: var(--bgC);
  overflow: auto;
}
body.menu_on,
body.search_on {
  overflow: hidden;
}
a {
  color: var(--fontC);
}
a:hover,
button:hover {
  transition: 0.2s ease-in-out;
  opacity: 0.6;
}
a:hover {
  color: var(--fontC);
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
@media screen and (max-width: 782px) {
  :root {
    --wpadminbar: 46px;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --fontS32: 24px;
    --fontS24: 20px;
    --fontS20: 16px;
    --fontS18: 16px;
    --fontS16: 14px;
    --fontS14: 12px;
    --fontS12: 10px;
    --gap144: 128px;
    --gap96: 64px;
    --gap48: 32px;
    --gap24: 16px;
    --headerH: 106px;
    --header_menu1_H: 69px;
  }
}
/* ******************** */
/* 共通
******************** */
.inner1,
.inner2,
.inner3,
.inner4 {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.inner5 {
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
}
.br_sp {
  display: inline-block;
}
.text_suppl {
  color: var(--baseC4);
  font-size: var(--fontS14);
  font-weight: normal;
}
.text_strong {
  font-size: var(--fontS20);
  font-weight: bold;
}
.input1,
.btn1,
.btn2 {
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  appearance: none;
  cursor: pointer;
}
.btn1,
.btn2 {
  padding: 0.5em 1.5em;
  display: inline-block;
  font-size: var(--fontS14);
  border-radius: 1.5em;
  text-decoration: none;
}
.btn1 {
  color: var(--baseC1);
  background-color: var(--linkC);
}
.btn2 {
  color: var(--linkC);
  background-color: var(--baseC1);
  border: 1px solid var(--linkC);
}
.btn1:hover,
.btn2:hover {
  color: var(--linkC);
  transform: scale(0.96);
}
.btn1:hover {
  color: var(--baseC1);
}
.img_round {
  border-radius: 50%;
}
.link1,
.link2 {
  padding-left: 1.25em;
  position: relative;
  color: var(--linkC);
  text-decoration: none;
}
.link1::before,
.link2::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  filter: var(--mainC_fil);
}
.link1::before {
  background: url(./img/chevron-left-solid-full.svg) center center no-repeat;
  background-size: contain;
}
.link2::before {
  background: url(./img/chevron-right-solid-full.svg) center center no-repeat;
  background-size: contain;
}
.link1:hover,
.link2:hover {
  color: var(--mainC);
}
.link3 {
  padding-right: 1.25em;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.link3::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  background: url(./img/up-right-from-square-solid-full.svg) center center
    no-repeat;
  background-size: contain;
  filter: var(--fontC_fil);
}
.link_container1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em 0.5em;
}
.link_container2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.5em;
}
.link_container2 a {
  color: var(--linkC);
}
.article_card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.view_changed #archive .article_card_container {
  grid-template-columns: 1fr;
}
.article_card {
  position: relative;
  max-width: 100%;
}
.article_card_link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.article_card_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: var(--bgC);
  border-radius: 1em;
  box-shadow: 0px 4px 8px -4px var(--filterC);
  overflow: hidden;
}
.article_content1 {
  display: flex;
  flex-direction: column;
}
.view_changed #archive .article_content1 {
  padding: 1em 1.5em;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 1.25em;
}
.article_thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex-shrink: 0;
}
.view_changed #archive .article_thumb {
  width: 160px;
  height: 100%;
}
.view_changed #archive .article_thumb img {
  border-radius: 0;
}
.article_head {
  padding: 1em 1.5em 1em 1.5em;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.view_changed #archive .article_head {
  padding: 0;
}
.article_postdate {
  font-size: var(--fontS14);
  color: var(--baseC4);
}
.article_title {
  font-size: var(--fontS16);
  font-weight: bold;
}
.article_disc {
  display: none;
}
.view_changed #archive .article_disc {
  margin-top: 0.5em;
  display: block;
  color: var(--baseC4);
  word-break: break-word;
}
.article_content2 {
  padding: 0 1.5em 1.5em 1.5em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em 0;
  z-index: 10;
}
.article_taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.article_tag1,
.article_tag2 {
  padding: 0.25em 0.75em;
  display: inline-block;
  font-size: var(--fontS12);
  color: var(--linkC);
  border: 1px solid var(--linkC);
  border-radius: 0.25em;
  text-decoration: none;
}
.article_tag1:hover,
.article_tag2:hover {
  color: var(--linkC);
  transform: scale(0.96);
}
.article_tag1:hover {
  color: var(--baseC1);
}
.article_tag1::before,
.article_tag2::before {
  content: "#";
}
.article_tag1 {
  color: var(--baseC1);
  background-color: var(--linkC);
}
.article_tag2 {
  background-color: var(--baseC1);
}
.article_writer {
  display: flex;
  align-items: center;
  gap: 0 0.75em;
  text-decoration: none;
}
.article_writer img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article_pagination_container {
  margin-top: var(--gap48);
  text-align: center;
}
.article_pagination_container .page-numbers {
  margin: 4px;
  border: 1px solid var(--linkC);
  background-color: var(--bgC);
  color: var(--linkC);
}
.article_pagination_container .page-numbers.current {
  border: 1px solid var(--baseC2);
  color: var(--baseC4);
}
.official_snslist {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  filter: var(--baseC1_fil);
}
.official_snslist img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.guide_linklist {
  margin-bottom: var(--gap24);
}
@media screen and (max-width: 1300px) {
  .inner1,
  .inner2,
  .inner3,
  .inner4 {
    padding: 0 var(--gap48);
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .inner1 {
    padding: 0 12px;
  }
  .inner2 {
    padding: 0 1.5em;
  }
  .inner3 {
    padding: 0 1em;
  }
  .inner4 {
    padding: 0;
  }
  .article_card_container,
  .view_changed #archive .article_card_container {
    grid-template-columns: 1fr;
  }
  .view_changed #archive .article_thumb {
    width: 60px;
  }
  .guide_linklist {
    margin-bottom: var(--gap48);
  }
}
/* ******************** */
/* #header
******************** */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header_menu1_wrap {
  padding: 1em 0;
  position: relative;
  background-color: var(--bgC);
  border-bottom: 1px solid var(--baseC2);
  z-index: 1000;
}
.header_menu1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_menu1_title {
  display: flex;
  align-items: center;
  gap: 0 0.75em;
}
.header_menu1_title h1 {
  font-size: var(--fontS16);
  width: 11em;
  font-weight: normal;
  line-height: 1.4;
}
.header_logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header_menu1_control {
  display: flex;
  align-items: center;
  gap: 0 var(--gap48);
}
#search_toggle_btn,
#menu_toggle_btn {
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  appearance: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  filter: var(--mainC_fil);
}
#menu_toggle_btn {
  background: url(./img/bars-solid-full.svg) center center no-repeat;
  background-size: contain;
}
.menu_on #menu_toggle_btn,
.search_on #search_toggle_btn {
  background: url(./img/xmark-solid-full.svg) center center no-repeat;
  background-size: contain;
}
#search_toggle_btn {
  display: none;
}
#search_form {
  position: relative;
}
#input_keyword {
  padding: 0.25em calc(64px + 1em) 0.25em 1em;
  border: none;
  outline: none;
  font: inherit;
  background: none;
  appearance: none;
  cursor: pointer;
  border-radius: 0.25em;
  border: 1px solid var(--linkC);
  background-color: var(--baseC1);
}
#submit_keyword {
  padding: 0.25em 1em;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: none;
  outline: none;
  font: inherit;
  background: none;
  appearance: none;
  cursor: pointer;
  color: var(--baseC1);
  background-color: var(--linkC);
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
.header_menu1_body {
  display: none;
}
.header_menu1_linklist_wrap {
  padding: var(--gap48);
  position: fixed;
  right: 0;
  height: 100%;
  background-color: var(--bgC);
  animation: menu1_linklist_on 0.2s ease-in-out;
  overflow-y: scroll;
}
.header_menu1_linklist {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1em 2em;
  list-style: none;
}
.header_menu1_linklist a {
  text-decoration: none;
}
.menu_on .header_menu1_body {
  display: block;
  position: fixed;
  top: var(--header_menu1_H);
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--filterC);
  animation: menu1_body_on 0.2s ease-in-out;
  z-index: 1000;
}
.header_menu2_wrap {
  border-bottom: 1px solid var(--baseC2);
  background-color: var(--bgC);
}
.header_menu2_linklist {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  list-style: none;
}
.header_menu2_linklist li {
  padding: 0.5em 0 calc(0.5em + 4px);
  position: relative;
}
.header_menu2_linklist li.clicked::before {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  content: "";
  width: 25%;
  height: 4px;
  border-radius: 4px;
  background-color: var(--linkC);
}
.header_menu2_linklist a {
  display: block;
  color: var(--baseC4);
  text-decoration: none;
}
.header_menu2_linklist li.clicked a {
  color: var(--fontC);
}
.header_menu1_linklist_wrap .official_snslist {
  margin-top: 2em;
  filter: var(--fontC_fil);
}
@media screen and (max-width: 500px) {
  .header_menu1_control {
    gap: 0 15px;
  }
  .search_form_wrap {
    display: none;
  }
  #search_toggle_btn {
    display: block;
    background: url(./img/magnifying-glass-solid-full.svg) center center
      no-repeat;
    background-size: contain;
  }
  .search_on .search_form_wrap {
    display: block;
    position: fixed;
    top: var(--header_menu1_H);
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--filterC);
    animation: menu1_body_on 0.2s ease-in-out;
    z-index: 1000;
  }
  #search_form {
    padding: var(--gap48) 1em;
    background-color: var(--bgC);
  }
  #input_keyword {
    padding-right: calc(56px + 1em);
    width: 100%;
  }
  #submit_keyword {
    right: 1em;
  }
  .header_menu2_linklist {
    grid-template-columns: repeat(5, auto);
    font-size: var(--fontS14);
  }
}
@keyframes menu1_body_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu1_linklist_on {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ******************** */
/* #main
******************** */
#main {
  margin: var(--headerH) auto 0 auto;
  width: 100%;
  max-width: 1920px;
  background: url(./img/bg.png) top center repeat-y;
  background-size: contain;
  box-shadow: 0px 4px 8px -4px var(--filterC);
}
#share {
  padding: 1em 1.5em;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: var(--bgC);
  border-top-left-radius: 1em;
  box-shadow: -2px -2px 8px -4px var(--filterC);
  z-index: 10;
}
.share_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px 1.5em;
}
.share_content h2 {
  font-size: var(--fontS14);
}
.share_buttonlist {
  display: grid;
  grid-template-columns: repeat(5, 30px);
  gap: 15px;
}
.share_btn {
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  appearance: none;
  filter: var(--mainC_fil);
  cursor: pointer;
}
.share_btn:hover {
  transform: scale(0.96);
}
#about_michimichi {
  padding: var(--gap96) 0;
  background-color: var(--baseC2);
}
.about_michimichi_head {
  text-align: center;
}
.about_michimichi_head h2 {
  font-size: var(--fontS24);
}
.about_michimichi_body {
  margin-top: var(--gap48);
  display: flex;
  align-items: center;
  gap: var(--gap48);
}
.about_michimichi_body img {
  width: 288px;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  #main {
    background: url(./img/bg_sp.png) top center repeat-y;
    background-size: contain;
  }
  .about_michimichi_body {
    align-items: flex-start;
  }
  .about_michimichi_body img {
    width: 160px;
  }
}
@media screen and (max-width: 500px) {
  #share {
    padding: 1em;
    width: 100%;
    border-top-left-radius: 0;
  }
  .about_michimichi_body {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 350px) {
  #share {
    padding: 1.5em 1em;
  }
  .share_content {
    flex-direction: column;
  }
}
/* ******************** */
/* #footer
******************** */
#footer {
  margin: 0 auto;
  padding: var(--gap96) 0;
  max-width: 1920px;
  background-color: #0053ad;
  color: var(--baseC1);
}
#footer a {
  color: var(--baseC1);
}
.footer_content {
  display: flex;
  justify-content: space-between;
  gap: var(--gap48);
}
.footer_address {
  flex-shrink: 0;
}
.footer_address h2 {
  font-size: var(--fontS24);
}
.footer_address .official_snslist {
  margin-top: 15px;
}
.footer_linklist {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.5em;
  list-style: none;
}
.footer_linklist .link3 {
  text-decoration: underline;
}
.footer_linklist .link3::before {
  filter: var(--baseC1_fil);
}
.footer_copylight {
  margin-top: var(--gap96);
  text-align: center;
}
@media screen and (max-width: 500px) {
  #footer {
    padding-bottom: calc(var(--gap96) + 58px);
  }
  .footer_content {
    flex-direction: column;
  }
}
/* ******************** */
/* front-page.php
******************** */
#top_new .link_container1 {
  margin-top: var(--gap48);
}
#newest {
  padding: var(--gap48) 0;
  background: linear-gradient(
    transparent 0%,
    transparent 19.8%,
    var(--mainC) 20%,
    var(--mainC) 79.8%,
    transparent 80%,
    transparent 100%
  );
}
#newest .article_card_content {
  flex-direction: row;
}
.newest_article_card_head {
  width: 40%;
  flex-shrink: 0;
}
.newest_article_card_head .article_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newest_article_card_body {
  padding: 1.5em;
}
.newest_article_card_body .article_title {
  font-size: var(--fontS20);
}
.newest_article_card_body .article_disc {
  margin-top: 0.5em;
  display: block;
  color: var(--baseC4);
}
.newest_article_card_category {
  margin-top: 1em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em 0;
  z-index: 10;
}
#top_tag {
  padding: var(--gap48) 0;
  background-color: var(--baseC2);
}
.top_tag_content {
  display: flex;
  align-items: center;
  gap: 1em var(--gap48);
}
.top_tag_content h2 {
  flex-shrink: 0;
  font-size: var(--fontS24);
}
.top_section {
  margin-top: var(--gap96);
}
.top_category_head {
  margin-bottom: var(--gap24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.top_category_head h2 {
  font-size: var(--fontS24);
}
.top_category_foot {
  display: none;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 500px) {
  #newest {
    padding: 12px 0;
    background: linear-gradient(
      transparent 0%,
      transparent 9.8%,
      var(--mainC) 10%,
      var(--mainC) 89.8%,
      transparent 90%,
      transparent 100%
    );
  }
  #newest .article_card_content {
    flex-direction: column;
  }
  .newest_article_card_head {
    width: 100%;
  }
  .newest_article_card_head img {
    aspect-ratio: 16 / 9;
  }
  .newest_article_card_body {
    padding-top: 1em;
  }
  .top_tag_content {
    flex-direction: column;
  }
  .top_category_head {
    justify-content: center;
  }
  .top_category_head .link_container1 {
    display: none;
  }
  .top_category_foot {
    margin-top: var(--gap48);
    display: block;
  }
}
/* ******************** */
/* category.php / tag.php
******************** */
#archive {
  padding-top: var(--gap48);
}
.archive_search_form_wrap {
  margin-bottom: var(--gap48);
}
.archive_search_form_wrap #input_keyword {
  width: 100%;
}
.archive_search_form_wrap #submit_keyword {
  padding: calc(0.25em + 1px) 1em;
}
.archive_head {
  margin-bottom: var(--gap48);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.archive_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1em;
}
.archive_title h2 {
  font-size: var(--fontS24);
}
#view_toggle_btn {
  padding: 0.5em 1.5em;
  display: flex;
  align-items: center;
  gap: 0 0.75em;
  font: inherit;
  font-size: var(--fontS14);
  color: var(--fontC);
  background: none;
  background-color: var(--bgC);
  border: 1px solid var(--fontC);
  border-radius: 1.5em;
  appearance: none;
  cursor: pointer;
}
.view_toggle_content {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 2px;
  background-color: var(--baseC3);
  box-sizing: content-box;
  transition: border-color 0.4s;
  flex-shrink: 0;
}
.view_changed .view_toggle_content {
  background-color: var(--linkC);
}
.view_toggle_content::after {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--baseC3);
  content: "";
  transition: left 0.2s;
}
.view_changed .view_toggle_content::after {
  left: 28px;
  background-color: var(--linkC);
}
.archive_foot {
  margin-top: var(--gap48);
}
@media screen and (max-width: 500px) {
  .archive_head {
    justify-content: center;
  }
  .archive_head.haschild {
    flex-direction: column;
    align-items: flex-start;
  }
  #view_toggle_btn {
    align-self: flex-end;
  }
}
/* ******************** */
/* archive-writer.php / archive-company.php
******************** */
.haschild_card_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.haschild_card {
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em 0;
  background-color: var(--bgC);
  border-radius: 1em;
  box-shadow: 0px 4px 8px -4px var(--filterC);
  text-align: center;
  text-decoration: none;
}
.haschild_card_icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 500px) {
  .haschild_card_container {
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  }
  .haschild_card_icon {
    width: 80px;
    height: 80px;
  }
}
/* ******************** */
/* single-company.php / single-writer.php
******************** */
#profile {
  padding: var(--gap48) 0 calc(var(--gap48) * 1.5);
  background-color: var(--bgC);
}
.company_profile,
.writer_profile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: var(--gap48);
}
.company_profile h2,
.writer_profile h2 {
  font-size: var(--fontS24);
}
.company_profile .link3,
.company_profile .link3:hover,
.writer_profile .link3,
.writer_profile .link3:hover {
  color: var(--linkC);
  text-decoration: underline;
}
.company_profile .link3::before,
.writer_profile .link3::before {
  filter: var(--mainC_fil);
}
.company_logo,
.writer_icon {
  width: 240px;
  max-height: 240px;
  object-fit: contain;
  flex-shrink: 0;
}
.company_overview,
.writer_overview {
  margin-top: 1em;
}
.company_datalist,
.writer_link {
  margin-top: var(--gap48);
}
.company_datalist {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid var(--baseC2);
}
.company_datalist dt,
.company_datalist dd {
  padding: 0.5em 0;
  border-top: 1px solid var(--baseC2);
}
.company_datalist dt {
  padding-right: var(--gap48);
  font-weight: bold;
}
.company_location {
  margin-top: 1em;
}
.company_location:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (max-width: 500px) {
  .company_profile,
  .writer_profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .company_profile h2,
  .writer_profile h2 {
    text-align: center;
  }
  .company_logo,
  .writer_icon {
    width: 120px;
    max-height: 120px;
  }
  .company_datalist dt {
    padding-right: 1.5em;
  }
}
/* ******************** */
/* single.php
******************** */
#single {
  padding: var(--gap48) 0 calc(var(--gap48) * 1.5);
  background-color: var(--bgC);
}
.single_title {
  margin-top: var(--gap24);
}
.single_title h1 {
  margin-bottom: 0;
  font-size: var(--fontS24);
}
.single_postdate {
  font-size: var(--fontS14);
  color: var(--baseC4);
}
.single_head .article_taglist,
.single_head .article_writerlist {
  margin-top: 1em;
}
.article_writerlist.link_container2 a {
  color: var(--fontC);
}
.single_body {
  margin-top: var(--gap48);
  font-size: var(--fontS18);
  line-height: 2;
}
.single_body strong {
  font-weight: bold;
}
.single_body h1,
.single_body h2,
.single_body h3,
.single_body h4,
.single_body h5,
.single_body h6 {
  margin-bottom: 1em;
  line-height: 1.4;
}
.single_body h1,
.single_body h2 {
  font-size: var(--fontS24);
}
.single_body h3,
.single_body h4 {
  font-size: var(--fontS20);
}
.single_body h5,
.single_body h6 {
  font-size: var(--fontS16);
}
.single_body hr {
  margin: 2em 0;
}
.single_body a,
.single_body a:hover {
  color: var(--linkC);
}
.single_body a.blogcard-wrap {
  width: 100%;
}
.single_body a.blogcard-wrap,
.single_body a.blogcard-wrap:hover {
  color: var(--fontC);
}
.single_body .link3::before {
  filter: var(--mainC_fil);
}
.single_body figcaption {
  font-size: var(--fontS16);
}
.single_video {
  margin-bottom: var(--gap48);
}
#related {
  padding: var(--gap48);
  background-color: var(--baseC2);
}
#related h2 {
  font-size: var(--fontS20);
}
.related_container {
  display: flex;
  flex-direction: column;
  gap: var(--gap48) 0;
}
.related_linklist {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related_card {
  padding: 1.5em;
  display: flex;
  gap: 1.5em;
  background-color: var(--bgC);
  border-radius: 1em;
  box-shadow: 0px 4px 8px -4px var(--filterC);
  text-decoration: none;
}
.related_thumb {
  width: 120px;
  max-height: 120px;
  object-fit: contain;
}
.related_title h3 {
  margin-bottom: 0.5em;
  font-size: var(--fontS16);
}
.related_disc {
  color: var(--baseC4);
}
@media screen and (max-width: 500px) {
  #single {
    padding: var(--gap48) 1.5em;
  }
  .related_card {
    flex-direction: column;
    align-items: center;
  }
  .related_title h3 {
    text-align: center;
  }
}
/* ******************** */
/* カスタムCSS
******************** */
/* イベント告知記事の表 */
.my_table1 table {
  width: 100%;
}
.my_table1 td {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.my_table1 th:first-child,
.my_table1 td:first-child {
  width: 7em;
  min-width: 7em;
  white-space: nowrap;
  vertical-align: top;
}
.my_table1 th:last-child,
.my_table1 td:last-child {
  width: auto;
}
@media screen and (max-width: 500px) {
  .my_table1 {
    overflow-x: auto;
  }
  .my_table1 table {
    min-width: 700px;
  }
}
/* お問い合わせフォーム */
.contact_item {
  margin-top: 1em;
}
.contact_submit_container {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em 0;
}
.contact_submit_container input[type="submit"] {
  padding: 0.5em 1.5em;
  display: inline-block;
  font-size: var(--fontS16);
  color: var(--baseC1);
  background-color: var(--linkC);
  border-radius: 1.5em;
}
.contact_submit_container input[type="submit"]:hover {
  transition: 0.2s ease-in-out;
  opacity: 0.6;
}
