@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: 32px;
  line-height: 48px;
  font-size: 2rem;
  line-height: 3rem;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro";
  font-weight: 600;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
  color: #77B82B;
}

.section_title, .section_title_mt0 {
  margin: 60px 0 20px 0;
  font-size: 20px;
  line-height: 30px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 600;
}

.section_title_mt0 {
  margin-top: 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;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
}

body {
  background: url(../grp/body_bg.png), #fbfaf7;
  transform: rotateZ(0.03deg); /*まるゴのガタツキ防止*/
}

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 {
  background: url(../grp/head_bh.png) top center repeat-x, white;
}
#globalHeader > div {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 23px 0 0 0;
}
#globalHeader > div #title {
  font-size: 32px;
  line-height: 36px;
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 600;
  position: absolute;
  left: 20px;
  top: 0;
  padding: 10px 0 0 0;
  width: 260px;
  height: 160px;
  background: url(../grp/title_bg.png) bottom center no-repeat;
  z-index: 99;
}
#globalHeader > div #title a {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro";
  font-weight: 600;
  color: white;
}
#globalHeader > div #add {
  text-align: right;
  margin: 0 20px 0 0;
}
#globalHeader > div #add svg {
  width: 20px;
  height: auto;
  fill: #333333;
  margin: 0 0 0 0;
  vertical-align: middle;
}
#globalHeader > div #add span {
  font-weight: 600;
  font-size: 27px;
  line-height: 32px;
  font-size: 1.6875rem;
  line-height: 2rem;
}
#globalHeader > div #add span a {
  color: #77B82B;
}
#globalHeader > div #add address {
  font-style: normal;
}
@media screen and (max-width: 768px) {
  #globalHeader > div {
    height: auto;
  }
  #globalHeader > div #title {
    background: none;
    width: auto;
    height: auto;
    font-size: 25px;
    line-height: 30px;
    font-size: 1.5625rem;
    line-height: 1.875rem;
    top: auto;
    position: relative;
  }
  #globalHeader > div #title a {
    color: #77B82B;
  }
  #globalHeader > div #title a br {
    display: none;
  }
  #globalHeader > div #add {
    position: relative;
    text-align: center;
    margin: 10px auto 0 auto;
  }
}

#grobalNav {
  border-bottom: 3px solid #77B82B;
  padding: 0 0 0 0;
  background: white;
}
#grobalNav > div {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
#grobalNav > div ul {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr 3fr;
  margin-left: 280px;
}
#grobalNav > div ul li a {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro";
  display: block;
  padding: 10px 0;
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  color: #333333;
}
#grobalNav > div ul li a svg {
  margin: 0 0.3em 0 0;
  fill: #77B82B;
}
#grobalNav > div ul li a:hover svg {
  fill: #fb426b;
}
#grobalNav > div ul li.this_page a, #grobalNav > div ul li.this_page a:hover {
  color: #fb426b;
}
#grobalNav > div ul li.this_page a svg, #grobalNav > div ul li.this_page a:hover svg {
  fill: #fb426b;
}
@media screen and (max-width: 768px) {
  #grobalNav {
    padding: 10px 0 0 0;
  }
  #grobalNav > div ul {
    margin-left: 0px;
    grid-template-columns: repeat(3, 1fr);
  }
  #grobalNav > div ul li:nth-of-type(1) {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #grobalNav > div ul {
    gap: 10px;
    padding: 0 10px 10px 10px;
  }
  #grobalNav > div ul li a {
    border: 1px solid #77B82B;
    border-radius: 8px;
    padding: 0.5em 0;
    font-size: 17px;
    line-height: 25.5px;
    font-size: 1.0625rem;
    line-height: 1.59375rem;
  }
  #grobalNav > div ul li a svg {
    display: none;
  }
  #grobalNav > div ul li.this_page a {
    background: #ffffc6;
    font-weight: 600;
  }
}

#preamble {
  padding: 30px 0 0 0;
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}
#preamble main {
  display: block;
}
@media screen and (max-width: 999px) {
  #preamble {
    padding: 30px 20px 0 20px;
  }
}

.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 {
  margin: 20px auto 0 auto;
}
#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;
}

#sns_btn {
  margin: 70px auto 0 auto;
  background: #77B82B;
  position: relative;
}
#sns_btn::before {
  content: "";
  width: 100%;
  height: 20px;
  background: url(../grp/foot_bg.png) bottom center repeat-x;
  position: absolute;
  top: -20px;
  left: 0;
}
#sns_btn > div {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0 0 0;
}
#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: #28aae1;
  border-color: #28aae1;
}
#sns_btn > div ul li.twitter a:hover {
  background: #28aae1;
}
#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: 999px) {
  #sns_btn > div ul {
    padding: 0 20px;
  }
}
@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;
  }
}

footer#globalFooter {
  position: sticky;
  top: 100vh;
  padding: 30px 0;
  background: #77B82B;
}
footer#globalFooter > div {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
footer#globalFooter > div > div {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 20px;
  text-align: left;
  align-items: center;
  padding: 0 20px;
}
footer#globalFooter > div > div h3 {
  font-size: 23px;
  line-height: 34.5px;
  font-size: 1.4375rem;
  line-height: 2.15625rem;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro";
  font-weight: 600;
}
footer#globalFooter > div > div span {
  font-size: 26px;
  line-height: 30px;
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 600;
}
footer#globalFooter > div #copyright {
  font-size: 13px;
  line-height: 19.5px;
  font-size: 0.8125rem;
  line-height: 1.21875rem;
  margin: 20px auto 0 auto;
}
footer#globalFooter::after {
  content: url(../grp/children.png);
  position: absolute;
  bottom: 15px;
  right: 55px;
}
@media screen and (max-width: 999px) {
  footer#globalFooter::after {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  footer#globalFooter > div > div {
    display: block;
    text-align: center;
  }
  footer#globalFooter::after {
    content: "";
  }
}/*# sourceMappingURL=master.css.map */