@charset "UTF-8";
:root {
  --baceFontColor: #333333;
}

/***
    The new CSS reset - version 1.6.1 (last updated 25.5.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

A:link {
  COLOR: #0033cc;
}

A:visited {
  COLOR: #990099;
}

A:HOVER {
  COLOR: red;
}

#page_title {
  margin-bottom: 30px;
  font-size: clamp(16px, 1rem + 5vw, 35px);
  text-align: left;
  line-height: 1em;
}
#page_title span {
  font-size: 1.3rem;
}

.section_title {
  margin: 50px auto 20px auto;
  font-size: 1.5rem;
  line-height: 1em;
  border-left: 5px solid #06C;
  padding: 0 0 0 10px;
  text-align: left;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.section_title span {
  margin: 0 0 0 1em;
  font-size: 13px;
}
.section_title small {
  margin: 0 1em 0 0;
  font-size: 13px;
}

#page_title + .section_title {
  margin-top: 0;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

.toTop {
  text-align: right;
  padding: 10px 0;
}

.toTop a {
  text-decoration: none;
}

.toTop a:before {
  font-family: "FontAwesome";
  content: "\f062"; /*文字コード部分*/
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 0.3em 0 0;
}

/*-----------------------------------------------------	*/
/*	for all						*/
/*-----------------------------------------------------	*/
body,
html {
  height: 100%;
  color: #333333;
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-kerning: auto;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "palt" 1, "trad" 1;
  font-size: 16px;
}

body {
  background: #fafafa;
}
@media screen and (max-width: 768px) {
  body {
    background: white;
  }
}

html {
  scroll-behavior: smooth;
}

html[theme=dark-mode] {
  filter: invert(1) hue-rotate(180deg);
}

html[theme=dark-mode] img {
  filter: invert(1) hue-rotate(180deg);
}

.backtotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;
}
.backtotop a {
  display: block;
  text-decoration: none;
  color: white !important;
  background: #333;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid white;
}
.backtotop a svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.backtotop a:hover {
  background: #999;
  fill: #42AFE3;
}

#breadcrumb {
  padding: 0 0 30px 0;
}
#breadcrumb ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
#breadcrumb ul li {
  font-size: 0.9rem;
}
#breadcrumb ul li a {
  text-decoration: none;
}
#breadcrumb ul li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../svg/chevron_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 0.5em;
}
#breadcrumb ul li:first-child::before {
  background-image: none;
  margin: 0 0 0 0;
}

#page {
  position: relative;
  height: auto !important;
  height: 100%;
  min-height: 100%;
}

#globalHeader {
  border-top: 5px solid #0850a8;
  background: white;
}
#globalHeader > div {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
}
#globalHeader > div #title a span {
  display: block;
  font-size: 0.9rem;
  color: #0850a8;
}
#globalHeader > div > div {
  display: flex;
  justify-content: end;
  gap: 20px;
  align-items: end;
}
#globalHeader > div > div #add {
  text-align: left;
  line-height: 1em;
}
#globalHeader > div > div #add svg {
  margin: 0 0.3em 0 0;
}
#globalHeader > div > div #add svg:nth-of-type(1) {
  font-size: 1.2rem;
}
#globalHeader > div > div #add span {
  font-size: 1.2rem;
  display: inline-block;
  padding-top: 10px;
  font-weight: 600;
}
#globalHeader > div > div #add span:nth-of-type(1) {
  font-size: 1.5rem;
}
#globalHeader > div > div #add span:nth-of-type(1) a {
  color: #333333;
}
#globalHeader > div > div nav ul > * + * {
  margin-top: 5px;
}
#globalHeader > div > div nav ul li a {
  display: block;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: 1.1rem;
  line-height: 1em;
}
#globalHeader > div > div nav ul li a svg {
  margin: 0 0.3em 0 0;
}
#globalHeader > div > div nav ul li:nth-of-type(1) a {
  background: #0850a8;
  color: yellow;
}
#globalHeader > div > div nav ul li:nth-of-type(1) a svg {
  fill: yellow;
}
#globalHeader > div > div nav ul li:nth-of-type(1) a:hover {
  background: #2280f4;
}
#globalHeader > div > div nav ul li:nth-of-type(2) a {
  background: red;
  color: white;
}
#globalHeader > div > div nav ul li:nth-of-type(2) a svg {
  fill: white;
}
#globalHeader > div > div nav ul li:nth-of-type(2) a:hover {
  background: #ff6666;
}
@media screen and (max-width: 1199px) {
  #globalHeader > div {
    align-items: end;
  }
  #globalHeader > div > div nav {
    position: absolute;
    top: 10px;
    right: 0;
  }
  #globalHeader > div > div nav ul {
    display: flex;
    gap: 0 10px;
  }
  #globalHeader > div > div nav ul > * + * {
    margin-top: 0;
  }
}
@media screen and (max-width: 1199px) and (max-width: 768px) {
  #globalHeader > div nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader {
    border-bottom: 1px solid silver;
  }
  #globalHeader > div {
    display: block;
  }
  #globalHeader > div > div {
    display: none;
  }
}

