@charset "UTF-8";
:root {
  --black: #333;
  --light-gray: #F8F7F4;
  --middle-gray: #F4EEDC;
  --dark-gray: #F4EEDC;
  --red: #d60148;
  --blue: #61C6E4;
  --green: #B3C423;
  --main-color: #F6B74D;
  --deep-orange: #F38200;
  --sub-color: #B3C423;
}

.sub_page {
  background: var(--light-gray);
  /* パンくず */
}
.sub_page .pankuzu {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}
.sub_page .pankuzu > div {
  width: 100%;
  margin: 0;
}
.sub_page .pankuzu ul.bread_list {
  display: flex;
  justify-content: flex-start !important;
}
.sub_page .pankuzu ul.bread_list li {
  box-sizing: border-box;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  position: relative;
  background: none;
  word-break: break-all;
  position: relative;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-navy);
}
.sub_page .pankuzu ul.bread_list li a {
  padding: 0;
  display: inline;
  width: auto;
  margin: 0;
  text-align: left;
  position: inherit;
  bottom: auto;
  left: auto;
  right: auto;
  font-weight: 500;
  color: gray;
  font-size: 1.2rem;
  text-decoration: none;
}
.sub_page .pankuzu ul.bread_list li a::after {
  display: none;
}
.sub_page .pankuzu .bread_list li:not(:last-child)::after {
  /* content: " > "; */
  font-family: FontAwesome;
  content: "\f105";
  font-weight: 700;
}
.sub_page .pankuzu ul.bread_list {
  display: flex;
  /* margin: 1rem; */
  justify-content: flex-start !important;
}
.sub_page .pankuzu .bread_list li:not(:last-child):after {
  /* content: " > "; */
  font-family: FontAwesome;
  content: "\f105";
  font-weight: 700;
  margin: 0 1rem;
}
@media screen and (max-width: 480px) {
  .sub_page .pankuzu ul.bread_list li,
  .sub_page .pankuzu ul.bread_list li a {
    font-size: 1rem;
  }
}
.sub_page .buttons {
  margin-top: 60px;
  text-align: center;
}
.sub_page .buttons .button {
  color: var(--black);
  padding: 15px 25px 18px;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--deep-orange);
  background: var(--deep-orange);
  border-radius: 4px;
  transition: all 0.1s;
}
.sub_page .buttons .button span {
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
  transition: all 0.1s;
}
.sub_page .buttons .button:hover {
  background: white;
}
.sub_page .buttons .button:hover span {
  color: var(--deep-orange);
}
.sub_page .container {
  margin: 0 auto;
  width: 96%;
  max-width: 1200px;
}
.sub_page section.sub_page_top {
  background: var(--middle-gray);
  text-align: center;
}
.sub_page section.sub_page_top .title_box {
  margin-top: -25px;
  padding: 4.5em 0;
  position: relative;
}
.sub_page section.sub_page_top .title_box::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 3em;
  border-radius: 100px;
  background: var(--deep-orange);
  bottom: -1.5em;
  left: 0;
  right: 0;
  margin: auto;
}
.sub_page section.sub_page_top .title_box span {
  font-weight: 700;
  color: var(--deep-orange);
}
.sub_page section.sub_page_top .title_box h2 {
  padding: 0;
  margin: 0;
}
.sub_page section.sub_page_top .text {
  background: white;
  padding: 3.5em 0;
  text-align: left;
}
.sub_page section.sub_page_top .text p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .sub_page section.sub_page_top .text p {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}
.sub_page section.sub_page_top .text small {
  color: dimgrey;
  font-size: 1.3rem;
  font-weight: 500;
}/*# sourceMappingURL=sub.css.map */