@charset "UTF-8";
:root {
  --bk: #000;
  --bk00: rgba(0,0,0,0);
  --bk05: rgba(0,0,0,.05);
  --bk10: rgba(0,0,0,.10);
  --bk15: rgba(0,0,0,.15);
  --bk20: rgba(0,0,0,.20);
  --bk25: rgba(0,0,0,.25);
  --bk30: rgba(0,0,0,.30);
  --bk35: rgba(0,0,0,.35);
  --bk40: rgba(0,0,0,.40);
  --bk45: rgba(0,0,0,.45);
  --bk50: rgba(0,0,0,.50);
  --bk55: rgba(0,0,0,.55);
  --bk60: rgba(0,0,0,.60);
  --bk65: rgba(0,0,0,.65);
  --bk70: rgba(0,0,0,.70);
  --bk75: rgba(0,0,0,.75);
  --bk80: rgba(0,0,0,.80);
  --bk85: rgba(0,0,0,.85);
  --bk90: rgba(0,0,0,.90);
  --bk95: rgba(0,0,0,.95);
  --wh: #fff;
  --wh00: rgba(255,255,255,0);
  --wh05: rgba(255,255,255,.05);
  --wh10: rgba(255,255,255,.10);
  --wh15: rgba(255,255,255,.15);
  --wh20: rgba(255,255,255,.20);
  --wh25: rgba(255,255,255,.25);
  --wh30: rgba(255,255,255,.30);
  --wh35: rgba(255,255,255,.35);
  --wh40: rgba(255,255,255,.40);
  --wh45: rgba(255,255,255,.45);
  --wh50: rgba(255,255,255,.50);
  --wh55: rgba(255,255,255,.55);
  --wh60: rgba(255,255,255,.60);
  --wh65: rgba(255,255,255,.65);
  --wh70: rgba(255,255,255,.70);
  --wh75: rgba(255,255,255,.75);
  --wh80: rgba(255,255,255,.80);
  --wh85: rgba(255,255,255,.85);
  --wh90: rgba(255,255,255,.90);
  --wh95: rgba(255,255,255,.95);
  --key: #4d2700;
  --key10: rgba(77,39,0,.10);
  --key15: rgba(77,39,0,.15);
  --key20: rgba(77,39,0,.20);
  --key25: rgba(77,39,0,.25);
  --key30: rgba(77,39,0,.30);
  --key35: rgba(77,39,0,.35);
  --key40: rgba(77,39,0,.40);
  --key45: rgba(77,39,0,.45);
  --key50: rgba(77,39,0,.50);
  --key55: rgba(77,39,0,.55);
  --key60: rgba(77,39,0,.60);
  --key65: rgba(77,39,0,.65);
  --key70: rgba(77,39,0,.70);
  --key75: rgba(77,39,0,.75);
  --key80: rgba(77,39,0,.80);
  --key85: rgba(77,39,0,.85);
  --key90: rgba(77,39,0,.90);
  --key95: rgba(77,39,0,.95);
  --bg01: #ff6;
  --bg02: #fa0;
  --bg03: #e5e5e5;
  --bg04: #ccc;
  --bg05: #ffc;
  --red: #c00;
  --orange: #f50;
  --brown: #940;
  --gray: #808080;
  --required: #c00;
}

