html,
body,
section,
div,
span,
object,
iframe,
img,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a dl,
dt,
dd,
ol,
ul,
li,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
menu,
nav,
aside,
summary,
details,
footer,
header {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media (min-width: 681px) {
  body {
    min-width: 1440px;
  }
}
@media (max-width: 680px) {
  body {
    min-width: 402px;
  }
}

a {
  color: initial;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  cursor: pointer;
  opacity: 0.7;
}

ul {
  list-style: none;
}

button {
  border: none;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

input,
textarea {
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 680px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 681px) {
  .sp-only {
    display: none !important;
  }
}

/* -----------------
  header
------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.7);
}
header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 65px;
}
@media (max-width: 680px) {
  header .header-wrap {
    padding: 10px 18px;
  }
}
header .header-wrap h1 a {
  color: #ff4500;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4f21), to(#feb84e));
  background: linear-gradient(to bottom, #ff4f21, #feb84e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 680px) {
  header .header-wrap h1 a {
    font-size: 24px;
  }
}
header .header-wrap .btn {
  display: block;
  width: 220px;
  padding: 16px 0;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border-radius: 40px;
}
@media (max-width: 680px) {
  header .header-wrap .btn {
    display: none;
    width: 220px;
    padding: 16px 0;
    font-size: 20px;
  }
}

/* -----------------
  footer
------------------ */
footer {
  padding: 40px 180px 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffcd00), to(#ff9b21));
  background: linear-gradient(to bottom, #ffcd00, #ff9b21);
}
@media (max-width: 680px) {
  footer {
    padding: 40px 120px 30px;
  }
}
footer .headding {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 55px;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 680px) {
  footer .headding {
    margin-bottom: 44px;
    font-size: 32px;
  }
}
footer .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 47px;
}
@media (max-width: 680px) {
  footer .icon-wrap {
    margin-bottom: 20px;
  }
}
footer .icon-wrap .icon-square {
  width: 40px;
  height: 40px;
  background-color: #d9d9d9;
}
footer .link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 680px) {
  footer .link-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
  }
}
footer .link-wrap a {
  font-size: 14px;
}
footer .copyright {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 680px) {
  footer .copyright {
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  .fixed-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 12px 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  .fixed-banner .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 333px;
    height: 48px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    background: -webkit-gradient(linear, right top, left top, from(#ff4f21), to(#ff9d4a));
    background: linear-gradient(to left, #ff4f21, #ff9d4a);
    border-radius: 40px;
  }
}
/* -----------------
  main
------------------ */
.tokusho {
  padding: 120px 0 80px;
}
@media (max-width: 680px) {
  .tokusho {
    padding: 80px 0 60px;
  }
}
.tokusho p {
  line-height: 1.8;
  font-size: 18px;
}
.tokusho li {
  line-height: 1.8;
  font-size: 18px;
}
.tokusho .contents {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .tokusho .contents {
    width: 90%;
  }
}
.tokusho__title {
  margin-bottom: 48px;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 680px) {
  .tokusho__title {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
.tokusho__intro {
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .tokusho__intro {
    margin-bottom: 40px;
  }
}
.tokusho__section {
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .tokusho__section {
    margin-bottom: 32px;
  }
}
.tokusho__section:last-of-type {
  margin-bottom: 0;
}
.tokusho__section-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .tokusho__section-title {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
.tokusho__section-content p {
  margin-bottom: 16px;
}
@media (max-width: 680px) {
  .tokusho__section-content p {
    margin-bottom: 12px;
  }
}
.tokusho__section-content p:last-of-type {
  margin-bottom: 0;
}
.tokusho__sub-title {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .tokusho__sub-title {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.tokusho__sub-title:first-of-type {
  margin-top: 0;
}
.tokusho__list {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 24px;
}
@media (max-width: 680px) {
  .tokusho__list {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 20px;
  }
}
.tokusho__list li {
  margin-bottom: 12px;
}
@media (max-width: 680px) {
  .tokusho__list li {
    margin-bottom: 8px;
  }
}
.tokusho__list li:last-of-type {
  margin-bottom: 0;
}
.tokusho__list li strong {
  font-weight: bold;
}
.tokusho__list--nested {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 20px;
  list-style-type: disc;
}
@media (max-width: 680px) {
  .tokusho__list--nested {
    padding-left: 16px;
  }
}
.tokusho__list--no-style {
  list-style: none;
  padding-left: 0;
}
.tokusho ul.tokusho__list {
  list-style-type: disc;
}
.tokusho__table {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px 36px 24px 48px;
  background-color: #f9f9f9;
}
@media (max-width: 680px) {
  .tokusho__table {
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 16px;
  }
}
.tokusho__table-title {
  margin-bottom: 16px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .tokusho__table-title {
    margin-bottom: 12px;
  }
}
.tokusho__table a {
  color: #03bbe6;
  text-decoration: underline;
}
.tokusho__table a:hover {
  opacity: 0.7;
}
.tokusho__contact {
  margin-top: 16px;
  color: #03bbe6;
  text-decoration: underline;
}
.tokusho__contact:hover {
  opacity: 0.7;
}
@media (max-width: 680px) {
  .tokusho__contact {
    margin-top: 12px;
  }
}
.tokusho__link {
  margin-top: 16px;
  color: #03bbe6;
  text-decoration: underline;
}
.tokusho__link:hover {
  opacity: 0.7;
}
@media (max-width: 680px) {
  .tokusho__link {
    margin-top: 12px;
  }
}
.tokusho__footer {
  margin-top: 60px;
}
@media (max-width: 680px) {
  .tokusho__footer {
    margin-top: 40px;
  }
}
.tokusho__date {
  font-size: 14px;
}
@media (max-width: 680px) {
  .tokusho__date {
    font-size: 12px;
  }
}
.tokusho__dl {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (max-width: 680px) {
  .tokusho__dl {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
.tokusho__dl dt {
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 680px) {
  .tokusho__dl dt {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 16px;
  }
}
.tokusho__dl dt:first-of-type {
  margin-top: 0;
}
.tokusho__dl dd {
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 680px) {
  .tokusho__dl dd {
    margin-bottom: 6px;
    padding-left: 20px;
    font-size: 16px;
  }
}
.tokusho__dl dd:last-of-type {
  margin-bottom: 0;
}
.tokusho a {
  color: #03bbe6;
  text-decoration: underline;
}
.tokusho a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=tokusho.css.map */