@charset "UTF-8";
/*---------------------------------------------
  Anthon Berg - 共通スタイル
  移植元: 全ページ共通.css（makeshop → 静的HTML）
---------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: clamp(1.5rem, 1.8rem, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

h4 {
  font-size: clamp(1rem, 1.2rem, 1.4rem);
}

h5 {
  margin-bottom: 0;
  font-size: 1rem;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  background-color: transparent;
}

a:visited {
  color: #333;
}

a:hover, a:active {
  color: #666;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

header {
  position: sticky;
  top: 0;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-bottom: solid 1px #999;
  background-color: #fff;
  z-index: 9999;
}

@media screen and (min-width: 1200px) {
  header {
    display: block;
  }
}

.header-inner {
  position: relative;
  max-width: 1200px;
  padding-top: 30px;
}

@media screen and (min-width: 1200px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    padding-top: 0;
  }
}

.header-inner-function {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1200px) {
  .header-inner-function {
    display: block;
    width: auto;
    margin: 0;
  }
}

.logo {
  margin: 0;
  line-height: 0;
}

.logo img {
  max-height: 38px;
  max-width: 150px;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 9px;
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-315deg);
  transform: translateY(9px) rotate(-315deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

.global-nav {
  position: fixed;
  top: 80px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
  background-color: #fff;
}

.global-nav.open {
  pointer-events: auto;
  opacity: 0.95;
  overflow-y: auto;
}

@media screen and (min-width: 1200px) {
  .global-nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    top: 0;
    width: auto;
    height: 100%;
    opacity: 1;
    pointer-events: inherit;
    background-color: transparent;
  }
}

.global-nav-main {
  display: block;
  margin-bottom: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .global-nav-main {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    margin-right: 16px;
    padding: 12px 0;
  }
}

.global-nav-main li {
  position: relative;
  z-index: 100;
}

.global-nav-main li:first-child {
  margin-left: 0;
}

@media (max-width: 1200px) {
  .global-nav-main li {
    display: block;
    margin: 0;
  }
  .global-nav-main li a {
    color: #444;
    background: #fff;
  }
}

@media screen and (min-width: 1200px) {
  .global-nav-main li {
    margin: 0;
  }
}

.global-nav-main li a {
  text-decoration: none;
  padding: 20px 24px;
  display: block;
  transition: all 0.2s ease-in-out 0s;
}

@media screen and (min-width: 1200px) {
  .global-nav-main li a {
    padding: 4px 16px;
  }
}

.global-nav-main a {
  color: #444;
  text-decoration: none;
  outline: 0;
  transition: all 200ms ease-in;
}

.global-nav-main a:active {
  color: #fff;
  background-color: #555;
}

@media screen and (min-width: 1200px) {
  .global-nav-main a:hover, .global-nav-main a:active {
    color: #000;
    opacity: 0.4;
  }
}

.global-nav .global-nav-main li a,
.global-nav-sub a {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 1200px) {
  .global-nav-main li:not(:first-child) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1200px) {
  .nav-list-first {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    border-bottom: 0;
    font-size: 0.85rem;
    cursor: pointer;
  }
}

.global-nav-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 24px;
}

@media screen and (min-width: 1200px) {
  .global-nav-sub {
    position: relative;
    display: flex;
    padding: 0 16px;
  }
  .global-nav-sub::before {
    position: absolute;
    top: 25%;
    left: 0;
    content: "";
    height: 50%;
    border-left: solid 1px #444;
  }
}

.menu-inst {
  position: relative;
  padding: 16px;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .menu-inst {
    font-size: 0.7em;
  }
}

.menu-inst a {
  position: relative;
  text-decoration: none;
}

.menu-inst a::before {
  font-family: "Font Awesome 5 Brands";
  display: block;
  content: "\f16d";
  width: 40px;
  margin: 0 auto 8px;
  font-size: 18px;
  text-align: center;
}

footer {
  position: relative;
}

.footer-upper {
  margin: 0;
  background-color: #b9b5ad;
}

.footer-upper-inner {
  padding: 16px;
}

.footer-upper-inner p {
  font-size: 0.9rem;
}

@media screen and (min-width: 1024px) {
  .footer-upper-inner {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .footer-upper-inner {
    max-width: 1200px;
    margin: auto;
  }
}

.footer-upper-box01 {
  border-bottom: solid 2px #555;
}

@media screen and (min-width: 1024px) {
  .footer-upper-box01 {
    width: 50%;
    padding: 16px 24px 16px 16px;
    border-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .footer-upper-box02 {
    width: 50%;
    padding: 16px 16px 16px 24px;
  }
}

.footer-lower {
  margin: 0;
  padding: 8px 0;
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  background-color: #2c3029;
}

.footer-lower a {
  color: #fff;
}

.footer-lower a:visited {
  color: #fff;
}

.footer-lower a:hover, .footer-lower a:active {
  font-weight: 600;
}

.footer-lower-link span:not(:last-child)::after {
  content: " | ";
  padding: 0 8px;
}

@media screen and (min-width: 1024px) {
  .footer-lower-link {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .footer-lower-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 8px auto;
    padding: 8px 24px;
  }
}

@media screen and (min-width: 1200px) {
  .footer-lower-inner {
    max-width: 1200px;
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .footer-lower-copy {
    text-align: right;
  }
}

.footer-title {
  margin-bottom: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .footer-title {
    text-align: left;
  }
}

.foot-logo img {
  max-width: 50%;
}

@media screen and (min-width: 768px) {
  .foot-logo {
    text-align: left;
  }
  .foot-logo img {
    width: 50%;
    max-width: 150px;
  }
}

@media screen and (min-width: 1200px) {
  .foot-logo {
    text-align: left;
  }
}

.content-wrap {
  padding: 16px 0;
}

@media screen and (min-width: 768px) {
  .content-wrap {
    padding: 32px 0 0;
  }
}

@media screen and (min-width: 1024px) {
  .content-wrap {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding-top: 48px;
  }
}

@media screen and (min-width: 1200px) {
  .content-wrap {
    max-width: 1200px;
  }
}

.content-inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .content-inner {
    width: 100%;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(22px, 5vw, 26px);
  text-align: center;
}

.page-title::before, .page-title::after {
  content: "";
  max-width: 70px;
  min-width: 30px;
  width: auto;
  height: 2px;
  background-color: #444;
}

.page-title::before {
  margin-right: 20px;
}

.page-title::after {
  margin-left: 20px;
}

@media screen and (min-width: 1024px) {
  .page-title {
    display: block;
    padding: 0 16px 0 24px;
    border-left: 4px dotted #000;
    text-align: left;
    font-size: 32px;
  }
  .page-title::before, .page-title::after {
    display: none;
  }
}

.btn-base {
  display: inline-block;
  padding: 20px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  background-color: #78b840;
  transition: 0.3s;
}

.btn-base:visited {
  display: inline-block;
  padding: 20px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  background-color: #78b840;
  transition: 0.3s;
}

.btn-base:active, .btn-base:hover {
  color: #fff;
  background-color: #4f8321;
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  color: #222a16;
  font-weight: 600;
  text-decoration: none;
  border: solid 1px #3d3d3d;
  background-color: #fff;
  transition: 0.3s;
}

.btn-outline:visited {
  display: inline-block;
  padding: 10px 20px;
  color: #222a16;
  font-weight: 600;
  text-decoration: none;
  border: solid 1px #3d3d3d;
  background-color: #fff;
  transition: 0.3s;
}

.btn-outline:hover, .btn-outline:active {
  color: #fff;
  background-color: #37342a;
}

.font90 {
  font-size: 90%;
}

.font80 {
  font-size: 80%;
}

.fa::before, .fa::after,
.far::before,
.far::after,
.fas::before,
.fas::after {
  font-family: "Font Awesome 5 Free";
}

.center {
  margin: auto;
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

li {
  margin-bottom: 8px;
}
