/* ==========================================================================
  Breadcrumb
========================================================================== */
.c-breadcrumb {
  padding: 15px 0;
}

@media only screen and (min-width: 768px) {
  .c-breadcrumb {
    display: block;
    padding: 10px 0;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-breadcrumb__item {
  color: #333;
  font-size: 14px;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 8px;
}
.c-breadcrumb__item:not(:last-child)::after {
  display: inline-block;
  margin-bottom: 0.2rem;
  margin-left: 8px;
  padding: 2px;
  border: solid var(--ColorSecondary);
  border-width: 0 2px 2px 0;
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
  .c-breadcrumb__item:not(:last-child)::after {
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.c-breadcrumb__link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
}

/* ==========================================================================
  Contact
========================================================================== */
.p-contact-form__submit button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.p-contact-form__submit button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.p-contact {
  padding: 4rem 0 0;
}
.p-contact input[type=text], .p-contact input[type=email] {
  padding: 0 0.5rem;
  width: 100%;
  border: 1px solid #ccc;
  color: #333;
  font-size: 16px;
}
.p-contact textarea {
  padding: 0 0.5rem;
  width: 100%;
  border: 1px solid #ccc;
  color: #333;
  font-size: 16px;
  min-height: 20rem;
}
.p-contact select {
  padding: 0 0.5rem;
  width: 100%;
  border: 1px solid #ccc;
  color: #333;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .p-contact select {
    width: 32rem;
  }
}
.p-contact__box1 {
  padding-bottom: 4rem;
}
.p-contact__box1 .u-text-1 a {
  color: var(--ColorSecondary);
}

@media only screen and (min-width: 768px) {
  .p-contact__box1 {
    padding: 6rem 0 6rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-contact__box1 .u-text-1 {
    margin-bottom: 4rem;
    text-align: center;
  }
}
.p-contact__box2 {
  padding: 4rem 0;
  background: #f5f5f5;
}

@media only screen and (min-width: 768px) {
  .p-contact__box2 {
    padding: 8rem 0;
  }
}
.p-contact-form__table {
  width: 100%;
}

.p-contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ColorSecondary);
}
.p-contact-form__row:first-child {
  border-top: 1px solid var(--ColorSecondary);
}

@media only screen and (min-width: 768px) {
  .p-contact-form__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 2rem 0;
  }
}
.p-contact-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.p-contact-form__head label {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .p-contact-form__head {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 5rem;
    min-width: 32rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-contact-form__data {
    padding-left: 5rem;
    width: calc(100% - 32rem);
  }
}
.p-contact-form__required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-right: 1rem;
  width: 3.6rem;
  height: 2rem;
  background: var(--ColorSecondary);
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
}

@media only screen and (min-width: 768px) {
  .p-contact-form__required {
    margin-top: 0.3rem;
  }
}
.p-contact-form__privacy {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .p-contact-form__privacy {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
}
.p-contact-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
}

@media only screen and (min-width: 768px) {
  .p-contact-form__submit {
    margin-bottom: 4rem;
  }
}
.p-contact-form__submit--back {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .p-contact-form__submit--back {
    margin-top: 4rem;
  }
}
.p-contact-form__note {
  margin: 1rem 0;
}

/* ==========================================================================
  Guide
========================================================================== */
.has-text-align-center {
  text-align: center !important;
}

.has-text-align-right {
  text-align: right !important;
}

.p-guide {
  padding: 2rem 0 4rem;
}

@media only screen and (min-width: 768px) {
  .p-guide {
    padding: 7rem 0 10rem;
  }
}
.p-guide__photo {
  margin-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  .p-guide__photo {
    margin-bottom: 8rem;
  }
}
.p-guide__text {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .p-guide__text {
    margin-bottom: 5rem;
    padding: 0 10rem;
  }
}
.p-guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  .p-guide__list {
    gap: 4rem;
    margin-bottom: 7rem;
  }
}
.p-guide__item {
  width: 100%;
}
.p-guide__item .category_in_list {
  display: inline-block;
  color: var(--ColorSecondary);
  font-weight: bold;
  margin: 3rem 0 0.5rem;
}

