@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: 20px;
  font-size: 26px;
  line-height: 39px;
  font-size: 1.625rem;
  line-height: 2.4375rem;
  font-weight: 600;
  text-align: left;
  padding: 10px 20px;
  background: url(../grp/page_title_bg.jpg) left center no-repeat;
  background: #7E2308;
  border-radius: 5px;
  color: white;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 3px 0px #CCC;
}

.section_title, .section_title_mt0 {
  margin: 60px 0 20px 0;
  font-weight: 600;
  text-align: left;
  padding: 0 0 3px 0;
  border-bottom: 1px solid #7E2308;
  color: #7E2308;
  font-size: 24px;
  line-height: 36px;
  font-size: 1.5rem;
  line-height: 2.25rem;
}

.section_title_mt0 {
  margin-top: 0;
}

.section_title2 {
  text-align: left;
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  font-weight: 600;
  color: #7E2308;
  margin: 50px auto 0 auto;
}
.section_title2 svg {
  vertical-align: middle;
  margin: 0 0.3em 0 0;
  fill: #7E2308;
}

/*-----------------------------------------------------	*/
/*	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;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
}

body {
  background: #f7f4ee;
  background: url(../grp/body_bg.png);
}

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);
}

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

#globalHeader {
  color: white;
  background: #7E2308;
  border-top: 5px solid #7E2308;
  padding: 10px 0;
  position: relative;
}
#globalHeader > div {
  width: 1200px;
  height: 75px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
#globalHeader > div #title {
  text-align: left;
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 5;
}
#globalHeader > div #title a {
  color: white;
}
#globalHeader > div #title a img {
  width: 350px;
}
#globalHeader > div #add {
  position: absolute;
  right: 20px;
  top: 15px;
  text-align: left;
}
#globalHeader > div #add svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin: 0 0.3em 0 0;
}
#globalHeader > div #add span {
  font-weight: 600;
  font-size: 23px;
  line-height: 34.5px;
  font-size: 1.4375rem;
  line-height: 2.15625rem;
}
#globalHeader > div #add span a {
  color: white;
}
#globalHeader > div #add address {
  font-style: normal;
}
#globalHeader > div nav {
  position: absolute;
  top: 5px;
  right: 20px;
}
#globalHeader > div nav > ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
#globalHeader > div nav > ul > li > a {
  background: white;
  padding: 0.2em 0.5em;
  font-size: 0.9rem;
  line-height: 1em;
  border-radius: 5px;
  color: gray;
  font-weight: 500;
}
#globalHeader > div nav > ul > li > a svg {
  height: 1em;
  width: 1em;
  fill: gray;
  vertical-align: -1px;
}
#globalHeader > div nav > ul > li > a:hover {
  background: #ffffa6;
}
@media screen and (max-width: 1199px) {
  #globalHeader > div {
    width: auto;
    padding: 0 20px 20px 20px;
    height: auto;
  }
  #globalHeader > div #title {
    display: block;
    position: relative;
    text-align: left;
    bottom: auto;
    left: auto;
  }
  #globalHeader > div #title a {
    display: inline-block;
  }
  #globalHeader > div #title a img {
    width: 350px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader > div #title a img {
    max-width: calc(100% - 70px);
  }
  #globalHeader > div #add {
    display: none;
  }
  #globalHeader > div nav {
    display: none;
  }
}

#grobalNav > ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
#grobalNav > ul > li {
  position: relative;
}
#grobalNav > ul > li > a {
  display: block;
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  padding: 10px 0;
  color: #333333;
  font-weight: 600;
}
#grobalNav > ul > li > a svg {
  fill: #7E2308;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}
#grobalNav > ul > li > a::before {
  content: "";
  width: 1px;
  height: 16px;
  background: silver;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
#grobalNav > ul > li:last-child a::after {
  content: "";
  width: 1px;
  height: 16px;
  background: silver;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
#grobalNav > ul > li.this_page > a, #grobalNav > ul > li.this_page > a:hover {
  background: #4e1605;
  color: white;
}
#grobalNav > ul > li.this_page > a svg, #grobalNav > ul > li.this_page > a:hover svg {
  fill: white;
}
#grobalNav > ul > li.open { /*選択中*/
  background: #ae300b;
}
#grobalNav > ul > li.open > a {
  color: white;
}
#grobalNav > ul > li.open > a svg {
  fill: white;
}
#grobalNav > ul > li ul { /*サブ*/
  background: rgba(78, 22, 5, 0.9);
}
#grobalNav > ul > li ul > li {
  text-align: left;
  border-top: 1px solid silver;
}
#grobalNav > ul > li ul > li > a {
  display: block;
  padding: 7px 10px 7px 30px;
  color: white;
  position: relative;
}
#grobalNav > ul > li ul > li > a::before {
  display: block;
  content: "";
  background-color: white;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="none" d="M0 0h24v24H0z"/><path d="M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243-1.414-1.415z"/></g></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 24 24"><g><path fill="none" d="M0 0h24v24H0z"/><path d="M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243-1.414-1.415z"/></g></svg>');
  mask-size: contain;
  height: 1em;
  width: 1em;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -0.5em;
}
#grobalNav > ul > li ul > li > a svg {
  margin: 0 0 0 0.3em;
  vertical-align: middle;
  fill: white;
}
#grobalNav > ul > li ul > li > a:hover {
  background: rgba(126, 35, 8, 0.9);
}
#grobalNav > ul > li ul > li:first-child {
  border-top: none;
}
#grobalNav > ul > li ul > li.this_page > a, #grobalNav > ul > li ul > li.this_page > a:hover {
  background: #ae300b;
}
@media screen and (max-width: 768px) {
  #grobalNav > ul {
    display: block;
    margin: 60px auto 0 auto;
  }
  #grobalNav > ul > li {
    border-top: 1px solid silver;
    text-align: left;
  }
  #grobalNav > ul > li > a {
    font-size: 17px;
    line-height: 25.5px;
    font-size: 1.0625rem;
    line-height: 1.59375rem;
    padding: 10px 10px;
    font-weight: 600;
  }
  #grobalNav > ul > li > a svg {
    fill: #7E2308;
  }
  #grobalNav > ul > li > a::before {
    width: 0;
  }
  #grobalNav > ul > li:last-of-type {
    border-bottom: 1px solid silver;
  }
  #grobalNav > ul > li.this_page > a, #grobalNav > ul > li.this_page > a:hover {
    background: #fc9130;
  }
  #grobalNav > ul > li ul {
    border-radius: 0px;
    background: white;
    color: #333333;
    font-weight: 500;
  }
  #grobalNav > ul > li ul > li {
    border: none;
  }
  #grobalNav > ul > li ul > li a {
    color: #333333;
    padding: 0.5em 0 0.5em 40px;
  }
  #grobalNav > ul > li ul > li a svg {
    fill: red;
  }
  #grobalNav > ul > li ul > li a:hover {
    font-weight: 600;
    background: white;
  }
  #grobalNav > ul > li ul > li a::before {
    background: #7E2308;
    left: 20px;
  }
  #grobalNav > ul > li ul > li.this_page a {
    background: #fcded5;
  }
  #grobalNav > ul > li ul > li.this_page a:hover {
    background: #fbcbbd;
  }
}