#grobalNav {
  background: #0850a8;
  position: relative;
  z-index: 99;
}
#grobalNav input {
  display: none;
}
#grobalNav input:checked + label .container {
  transition-delay: 0s;
}
#grobalNav input:checked + label .container .line.bottom {
  transform: rotateZ(45deg);
}
#grobalNav input:checked + label .container .line.top {
  transform: rotateZ(-45deg);
}
#grobalNav input:checked + label .container.bottom {
  transform: none;
}
#grobalNav input:checked + label .container.top {
  transform: none;
}
#grobalNav input:checked + label .line.bottom {
  transform: none;
  transition-delay: 0.1s;
}
#grobalNav input:checked + label .line.top {
  transform: none;
  transition-delay: 0.1s;
}
#grobalNav .burger {
  height: 51px;
  width: 51px;
  display: none;
  position: relative;
  background: #FFDC40;
}
#grobalNav .burger button {
  all: unset;
  cursor: pointer;
  display: block;
}
#grobalNav .burger button * {
  pointer-events: none;
}
#grobalNav .burger .container {
  position: absolute;
  left: 10px;
  top: 25px;
  transition: transform 0.2s ease-in-out 0.1s;
}
#grobalNav .burger .container.top {
  transform: translateY(-5px) scaleX(0.88235);
}
#grobalNav .burger .container.bottom {
  transform: translateY(5px) scaleX(0.88235);
}
#grobalNav .burger .container .line {
  transition: transform 0.2s ease-in-out;
}
#grobalNav .burger .container .line {
  height: 2px;
  border-radius: 3px;
  background: black;
  width: 30px;
}
#grobalNav > ul {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
#grobalNav > ul > li.pc_none {
  display: none;
}
#grobalNav > ul > li a {
  display: block;
  font-size: 1.1rem;
  padding: 10px 0;
  color: white;
}
#grobalNav > ul > li > span {
  display: none;
  padding: 10px 0;
  cursor: pointer;
  width: 30px;
  height: 100%;
  position: relative;
}
#grobalNav > ul > li > span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  height: 2px;
  width: 15px;
  background: #333;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