body.categories {
  position: relative;
}
body.categories .pagetitle {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 5rem 1.25rem;
  background: url("../images/pagetitle_bg.jpg") no-repeat 50% 50%;
  background-size: cover;
}
@media (max-width: 768px) {
  body.categories .pagetitle {
    align-items: flex-start;
    padding: 6.25vw 4.1666666667vw;
  }
}
body.categories .pagetitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: calc(100% + 1px);
  background: linear-gradient(to bottom, var(--bg01) 0%, var(--bg02) 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 6.25rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 6.25rem) 100%, 0 100%);
}
@media (max-width: 768px) {
  body.categories .pagetitle::before {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10.4166666667vw) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 10.4166666667vw) 100%, 0 100%);
  }
}
body.categories .pagetitle h2 {
  position: relative;
  color: var(--key);
  font-size: 3.75rem;
  font-weight: 700;
  transition-delay: 0.3s;
}
@media (max-width: 768px) {
  body.categories .pagetitle h2 {
    font-size: 6.25vw;
  }
}
body.categories .pagetitle p {
  position: relative;
  color: var(--bk30);
  font-size: 1.5rem;
  font-weight: 700;
  transition-delay: 0.5s;
}
@media (max-width: 768px) {
  body.categories .pagetitle p {
    font-size: 2.9166666667vw;
  }
}
body.categories .section {
  position: relative;
  padding: 6.25rem 0;
}
body.categories .section:nth-child(even) {
  background-color: var(--bg05);
}
@media (max-width: 768px) {
  body.categories .section {
    padding: 16.6666666667vw 0;
  }
}
body.categories .section .anchor {
  position: absolute;
  top: -11.25rem;
  left: 0;
}
@media (max-width: 768px) {
  body.categories .section .anchor {
    top: -27.0833333333vw;
  }
}
body.categories .section .container {
  max-width: 900px;
}
body.categories .section .subject {
  position: relative;
  margin-bottom: 3.75rem;
  padding-bottom: 1.875rem;
}
@media (max-width: 768px) {
  body.categories .section .subject {
    margin-bottom: 8.3333333333vw;
    padding-bottom: 4.1666666667vw;
  }
}
body.categories .section .subject::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6.25rem;
  height: 0.375rem;
  background-color: var(--orange);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  body.categories .section .subject::after {
    width: 20.8333333333vw;
    height: 1.25vw;
  }
}
body.categories .section .subject h3 {
  color: var(--key);
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 768px) {
  body.categories .section .subject h3 {
    font-size: 7.5vw;
  }
}
body.categories .section .contents {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (max-width: 768px) {
  body.categories .section .contents {
    gap: 8.3333333333vw;
  }
}
body.categories .section .contents h4 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  color: var(--key);
  font-size: 1.875rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  body.categories .section .contents h4 {
    gap: 4.1666666667vw;
    font-size: 6.25vw;
  }
}
body.categories .section .contents h4::before, body.categories .section .contents h4::after {
  content: "";
  flex: 1 1 0%;
  height: 0.25rem;
  border-radius: 0.125rem;
  background-color: var(--key);
}
@media (max-width: 768px) {
  body.categories .section .contents h4::before, body.categories .section .contents h4::after {
    height: 0.8333333333vw;
    border-radius: 0.4166666667vw;
  }
}
body.categories .section .contents h5 {
  color: var(--bk);
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  body.categories .section .contents h5 {
    font-size: 3.75vw;
  }
}
body.categories .section .contents p {
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  body.categories .section .contents p {
    font-size: 3.3333333333vw;
  }
}
body.categories .section .contents ul.list {
  margin-left: 0.625rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body.categories .section .contents ul.list {
    margin-left: 2.0833333333vw;
    font-size: 3.3333333333vw;
  }
}
body.categories .section .contents ul.list.inline {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  body.categories .section .contents ul.list.inline {
    display: block;
  }
}
body.categories .section .contents ul.list.inline > li {
  margin-right: 1.25rem;
}
@media (max-width: 768px) {
  body.categories .section .contents ul.list.inline > li {
    margin-right: 0;
  }
}
body.categories .section .contents ul.list > li {
  position: relative;
  margin-top: 0;
  padding: 0.3125em 0 0.3125em 1.75em;
  line-height: 1.5;
}
body.categories .section .contents ul.list > li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  background-color: var(--key);
}
body.categories .section .contents ul.list > li::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.4em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.325em;
  border-color: transparent transparent transparent var(--wh);
}
body.categories .section .contents ol.list {
  margin-left: 2.5em;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body.categories .section .contents ol.list {
    font-size: 3.3333333333vw;
  }
}
body.categories .section .contents ol.list.inline {
  display: flex;
  flex-wrap: wrap;
}
body.categories .section .contents ol.list.inline li {
  flex-grow: 1;
  flex-basis: 50%;
}
body.categories .section .contents ol.list > li {
  counter-increment: olitem;
  position: relative;
  margin-top: 0;
  padding: 0.3125em 0;
  line-height: 1.5;
}
body.categories .section .contents ol.list > li::before {
  content: counter(olitem);
  position: absolute;
  top: 0.25em;
  left: -2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  height: 1.75em;
  color: var(--wh);
  background-color: var(--bk50);
}
body.categories .section .contents .table, body.categories .section .contents .scrolltable table {
  border-collapse: separate;
  border-spacing: 0.3125rem;
  width: 100%;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body.categories .section .contents .table, body.categories .section .contents .scrolltable table {
    font-size: 3.3333333333vw;
  }
}
body.categories .section .contents .table thead tr th, body.categories .section .contents .table thead tr td, body.categories .section .contents .scrolltable table thead tr th, body.categories .section .contents .scrolltable table thead tr td {
  padding: 0.625rem 0.9375rem;
  border-bottom: solid 1px var(--key);
  color: var(--key);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body.categories .section .contents .table thead tr th, body.categories .section .contents .table thead tr td, body.categories .section .contents .scrolltable table thead tr th, body.categories .section .contents .scrolltable table thead tr td {
    padding: 2.0833333333vw;
  }
}
body.categories .section .contents .table tbody tr th, body.categories .section .contents .table tbody tr td, body.categories .section .contents .scrolltable table tbody tr th, body.categories .section .contents .scrolltable table tbody tr td {
  padding: 0.625rem 0.9375rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body.categories .section .contents .table tbody tr th, body.categories .section .contents .table tbody tr td, body.categories .section .contents .scrolltable table tbody tr th, body.categories .section .contents .scrolltable table tbody tr td {
    padding: 2.0833333333vw;
  }
}
body.categories .section .contents .table tbody tr th, body.categories .section .contents .scrolltable table tbody tr th {
  color: var(--key);
  font-weight: 700;
  white-space: nowrap;
  background-color: var(--key10);
}
body.categories .section .contents .table tbody tr td, body.categories .section .contents .scrolltable table tbody tr td {
  border-bottom: dotted 1px var(--bk10);
}
@media (max-width: 768px) {
  body.categories .section .contents .table tbody tr td, body.categories .section .contents .scrolltable table tbody tr td {
    margin-top: 0;
  }
}
body.categories .section .contents .table tbody tr td *:first-child, body.categories .section .contents .scrolltable table tbody tr td *:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  body.categories .section .contents .table thead {
    display: none;
  }
}
@media (max-width: 768px) {
  body.categories .section .contents .table tbody tr th, body.categories .section .contents .table tbody tr td {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  body.categories .section .contents .table tbody tr td {
    border-bottom: 0 none;
  }
}
body.categories .section .contents .scrolltable {
  overflow: auto;
}
body.categories .section .contents .scrolltable table {
  margin-bottom: 0.625rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  body.categories .section .contents .scrolltable table {
    margin-bottom: 2.0833333333vw;
  }
}
body.categories .contact p {
  text-align: center;
}
@media (max-width: 768px) {
  body.categories .contact p {
    text-align: left;
  }
}
body.categories .contact p .required {
  color: var(--required);
}
body.categories .contact p.attention {
  color: var(--required);
}
body.categories .contact p.attention a {
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  body.categories .contact p.attention a {
    text-decoration: underline;
    pointer-events: all;
  }
}
body.categories .contact form {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  body.categories .contact form {
    margin-bottom: 12.5vw;
  }
}
body.categories .contact input[type=submit], body.categories .contact input[type=button], body.categories .contact button {
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
body.categories .contact .table tbody tr th {
  width: 30%;
}
@media (max-width: 768px) {
  body.categories .contact .table tbody tr th {
    width: 100%;
  }
}
body.categories .contact .table tbody tr th label {
  position: relative;
  display: block;
}
body.categories .contact .table tbody tr th label.required::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "必須";
  padding: 0 0.625rem;
  color: var(--wh);
  font-size: 0.625em;
  line-height: 1.75;
  vertical-align: middle;
  background-color: var(--required);
  border-radius: 1em;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  body.categories .contact .table tbody tr th label.required::after {
    padding: 0 2.0833333333vw;
  }
}
body.categories .contact .table tbody tr td {
  position: relative;
  width: 70%;
}
@media (max-width: 768px) {
  body.categories .contact .table tbody tr td {
    width: 100%;
  }
}
body.categories .contact .table tbody tr td dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  body.categories .contact .table tbody tr td dl {
    display: block;
  }
}
body.categories .contact .table tbody tr td dl + dl {
  margin-top: 0.625rem;
}
@media (max-width: 768px) {
  body.categories .contact .table tbody tr td dl + dl {
    margin-top: 2.0833333333vw;
  }
}
body.categories .contact .table tbody tr td dl dt {
  flex-basis: 20%;
}
body.categories .contact .table tbody tr td dl dd {
  flex-basis: 75%;
}
body.categories .contact input[type=text], body.categories .contact select, body.categories .contact textarea {
  width: 100%;
  padding: 0.625rem;
  border: solid 1px var(--bk10);
  outline: none;
  color: var(--bk);
  background-color: var(--wh70);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  border-radius: 0.1875rem;
}
@media (max-width: 768px) {
  body.categories .contact input[type=text], body.categories .contact select, body.categories .contact textarea {
    padding: 2.0833333333vw;
    border-radius: 1.0416666667vw;
  }
}
body.categories .contact input[type=text]:hover, body.categories .contact input[type=text]:focus, body.categories .contact select:hover, body.categories .contact select:focus, body.categories .contact textarea:hover, body.categories .contact textarea:focus {
  background-color: var(--bk05);
}
body.categories .contact input[type=text].short, body.categories .contact select.short, body.categories .contact textarea.short {
  width: 30%;
}
@media (max-width: 768px) {
  body.categories .contact input[type=text].short, body.categories .contact select.short, body.categories .contact textarea.short {
    width: 60%;
  }
}
body.categories .contact input[type=radio] {
  display: none;
}
body.categories .contact input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin-right: 1.25em;
  padding-left: 1.25em;
}
body.categories .contact input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.9375em;
  height: 0.9375em;
  border: solid 1px var(--bk20);
  border-radius: 50%;
  transform: translateY(-50%);
}
body.categories .contact input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.125em;
  width: 0.6875em;
  height: 0.6875em;
  opacity: 0;
  background-image: linear-gradient(to right, var(--key50) 0%, var(--key) 100%);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  transform: translateY(-50%);
}
body.categories .contact input[type=radio]:checked + label::after {
  opacity: 1;
}
body.categories .contact input[type=checkbox] {
  display: none;
}
body.categories .contact input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  margin-right: 1.25em;
  padding-left: 1.25em;
}
body.categories .contact input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 0.25em;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(-50%);
}
body.categories .contact input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.2em;
  width: 0.4em;
  height: 0.625em;
  border-right: solid 2px var(--wh);
  border-bottom: solid 2px var(--wh);
  opacity: 0;
  transition: opacity 0.5s ease;
  transform: rotate(45deg) translate(-50%, -55%);
}
body.categories .contact input[type=checkbox]:checked + label::before {
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right, var(--key50) 0%, var(--key) 100%);
}
body.categories .contact input[type=checkbox]:checked + label::after {
  opacity: 1;
}
body.categories .contact .formfile {
  display: flex;
  align-items: center;
}
body.categories .contact .formfile label {
  position: relative;
  display: inline-block;
  margin-right: 0.625rem;
  padding: 0.625rem 0.9375rem;
  color: var(--wh);
  line-height: 1.25;
  white-space: nowrap;
  background-color: var(--required);
  border-radius: 0.1875rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  body.categories .contact .formfile label {
    margin-right: 4.1666666667vw;
    padding: 3.125vw;
    border-radius: 1.0416666667vw;
  }
}
body.categories .contact .formfile label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
body.categories .contact .formfile .filename {
  width: 32em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body.categories .contact .formfile .filename {
    width: 14em;
  }
}
body.categories .contact .checkbox_confirm {
  display: inline-block;
  padding: 0.3125em 1.25em;
  font-size: 0.875em;
  line-height: 1.25;
  background-color: var(--bk05);
  border-radius: 0.9375em;
}
body.categories .contact .checkbox_confirm + .checkbox_confirm {
  margin-left: 0.3125em;
}
body.categories .contact .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  body.categories .contact .nav {
    flex-direction: column-reverse;
    gap: 6.25vw;
    margin-top: 8.3333333333vw;
  }
}
body.categories .contact .nav .btn {
  position: relative;
  width: 22.5rem;
  padding: 1.25rem;
  border: solid 0.3125rem var(--key);
  color: var(--key);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: var(--bg01);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  body.categories .contact .nav .btn {
    width: 75vw;
    padding: 4.1666666667vw;
    border-width: 1.0416666667vw;
    font-size: 3.75vw;
  }
}
body.categories .contact .nav .btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.25rem 1.25rem 0;
  border-color: transparent var(--key) transparent transparent;
  transition: border-color 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  body.categories .contact .nav .btn::after {
    border-width: 0 4.1666666667vw 4.1666666667vw 0;
  }
}
body.categories .contact .nav .btn:hover {
  color: var(--key);
  background-color: var(--wh);
}
body.categories .contact .nav .btn.back {
  border-color: var(--bk80);
  color: var(--bk50);
  background-color: var(--bk10);
}
body.categories .contact .nav .btn.back::after {
  border-color: transparent var(--bk80) transparent transparent;
}
body.categories .contact .nav .btn.back:hover {
  color: var(--wh);
  background-color: var(--bk60);
}
body.categories .contact .formError {
  top: auto !important;
  right: 0 !important;
  bottom: 100% !important;
  left: auto !important;
  z-index: 7;
  margin-top: 0 !important;
  margin-bottom: -0.3125em;
  cursor: pointer;
}
@media (max-width: 768px) {
  body.categories .contact .formError {
    max-width: 10em;
  }
}
body.categories .contact .formError .formErrorContent {
  position: relative;
  z-index: 8;
  padding: 0.3125em 0.625em;
  color: #ffffff;
  font-size: 0.875em;
  line-height: 1.25;
  background-color: #cc0000;
  border-radius: 0.3125em;
}
@media (max-width: 768px) {
  body.categories .contact .formError .formErrorContent {
    font-size: 0.75em;
  }
}
body.categories .contact .formError .formErrorContent::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125em 0.3125em 0 0.3125em;
  border-color: #cc0000 transparent transparent transparent;
}
body.categories .contact .formError .formErrorArrow {
  z-index: 9;
}
body.categories .contact .ui-dialog .formError {
  z-index: 7;
}
body.categories .contact .ui-dialog .formError .formErrorContent {
  z-index: 8;
}
body.categories .contact .ui-dialog .formError .formErrorArrow {
  z-index: 9;
}