#preamble {
  padding: 30px 0 30px 0;
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
}
#preamble main {
  display: block;
}
@media screen and (max-width: 1199px) {
  #preamble main {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #preamble {
    background: white;
    padding: 20px 20px 30px 20px;
  }
  #preamble main {
    margin: 0;
  }
}

.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 ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
#breadcrumb ul li {
  font-size: 13px;
  line-height: 19.5px;
  font-size: 0.8125rem;
  line-height: 1.21875rem;
}
#breadcrumb ul li a {
  text-decoration: none;
}
#breadcrumb ul li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../svg/icon-arrow-right-s-line.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;
}

footer#globalFooter {
  position: sticky;
  top: 100vh;
  padding: 30px 0 0 0;
  background: #7E2308;
  color: white;
  margin: 60px auto 0 auto;
  border-top: 1px solid #7E2308;
}
footer#globalFooter > div {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
footer#globalFooter > div > div {
  display: flex;
  justify-content: start;
  gap: 40px;
  align-items: center;
}
footer#globalFooter > div > div h3 {
  width: 350px;
}
footer#globalFooter > div > div p {
  text-align: left;
  line-height: 1em;
}
footer#globalFooter > div > div p svg {
  fill: white;
}
footer#globalFooter > div > div p span {
  font-size: 22px;
  line-height: 33px;
  font-size: 1.375rem;
  line-height: 2.0625rem;
}
footer#globalFooter > div > div p span a {
  color: #333333;
  color: white;
  font-weight: 600;
}
footer#globalFooter > div > p {
  margin: 30px auto 0 auto;
  line-height: 1.2em;
}
footer#globalFooter > p#copyright {
  background: #7E2308;
  color: white;
  padding: 10px 0;
  margin: 20px auto 0 auto;
  font-size: 0.8rem;
}
@media screen and (max-width: 1199px) {
  footer#globalFooter > div > div {
    display: block;
  }
  footer#globalFooter > div > div h3 {
    width: min(480px, 100%);
    margin: 0 auto;
  }
  footer#globalFooter > div > div p {
    margin: 20px auto 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer#globalFooter {
    margin: 0 auto;
  }
  footer#globalFooter > div > div h3 img {
    max-width: calc(100% - 40px);
  }
}

/***************************/
#wrap2 {
  display: grid !important;
  grid-template-columns: 1fr 250px;
  gap: 30px;
  margin: 30px auto 0 auto;
}
#wrap2 > div {
  background: white;
  border-radius: 10px;
}
#wrap2 > div:nth-of-type(1) {
  box-shadow: 0px 0px 3px 0px #CCC;
  min-width: 0;
}
#wrap2 > div:nth-of-type(2) {
  background: none;
}
@media screen and (max-width: 768px) {
  #wrap2 {
    display: block !important;
  }
  #wrap2 > div:nth-of-type(2) {
    display: none;
  }
}