#grobalNav > ul > li > span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  height: 2px;
  width: 15px;
  background: #333;
  transition: all 0.3s ease-in-out;
}
#grobalNav > ul > li > span.open::before {
  transform: rotate(180deg);
}
#grobalNav > ul > li > span.open::after {
  opacity: 0;
}
#grobalNav > ul > li > div {
  display: none;
}
#grobalNav > ul > li > div > ul {
  display: grid;
  position: absolute;
  top: 44px;
  left: 0;
  background: white;
  width: 100%;
  padding: 30px;
  border-bottom: 1px solid #0850a8;
  margin: 0 auto;
  grid-template-columns: repeat(3, 20em);
  justify-content: center;
  gap: 10px 20px;
}
#grobalNav > ul > li > div > ul > li {
  text-align: left;
}
#grobalNav > ul > li > div > ul > li > a {
  color: #333333;
  padding: 0 0 0 1.1em;
  position: relative;
}
#grobalNav > ul > li > div > ul > li > a::before {
  display: block;
  content: "";
  background-color: #0850a8;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z"/></svg>');
  -webkit-mask-size: contain;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z"/></svg>');
  mask-size: contain;
  height: 15px;
  width: 13px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
}
#grobalNav > ul > li > div > ul > li > a:hover {
  text-decoration: underline;
}
#grobalNav > ul > li > div > ul > li > ul {
  display: none;
}
#grobalNav > ul > li > ul {
  display: none;
}
#grobalNav > ul > li:hover > a {
  background: #0a67d9;
}
#grobalNav > ul > li:hover > div {
  display: block;
}
#grobalNav > ul > li.this_page > a {
  color: yellow;
}
#grobalNav > ul > li.this_page > span::before {
  background: white;
}
#grobalNav > ul > li.this_page > span::after {
  background: white;
}
@media screen and (max-width: 1199px) {
  #grobalNav > ul > li > div > ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  #grobalNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  }
  #grobalNav > ul {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 20rem;
    max-width: 80vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: white;
    transform: translateX(-110%);
    transition: all 0.5s ease-out;
    z-index: 5;
    display: block;
    padding: 51px 0 0 0;
  }
  #grobalNav > ul > li {
    text-align: left;
    border-top: 1px dotted silver;
  }
  #grobalNav > ul > li:has(span) {
    display: grid;
    grid-template-columns: 1fr 30px;
  }
  #grobalNav > ul > li > a {
    padding: 10px 1rem;
    color: #333333;
  }
  #grobalNav > ul > li > span {
    display: inline-block;
  }
  #grobalNav > ul > li.pc_none {
    display: block;
  }
  #grobalNav > ul > li:last-child {
    border-bottom: 1px dotted silver;
  }
  #grobalNav > ul > li ul {
    margin: 0 0 0 10px;
  }
  #grobalNav > ul > li ul li {
    margin: 0 0 0 2em;
    list-style: disc;
  }
  #grobalNav > ul > li ul li a {
    padding: 0.5em 0;
    color: #333333;
  }
  #grobalNav > ul > li:hover {
    background: #f5f5f5;
  }
  #grobalNav > ul > li:hover > a {
    background: none;
  }
  #grobalNav > ul > li:hover > div {
    display: none;
  }
  #grobalNav > ul > li.this_page {
    background: #0850a8;
  }
  #grobalNav > ul > li.this_page > a {
    color: white;
  }
  #grobalNav > ul > li.this_page > ul > li {
    color: white;
  }
  #grobalNav > ul > li.this_page > ul > li a {
    color: white;
  }
  #grobalNav > ul > li.this_page:hover {
    background: #0850a8;
  }
  #grobalNav .burger {
    display: block;
    z-index: 10;
  }
  #grobalNav #checkbox:checked ~ ul {
    transform: translateX(0%);
  }
}

#preamble {
  padding: 30px 0 0 0;
  margin: 0 auto;
  width: min(100% - 40px, 1200px);
}
#preamble main {
  display: block;
}

.not_column {
  background: white;
  padding: 30px;
  border: 1px solid #0850a8;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .not_column {
    border: none;
    padding: 0;
  }
}

