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

/*********** 画像切替え *************/
.switch {
  visibility: hidden;
}

/***********************************/
A:link {
  COLOR: #0033cc;
}

A:visited {
  COLOR: #990099;
}

A:HOVER {
  COLOR: red;
}

table {
  width: 100%;
}

#page_title {
  border: 3px solid #f9b614;
  background: white;
  padding: 0.3em 0.7em;
  margin: 20px auto;
  text-align: left;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  font-size: 1.75rem;
  line-height: 2.625rem;
  border-radius: 3px;
}

.section_title, .section_title_mt0 {
  margin: 50px 0 20px 0;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  font-size: 1.75rem;
  line-height: 2.625rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}
.section_title:before, .section_title_mt0:before, .section_title:after, .section_title_mt0:after {
  content: "";
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: black;
}
.section_title:before, .section_title_mt0:before {
  left: 0;
}
.section_title:after, .section_title_mt0:after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .section_title, .section_title_mt0 {
    font-size: 22px;
    line-height: 33px;
    font-size: 1.375rem;
    line-height: 2.0625rem;
  }
}

.section_title_mt0 {
  margin-top: 0;
}

/********************
	a img:hover {
		filter: alpha(opacity=75);
		-moz-opacity:0.75;
		opacity:0.75;
	}
*********************/
/*-----------------------------------------------------	*/
/*	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;
}

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

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

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

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

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

#globalHeader {
  background: url(../grp/head_bg.png) top center repeat-x;
  padding: 37px 0 0 0;
}
#globalHeader #title_description {
  font-weight: 600;
  color: #F63;
}
#globalHeader #title {
  margin: 5px auto 0 auto;
}
#globalHeader #add {
  display: none;
}
#globalHeader #add address {
  font-style: normal;
}
@media screen and (max-width: 768px) {
  #globalHeader {
    border-bottom: none;
    height: 150px;
  }
}
@media screen and (max-width: 480px) {
  #globalHeader #title {
    padding: 0 10px;
  }
  #globalHeader #title_description {
    padding: 37px 10px 0 10px;
  }
}

#grobalNav {
  position: relative;
  margin: 10px auto 0 auto;
}
#grobalNav ul {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 10;
}
#grobalNav ul li {
  width: 12.5%;
  margin-right: 5%;
}
#grobalNav ul li a {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-decoration: none;
  padding: 32px 0;
  border: 2px dashed #80663C;
  box-shadow: 0px 0px 3px 0px #CCC;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: white;
}
#grobalNav ul li a span {
  display: block;
  font-size: 25px;
  line-height: 37.5px;
  font-size: 1.5625rem;
  line-height: 2.34375rem;
  font-family: "Caveat", cursive;
  letter-spacing: 0;
  font-weight: bold;
}
@media all and (-ms-high-contrast: none) {
  #grobalNav ul li a span {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}
#grobalNav ul li a:hover {
  color: white !important;
  box-shadow: 0px 0px 5px 0px #967434;
}
#grobalNav ul li.this_page a,
#grobalNav ul li.this_page a:hover {
  color: white !important;
}
#grobalNav ul li:nth-child(1) a {
  border-radius: 50% 50% 50% 60%/50% 50% 60% 55%;
  color: red;
  border: 2px dashed red;
}
#grobalNav ul li:nth-child(1) a:hover {
  background: red;
}
#grobalNav ul li:nth-child(1).this_page a,
#grobalNav ul li:nth-child(1).this_page a:hover {
  background: red;
}
#grobalNav ul li:nth-child(2) a {
  border-radius: 60% 40% 50% 50%/50%;
  color: #0C9BE0;
  border: 2px dashed #0C9BE0;
}
#grobalNav ul li:nth-child(2) a:hover {
  background: #0C9BE0;
}
#grobalNav ul li:nth-child(2).this_page a,
#grobalNav ul li:nth-child(2).this_page a:hover {
  background: #0C9BE0;
}
#grobalNav ul li:nth-child(3) a {
  border-radius: 55% 55% 50% 45%/45% 50% 50% 50%;
  color: #0CCD80;
  border: 2px dashed #0CCD80;
}
#grobalNav ul li:nth-child(3) a:hover {
  background: #0CCD80;
}
#grobalNav ul li:nth-child(3).this_page a,
#grobalNav ul li:nth-child(3).this_page a:hover {
  background: #0CCD80;
}
#grobalNav ul li:nth-child(4) a {
  border-radius: 50% 50% 60% 50%/60% 55% 50% 50%;
  color: #F98300;
  border: 2px dashed #F98300;
}
#grobalNav ul li:nth-child(4) a:hover {
  background: #F98300;
}
#grobalNav ul li:nth-child(4).this_page a,
#grobalNav ul li:nth-child(4).this_page a:hover {
  background: #F98300;
}
#grobalNav ul li:nth-child(5) a {
  border-radius: 50% 50% 60% 40%/50%;
  color: #FC47D8;
  border: 2px dashed #FC47D8;
}
#grobalNav ul li:nth-child(5) a:hover {
  background: #FC47D8;
}
#grobalNav ul li:nth-child(5).this_page a,
#grobalNav ul li:nth-child(5).this_page a:hover {
  background: #FC47D8;
}
#grobalNav ul li:nth-child(6) a {
  border-radius: 55% 50% 45% 55%/50% 50% 50% 45%;
  color: #090;
  border: 2px dashed #090;
}
#grobalNav ul li:nth-child(6) a:hover {
  background: #090;
}
#grobalNav ul li:nth-child(6).this_page a,
#grobalNav ul li:nth-child(6).this_page a:hover {
  background: #090;
}
#grobalNav ul li:last-child {
  margin-right: 0;
}
#grobalNav::after {
  content: "";
  border-bottom: 2px dashed #85B31A;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  #grobalNav ul {
    width: auto;
  }
  #grobalNav ul li {
    width: 15%;
    margin-right: 2%;
  }
  #grobalNav ul li a span {
    font-size: 21px;
    line-height: 31.5px;
    font-size: 1.3125rem;
    line-height: 1.96875rem;
  }
}
#preamble {
  padding: 30px 0 0 0;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  #preamble {
    width: auto;
    padding: 30px 15px 120px 15px;
  }
}

#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;
}
#sns_btn > div {
  width: min(1200px, 100%);
  margin: 0 auto;
  background: #ffae00;
  border-radius: 10px;
}
#sns_btn > div ul {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 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: 30px 0;
  background: #ffae00;
  color: #483217;
  margin: 30px auto 0 auto;
}
#globalFooter #copyright a {
  color: #333333;
}
#globalFooter #copyright a:hover {
  text-decoration: none;
}/*# sourceMappingURL=master.css.map */