.side_nav {
  text-align: left;
}
.side_nav h3 {
  display: inline-block;
  margin: 0 0 0 8px;
  background: #7E2308;
  color: white;
  padding: 0.3em 0.5em 0 0.5em;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.side_nav ul {
  border: 4px solid #7E2308;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.side_nav ul > li {
  border-top: 1px dotted silver;
}
.side_nav ul > li a {
  display: block;
  padding: 7px 15px 7px 30px;
  color: #333333;
  position: relative;
}
.side_nav ul > li a:hover {
  background: #feeec2;
}
.side_nav ul > li a::before {
  display: block;
  content: "";
  background-color: #7E2308;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="none" d="M0 0h24v24H0z"/><path d="M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243-1.414-1.415z"/></g></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 24 24"><g><path fill="none" d="M0 0h24v24H0z"/><path d="M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243-1.414-1.415z"/></g></svg>');
  mask-size: contain;
  height: 1em;
  width: 1em;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -0.5em;
}
.side_nav ul > li:first-child {
  border-top: none;
}
.side_nav ul > li:first-child a {
  padding-top: 13px;
}
.side_nav ul > li:last-child a {
  padding-bottom: 13px;
}

#shusai {
  margin-top: 20px;
}
#shusai h3 {
  background: #4d7025;
}
#shusai ul {
  border: 4px solid #4d7025;
}

ul#side_links_banner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  margin: 20px auto 0 auto;
}
ul#side_links_banner li a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

/****************************/
#wrap_box {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  margin: 30px auto 0 auto;
}
#wrap_box > div:nth-of-type(1) > div {
  postion: -webkit-sticky;
  position: sticky;
  top: 0;
}
#wrap_box > div:nth-of-type(1) > div > ul {
  box-shadow: 0px 0px 3px 0px #CCC;
  background: white;
  border-radius: 10px;
  z-index: 10;
}
#wrap_box > div:nth-of-type(1) > div > ul li {
  text-align: left;
}
#wrap_box > div:nth-of-type(1) > div > ul li a {
  color: #7E2308;
  display: block;
  padding: 8px 20px 8px 30px;
  border-top: 1px dotted #ccc;
  position: relative;
}
#wrap_box > div:nth-of-type(1) > div > ul li a svg {
  color: #7E2308;
  margin: 0 0 0 0.3em;
  fill: red;
}
#wrap_box > div:nth-of-type(1) > div > ul li a::before {
  display: block;
  content: "";
  background-color: #7E2308;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="none" d="M0 0h24v24H0z"/><path d="M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243-1.414-1.415z"/></g></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 24 24"><g><path fill="none" d="M0 0h24v24H0z"/><path d="M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243-1.414-1.415z"/></g></svg>');
  mask-size: contain;
  height: 1em;
  width: 1em;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -0.5em;
}
#wrap_box > div:nth-of-type(1) > div > ul li a:hover {
  background: #fbe8ae;
}
#wrap_box > div:nth-of-type(1) > div > ul li.this_page > a, #wrap_box > div:nth-of-type(1) > div > ul li.this_page > a:hover {
  background: #fbe8ae;
}
#wrap_box > div:nth-of-type(1) > div > ul li:first-child a {
  padding-top: 15px;
  border-top: none;
}
#wrap_box > div:nth-of-type(1) > div > ul li:first-child a::before {
  top: 60%;
}
#wrap_box > div:nth-of-type(1) > div > ul li:last-child a {
  padding-bottom: 15px;
}
#wrap_box > div:nth-of-type(1) > div > ul li:last-child a::before {
  top: 45%;
}
#wrap_box > div:nth-of-type(1) > div aside {
  margin: 20px auto 0 auto;
}
#wrap_box > div:nth-of-type(1) > div aside ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
#wrap_box > div:nth-of-type(1) > div aside ul li a {
  display: block;
}
#wrap_box > div:nth-of-type(1) > div aside ul li a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}
#wrap_box > div:nth-of-type(2) {
  min-width: 0;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px 0px #CCC;
}
@media screen and (max-width: 1199px) {
  #wrap_box {
    grid-template-columns: 230px 1fr;
    gap: 20px;
  }
  #wrap_box > div:nth-of-type(2) {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  #wrap_box {
    display: block;
  }
  #wrap_box > div:nth-of-type(1) {
    display: none;
  }
  #wrap_box > div:nth-of-type(1) > div {
    position: static;
  }
  #wrap_box > div:nth-of-type(2) {
    padding: 0;
    box-shadow: 0px 0px 3px 0px white;
  }
}

/**************************/
.read_more {
  position: relative;
}

.more_box {
  height: 300px;
  overflow: hidden;
}

.show_more {
  position: absolute;
  bottom: -50px;
  left: 50%;
  padding: 0.3em 1em;
  margin-left: -4em;
  text-align: center;
  line-height: 30px;
  background: #333;
  color: white;
  cursor: pointer;
  transition: bottom 0.2s;
  border-radius: 5px;
}/*# sourceMappingURL=master.css.map */