@media only screen and (min-width: 768px) {
  .p-guide__item {
    width: calc(50% - 2rem);
  }
}
.p-guide__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  text-decoration: none;
  line-height: 1.4;
}
.p-guide__link:hover {
  background: var(--ColorSecondary);
  color: #fff;
}
.p-guide__link:before {
  position: absolute;
  bottom: 0.2rem;
  left: -0.7rem;
  z-index: -1;
  width: 3.6rem;
  height: 5rem;
  background: url(../images/guide/left.webp) no-repeat center center/contain;
  content: "";
}
.p-guide__link:after {
  position: absolute;
  top: 0.2rem;
  right: -0.7rem;
  z-index: -1;
  width: 3.6rem;
  height: 5rem;
  background: url(../images/guide/right.webp) no-repeat center center/contain;
  content: "";
}

@media only screen and (min-width: 768px) {
  .p-guide__link {
    padding: 1.5rem 3rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__link:before {
    left: -0.8rem;
  }
}
.p-guide__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3rem;
}

.p-guide__content {
  margin-bottom: 3rem;
  padding: 3rem 0;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}

@media only screen and (min-width: 768px) {
  .p-guide__content {
    padding: 5rem 10rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__button {
    margin-top: 6rem;
  }
}
.p-guide__detail p {
  margin-bottom: 2rem;
}
.p-guide__detail p a {
  color: var(--ColorSecondary);
}
.p-guide__detail h1 {
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: #87cefa;
  font-size: 2rem;
}
.p-guide__detail details + h2.wp-block-heading {
  margin-top: 4rem;
}
.p-guide__detail details.wp-block-details + p {
  margin-top: 2rem;
}
.p-guide__detail h2:not(.c-title-5) {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #366d9e;
  font-size: 1.8rem;
}
.p-guide__detail h3:not(.c-title-6) {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #87cefa;
  font-size: 1.7rem;
}
.p-guide__detail h3:not(.c-title-6):after {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 10rem;
  height: 0.2rem;
  background: #366d9e;
  content: "";
}
.p-guide__detail h4 {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  font-size: 1.6rem;
}
.p-guide__detail h4:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 1rem;
  height: 1rem;
  border-radius: 5rem;
  background: #fcce91;
  content: "";
}
.p-guide__detail h5 {
  margin-bottom: 1rem;
  color: #366d9e;
  font-size: 1.6rem;
}
.p-guide__detail h6 {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  font-size: 1.6rem;
}
.p-guide__detail h6:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 1rem;
  height: 1rem;
  border-radius: 5rem;
  background: #87cefa;
  content: "";
}

