@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: 50px;
  font-size: clamp(16px, 1rem + 5vw, 35px);
}

.section_title {
  margin: 60px 0 20px 0;
  font-size: clamp(16px, 1rem + 5vw, 24px);
}

#page_title + .section_title {
  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, "trad" 1;
}

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 {
  padding: 20px;
  height: 80px;
  border-bottom: 1px solid silver;
}
#globalHeader > div {
  margin: 0 auto;
  position: relative;
  display: grid;
  justify-content: space-between;
  grid-template-columns: auto auto;
  align-items: bottom;
}
#globalHeader > div #title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1em;
  margin: 10px auto 0 auto;
}
#globalHeader > div #title a {
  color: #EB6EA6;
}
#globalHeader > div #title a img {
  height: 1.5rem;
  margin: 0 0.3em 0 0;
  display: none;
}
@media screen and (max-width: 1199px) {
  #globalHeader {
    height: auto;
    padding: 0;
  }
  #globalHeader > div {
    display: block;
    text-align: left;
  }
  #globalHeader > div #title {
    display: inline-block;
    padding: 20px 20px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader {
    border-bottom: none;
  }
}

#grobalNav ul {
  display: flex;
  gap: 20px;
  padding: 20px 8rem 0 0;
}
#grobalNav ul li a {
  display: block;
  color: #333333;
  font-size: 1.1rem;
  white-space: nowrap;
}
#grobalNav ul li a svg {
  margin: 0 0.3rem 0 0;
  color: #EB6EA6;
}
#grobalNav ul li a:hover {
  color: #EB6EA6;
}
#grobalNav ul li#space a {
  position: relative;
}
#grobalNav ul li#space a::before {
  content: "＼check!／";
  position: absolute;
  font-size: 0.8rem;
  top: -1rem;
  left: 50%;
  margin-left: -2.5em;
  color: red;
}
#grobalNav ul li#line {
  position: absolute;
  top: -10px;
  right: 8rem;
}
#grobalNav ul li#line a {
  display: block;
  font-size: 0.9rem;
  background: #06C152;
  color: white;
  padding: 0 0.5rem;
  border-radius: 5px;
}
#grobalNav ul li#line a svg {
  height: 0.9rem;
  margin: 0 0.3em 0 0;
  fill: white;
}
#grobalNav ul li#line a:hover {
  background: #07da5d;
}
#grobalNav ul li#yoyaku {
  position: absolute;
  top: -20px;
  right: -20px;
}
#grobalNav ul li#yoyaku a {
  display: block;
  background: red;
  color: white;
  height: 80px;
  width: 7rem;
  position: relative;
}
#grobalNav ul li#yoyaku a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#grobalNav ul li#yoyaku a:hover {
  background: #e60000;
}
@media screen and (max-width: 1199px) {
  #grobalNav ul {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 20px auto 0 auto;
    grid-template-columns: repeat(5, 1fr);
  }
  #grobalNav ul li {
    text-align: center;
  }
  #grobalNav ul li a {
    display: block;
    padding: 15px 0;
  }
  #grobalNav ul li#space a::before {
    top: -0.2rem;
  }
  #grobalNav ul li#line {
    top: 5px;
    right: 8rem;
  }
  #grobalNav ul li#yoyaku {
    top: 0px;
    right: 0px;
  }
  #grobalNav ul li#yoyaku a {
    height: 70px;
    width: 7rem;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  #grobalNav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0 10px;
  }
  #grobalNav ul li a {
    border: 1px solid silver;
    border-radius: 10px;
  }
  #grobalNav ul li#space a {
    padding: 23px 0 7px 0;
  }
  #grobalNav ul li#space a::before {
    top: 0.4rem;
  }
  #grobalNav ul li#line {
    right: 10px;
  }
  #grobalNav ul li#yoyaku {
    position: static;
  }
  #grobalNav ul li#yoyaku a {
    display: block;
    height: 56px;
    width: auto;
    padding: 15px 0;
    border: none;
  }
}
@media screen and (max-width: 480px) {
  #grobalNav ul li a svg {
    display: none;
  }
}

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

.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 {
  width: min(100% - 40px, 1200px);
  max-width: 100%;
  margin: 0 auto;
}
#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;
}

#sns_btn {
  margin: 60px auto 0 auto;
  display: none;
}
#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: #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: 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: 50px 0;
  background: #EB6EA6;
  color: white;
  margin: 60px auto 0 auto;
}
footer#globalFooter > div {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
footer#globalFooter > div > h3 {
  font-size: 1.5rem;
  line-height: 1em;
}
footer#globalFooter > div > h3 img {
  height: 1.5rem;
  margin: 0 0.3em 0 0;
  display: none;
}
footer#globalFooter > div p#foot_add {
  margin: 20px auto 0 auto;
  font-size: 1.1rem;
}
footer#globalFooter > div p#foot_add svg {
  font-size: 1.1rem;
  fill: white;
}
footer#globalFooter > div p#foot_add span {
  fill: white;
  font-size: 1.5rem;
}
footer#globalFooter > div p#foot_add span a {
  color: white;
}
footer#globalFooter > div aside {
  margin: 0.5em auto 0 auto;
  font-size: 0.9rem;
}
footer#globalFooter > div #copyright {
  font-size: 0.9rem;
  margin: 30px auto 0 auto;
}/*# sourceMappingURL=master.css.map */