.column_box {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
}
.column_box > div:nth-of-type(1) > div#sub_category {
  position: sticky;
  top: 0;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul {
  background: white;
  border: 1px solid #0850a8;
  border-radius: 10px;
  overflow: hidden;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > * + * {
  border-top: 1px dotted #0850a8;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > a {
  display: block;
  color: #333333;
  padding: 10px 15px;
  text-align: left;
  font-size: 1.1rem;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li.this_page {
  background: #f5f5f5;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li.this_page > a {
  color: #0850a8;
  font-weight: 600;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul {
  margin: 0 0 0 1em;
  padding-bottom: 0.5em;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul > * + * {
  margin-top: 0.5rem;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul > li {
  text-align: left;
  margin: 0 0 0 2em;
  list-style: disc;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul > li a {
  color: #333333;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul > li.this_page {
  color: #0850a8;
}
.column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul > li.this_page a {
  color: #0850a8;
}
.column_box > div:nth-of-type(2) {
  background: white;
  padding: 30px;
  border: 1px solid #0850a8;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .column_box {
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .column_box {
    display: block;
  }
  .column_box > div:nth-of-type(1) > div#sub_category {
    position: static;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 0.5em 1.5rem;
    padding: 15px;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul > * + * {
    border: none;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul > li a {
    padding: 0 0 0 13px;
    font-size: 1rem;
    position: relative;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul > li a::before {
    display: block;
    content: "";
    background-color: #333333;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 320 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg>');
    -webkit-mask-size: contain;
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 320 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg>');
    mask-size: contain;
    height: 15px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -0.5em;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul > li:has(ul) {
    width: 100%;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 0.5em 1em;
  }
  .column_box > div:nth-of-type(1) > div#sub_category > ul > li > ul > li {
    list-style: none;
    margin: 0 auto;
  }
  .column_box > div:nth-of-type(2) {
    margin-top: 30px;
    border: none;
    padding: 0;
    border-radius: 0;
  }
}

#sns_btn {
  margin: 60px auto 0 auto;
}
#sns_btn > div {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
#sns_btn > div ul {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#sns_btn > div ul li > a {
  border: 2px solid #eee;
  border-radius: 0.4rem;
  display: block;
  text-decoration: none;
  padding: 0.5em 0.7em;
  font-weight: bold;
  background: white;
}
#sns_btn > div ul li > a:hover {
  color: white !important;
}
#sns_btn > div ul li.facebook a {
  color: #3c5a99;
  border-color: #3c5a99;
}
#sns_btn > div ul li.facebook a:hover {
  background: #3c5a99;
}
#sns_btn > div ul li.twitter a {
  color: #333;
  border-color: #333;
}
#sns_btn > div ul li.twitter a:hover {
  background: #333;
}
#sns_btn > div ul li.hatena a {
  color: #009fd7;
  border-color: #009fd7;
}
#sns_btn > div ul li.hatena a:hover {
  background: #009fd7;
}
#sns_btn > div ul li.pocket a {
  color: #ed374d;
  border-color: #ed374d;
}
#sns_btn > div ul li.pocket a:hover {
  background: #ed374d;
}
#sns_btn > div ul li.line a {
  color: #01ba01;
  border-color: #01ba01;
}
#sns_btn > div ul li.line a:hover {
  background: #01ba01;
}
#sns_btn > div ul:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
}
@media screen and (max-width: 768px) {
  #sns_btn > div ul {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }
  #sns_btn > div ul li a {
    padding: 0.5rem 0;
  }
}

#globalFooter {
  position: sticky;
  top: 100vh;
  padding: 50px 0;
  background: #0850a8;
  color: white;
  margin: 60px auto 0 auto;
}
#globalFooter #copyright {
  font-size: 0.9rem;
}

time.g_time {
  display: block;
  text-align: right;
}

div.g_comment {
  width: 740px;
  max-width: 100%;
  margin: 20px auto 0 auto;
  padding: 0 0 20px 0;
}
div.g_comment h3 {
  text-align: left;
  font-size: 1.2rem;
}
div.g_comment p {
  text-align: left;
  margin: 10px auto 0 auto;
}

ul#image-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 20px auto 0 auto;
}
ul#image-list li a {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 5px;
  overflow: hidden;
}
ul#image-list li a img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

p.page_back {
  margin: 30px auto 0 auto;
}
p.page_back a {
  display: inline-block;
  font-size: 1.2rem;
}/*# sourceMappingURL=master.css.map */