@media only screen and (min-width: 768px) {
  .p-guide__detail h1 {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail details + h2.wp-block-heading {
    margin-top: 8rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail details.wp-block-details + p {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail h2:not(.c-title-5) {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail h3:not(.c-title-6) {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail h4 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail h5 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-guide__detail h6 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.c-search {
  width: 30rem;
  height: 4.5rem;
  border: 2px solid var(--ColorSecondary);
  border-radius: 3rem;
  margin: 3rem 0;
}

.wp-block-details.is-layout-flow {
  overflow: hidden;
  margin-top: 3rem;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.wp-block-details.is-layout-flow summary {
  position: relative;
  background: #FFFEC2;
  padding: 1.5rem 3rem 1.5rem 5rem;
  list-style: none;
  cursor: pointer;
}
.wp-block-details.is-layout-flow summary::marker, .wp-block-details.is-layout-flow summary::-webkit-details-marker {
  display: none;
}
.wp-block-details.is-layout-flow summary:before {
  position: absolute;
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5rem;
  height: 100%;
  font-size: 3rem;
  color: var(--ColorSecondary);
  font-weight: bold;
  line-height: 1;
  top: 1.5rem;
  bottom: 0;
  left: 0;
  text-align: center;
  margin: auto;
}
.wp-block-details.is-layout-flow summary:after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--ColorSecondary);
  border-bottom: none;
  border-left: none;
  top: 50%;
  right: 1rem;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin: auto;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.wp-block-details.is-layout-flow p {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 5rem;
}
.wp-block-details.is-layout-flow p:before {
  position: absolute;
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5rem;
  height: 100%;
  font-size: 3rem;
  color: var(--ColorSecondary);
  font-weight: bold;
  line-height: 1;
  top: 1.5rem;
  left: 0;
  text-align: center;
}

details[open] summary::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-search.search-find {
  position: fixed;
  top: -0.5rem;
  right: 10rem;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  z-index: 9999;
  font-family: sans-serif;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
.c-search.search-find .c-search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.c-search.search-find .c-search-box .c-search-input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 160px;
  padding: 4px 6px;
}
.c-search.search-find .c-search-box .search-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}
.c-search.search-find .c-search-box .search-controls .search-counter {
  font-size: 12px;
  color: #888;
  min-width: 30px;
  text-align: right;
}
.c-search.search-find .c-search-box .search-controls button {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #444;
  padding: 2px 4px;
}
.c-search.search-find .c-search-box .search-controls button:hover {
  color: black;
}

@media only screen and (max-width: 767px) {
  .c-search.search-find {
    top: 10rem;
    right: 0;
    left: 0;
    margin: auto;
  }
  .c-search.search-find.is-fixed {
    top: 0;
  }
}
.single-supports figure {
  margin: 2rem 0;
}
.single-supports .aligncenter {
  text-align: center;
}
.single-supports .alignright {
  text-align: right;
}
.single-supports ol.wp-block-list {
  margin-bottom: 2rem;
}
.single-supports ol.wp-block-list li {
  margin-left: 2rem;
  list-style-type: decimal;
}
.single-supports ul.wp-block-list {
  margin-bottom: 2rem;
}
.single-supports ul.wp-block-list li {
  margin-left: 2rem;
  list-style-type: disc;
}
.single-supports table {
  width: 100%;
}
.single-supports table tr td, .single-supports table tr th {
  padding: 2rem;
  width: 5%;
  border: 1px solid #d1d1d1;
}
.single-supports .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.single-supports iframe {
  display: block;
  margin: 0 auto;
}
.single-supports .wp-element-caption {
  margin: 2rem auto;
}
.single-supports .ez-toc-title {
  font-size: 2rem;
}

@media only screen and (min-width: 768px) {
  .single-supports .wp-block-columns.wp-container-core-columns-is-layout-1 {
    justify-content: center;
  }
  .single-supports .wp-block-columns.wp-container-core-columns-is-layout-2 {
    justify-content: space-between;
  }
  .single-supports .wp-block-columns.wp-container-core-columns-is-layout-1 .wp-block-column .wp-block-image figure, .single-supports .wp-block-columns.wp-container-core-columns-is-layout-2 .wp-block-column .wp-block-image figure {
    margin: 0;
  }
  .single-supports .wp-block-columns.wp-container-core-columns-is-layout-1 .wp-block-column {
    width: calc((100% - 2rem) / 2);
  }
  .single-supports .wp-block-columns.wp-container-core-columns-is-layout-2 .wp-block-column {
    width: auto;
    max-width: 40%;
    display: flex;
    justify-content: center;
  }
  /* .single-supports .wp-block-columns.wp-container-core-columns-is-layout-3 .wp-block-column {
    width: auto;
    max-width: calc((100% - 6rem)/4);
  }
  .single-supports .wp-block-columns.wp-container-core-columns-is-layout-4 .wp-block-column {
    width: auto;
    max-width: calc((100% - 4rem)/3);
  } */
  .wp-block-columns .wp-block-column {
    flex: 1 1 0%;
    max-width: 100%;
  }
  .wp-block-columns .wp-block-column img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .single-supports .l-header {
    padding-bottom: 5rem;
  }
}
mark.highlight {
  background-color: yellow;
}
mark.highlight.active {
  background-color: orange;
}

#ez-toc-container {
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}
#ez-toc-container .ez-toc-title {
  margin-bottom: 2rem;
  font-weight: bold;
}
#ez-toc-container nav .ez-toc-list {
  padding-left: 0;
  list-style: none;
  counter-reset: section;
}
#ez-toc-container nav .ez-toc-list > li {
  position: relative;
  margin-bottom: 1rem;
  counter-increment: section;
}
#ez-toc-container nav .ez-toc-list > li::before {
  display: none;
}
#ez-toc-container nav .ez-toc-list > li > ul {
  padding-left: 1.5rem;
  list-style: none;
  counter-reset: subsection;
}
#ez-toc-container nav .ez-toc-list > li > ul > li {
  position: relative;
  margin-bottom: 0.5rem;
  counter-increment: subsection;
}
#ez-toc-container nav .ez-toc-list > li > ul > li::before {
  display: none;
}

@media only screen and (min-width: 768px) {
  #ez-toc-container {
    padding: 5rem 10rem;
  }
}