*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: min(0.6944444444vw, 10px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  body.show_menu {
    overflow: hidden;
  }
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.evt {
  visibility: hidden;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
            transform: translate3d(0, 3rem, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
            transform: translate3d(0, 3rem, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-3rem, 0, 0);
            transform: translate3d(-3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-3rem, 0, 0);
            transform: translate3d(-3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(3rem, 0, 0);
            transform: translate3d(3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(3rem, 0, 0);
            transform: translate3d(3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

#header {
  background: #fff;
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 2;
}
#header .inner {
  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;
  width: min(100% - 4rem, 160rem);
  margin: 0 auto;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  #header .inner {
    height: 6rem;
  }
}
#header .logo {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  #header .logo {
    width: 6rem;
  }
}
#header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #header .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 0;
  }
}
#header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #header .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#header .nav .contact a {
  background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#ff8f34));
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#header .nav .contact a:hover {
  opacity: 0.5;
}
#header .nav .contact a::before {
  content: "\f0e0";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  margin-right: 1rem;
}
#header .menu_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .menu_btn {
    display: block;
    position: relative;
    width: 2.6rem;
    height: 1rem;
  }
  #header .menu_btn::before, #header .menu_btn::after {
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #header .menu_btn::before {
    inset: 0 auto auto 0;
  }
  #header .menu_btn::after {
    inset: auto auto 0 0;
  }
}
@media screen and (max-width: 767px) {
  #header .toggle_menu {
    background: #fff;
    position: fixed;
    inset: 6rem auto auto 0;
    width: 100vw;
    height: calc(100vh - 6rem);
    translate: 100% 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
#header.show_menu .menu_btn::before, #header.show_menu .menu_btn::after {
  inset: 50% auto auto 0;
  translate: 0 -50%;
}
#header.show_menu .menu_btn::before {
  rotate: 35deg;
}
#header.show_menu .menu_btn::after {
  rotate: -35deg;
}
#header.show_menu .toggle_menu {
  translate: 0 0;
}

#footer .contact_content {
  background: url(../img/f_contact_bg.jpg) no-repeat center/cover;
  padding: 7rem 0;
}
#footer .contact_content .box {
  width: min(100% - 4rem, 120rem);
  margin: 0 auto;
  padding: 5rem 2rem;
  border: 1px solid #fff;
}
#footer .contact_content .h1 {
  color: #fff;
  margin-bottom: 3rem;
}
#footer .contact_content p {
  color: #fff;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  text-align: center;
}
#footer .contact_content .contact {
  text-align: center;
}
#footer .contact_content .contact a {
  background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#ff8f34));
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#footer .contact_content .contact a:hover {
  opacity: 0.5;
}
#footer .contact_content .contact a::before {
  content: "\f0e0";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  #footer .contact_content .contact a {
    font-size: 1.4rem;
  }
}
#footer .other_content {
  background: #faf4e1;
  padding: 5rem 2rem 3rem;
}
#footer .other_content .logo {
  width: 10rem;
  margin: 0 auto 3rem;
}
#footer .other_content .address {
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}
#footer .other_content .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 3rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer .other_content .links {
    display: none;
  }
}
#footer .other_content .links li + li {
  position: relative;
  margin-left: 2rem;
  padding-left: 2rem;
}
#footer .other_content .links li + li::before {
  content: "";
  background: #000;
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 100%;
}
#footer .other_content .bnr {
  width: min(100%, 37rem);
  margin: 0 auto 3rem;
}
#footer .other_content .copy {
  font-size: 1.2rem;
  text-align: center;
}

main {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 6rem;
  }
}

.h1 {
  font-size: 3.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 2.4rem;
  }
}
.h1 .en {
  color: #f26b2f;
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .h1 .en {
    font-size: 1.4rem;
  }
}

.h2 {
  position: relative;
  margin: 12rem 0 4rem;
  padding-left: 4.5rem;
  font-size: 2.4rem;
}
.h2::before {
  content: "";
  background: #00a6b5;
  position: absolute;
  inset: auto auto 0 0;
  width: 2rem;
  height: 2rem;
}
.h2::after {
  content: "";
  background: #febb23;
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .h2 {
    margin: 8rem 0 2rem;
    font-size: 2rem;
  }
  .h2::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .h2::after {
    inset: auto auto 0.8rem 0.8rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}

.contact_box {
  margin-top: 3rem;
  padding: 4rem 2rem;
  border: 1px solid #f26b2f;
}
@media screen and (max-width: 767px) {
  .contact_box {
    padding: 2rem;
  }
}
.contact_box .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_box .ttl {
    font-size: 2rem;
  }
}
.contact_box .tel_fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 1em;
  margin-bottom: 1rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .contact_box .tel_fax {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
  }
}
.contact_box .business_hours {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_box .business_hours {
    font-size: 1.4rem;
  }
}

.line_box {
  margin-top: 3rem;
  padding: 4rem 2rem;
  border: 1px solid #06c755;
}

@media screen and (max-width: 767px) {
  .line_box {
    padding: 2rem;
    font-size: 1.4rem;
  }
}
.line_box .ttl {
  color: #06c755;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .line_box .ttl {
    font-size: 2rem;
  }
}
.line_box .row {
  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: 20px 30px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .line_box .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.line_box .btn {
  text-align: center;
  margin-bottom: 20px;
}

.line_box .btn a {
  background: #06c755;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  padding: 1rem 3rem;
  border-radius: 4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.line_box .btn a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-image: url(../img/line-ico.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 1rem;
}

.table table {
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px solid #d4ccb1;
}
@media screen and (max-width: 767px) {
  .table table {
    font-size: 1.4rem;
  }
}
.table th, .table td {
  padding: 2rem 3rem;
  border-top: 1px solid #d4ccb1;
}
@media screen and (max-width: 767px) {
  .table th, .table td {
    display: block;
    padding: 1rem 2rem;
  }
}
.table th {
  background: #faf4e1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table th {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .table td {
    border-top: none;
  }
}

/*--------------------------------------------------
Pagination
--------------------------------------------------*/
.pagination {
  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: 0.2em;
  font-size: 16px;
  line-height: 1;
  padding: 2em 0;
}
.pagination .pagination-last,
.pagination .pagination-first,
.pagination .pagination-next,
.pagination .pagination-prev,
.pagination .pagination-item a,
.pagination .is-current {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #faf4e1;
  border: 1px solid #faf4e1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 15px;
  margin: 0 0.2em;
}
.pagination .pagination-last:hover:not(li),
.pagination .pagination-first:hover:not(li),
.pagination .pagination-next:hover:not(li),
.pagination .pagination-prev:hover:not(li),
.pagination .pagination-item a:hover:not(li),
.pagination .is-current:hover:not(li) {
  background: #ddd;
}
.pagination .pagination-list {
  display: none;
}
@media (min-width: 520px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 520px) {
  .pagination .is-current {
    background: #f26b2f;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #ccc;
  padding: 1em;
}
@media (min-width: 520px) {
  .pagination .pagination-page {
    display: none;
  }
}
.pagination .pagination-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 520px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pagination .pagination-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 520px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.pagination .pagination-first {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
  }
}
.pagination .pagination-last {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-last {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: block;
  }
}

.pagenav {
  padding: 2em 0;
}
.pagenav .pagenav-list {
  background-color: #faf4e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4%;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .pagenav .pagenav-list {
    padding: 10px;
  }
}
.pagenav .pagenav-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .pagenav .pagenav-list > li {
    font-size: 14px;
  }
}
.pagenav .next {
  text-align: right;
}
.pagenav a {
  text-decoration: underline;
  color: #f26b2f;
}
.pagenav a:hover {
  text-decoration: none;
}

.top_sec .inner {
  width: min(100% - 4rem, 120rem);
  margin: 0 auto;
}
.top_sec .h1 {
  margin-bottom: 4rem;
}

.fixed_bnr {
  position: fixed;
  inset: auto 2rem 2rem auto;
  width: 20rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fixed_bnr {
    display: none;
  }
}
.fixed_bnr .close {
  background: #fff;
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 3px #ccc;
          box-shadow: 0 0 3px #ccc;
  cursor: pointer;
}
.fixed_bnr .close::before, .fixed_bnr .close::after {
  content: "";
  background: #baa377;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 50%;
  height: 1px;
}
.fixed_bnr .close::before {
  rotate: 45deg;
}
.fixed_bnr .close::after {
  rotate: -45deg;
}

.fixed_bnr_seminar {
  position: fixed;
  inset: auto 2rem 25rem auto;
  width: 20rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fixed_bnr_seminar {
    display: none;
  }
}
.fixed_bnr_seminar .close {
  background: #fff;
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 3px #ccc;
          box-shadow: 0 0 3px #ccc;
  cursor: pointer;
}
.fixed_bnr_seminar .close::before, .fixed_bnr_seminar .close::after {
  content: "";
  background: #1e4b88;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 50%;
  height: 1px;
}
.fixed_bnr_seminar .close::before {
  rotate: 45deg;
}
.fixed_bnr_seminar .close::after {
  rotate: -45deg;
}

.top_mv {
  position: relative;
  margin-bottom: 15rem;
  overflow: hidden;
}
.top_mv::before {
  content: "";
  background: url(../img/top_mv02.png) no-repeat center/cover;
  position: absolute;
  inset: 50% auto auto calc(50% - 95rem);
  translate: 0 -50%;
  width: 28rem;
  height: 43rem;
}
.top_mv::after {
  content: "";
  background: url(../img/top_mv03.png) no-repeat center/cover;
  position: absolute;
  inset: 0 auto auto calc(50% + 67rem);
  width: 22rem;
  height: 22rem;
}
.top_mv .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top_mv .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top_mv .txt_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top_mv .txt_content .catch {
  margin-bottom: 4rem;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .top_mv .txt_content .catch {
    margin-bottom: 2rem;
    font-size: 3.2rem;
  }
}
.top_mv .txt_content .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_mv .txt_content .txt {
    font-size: 1.4rem;
  }
}
.top_mv .illust {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
}

.top_greeting {
  margin-bottom: 15rem;
}
.top_greeting .h1 {
  margin-bottom: 1rem;
}
.top_greeting .cap {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  text-align: center;
}
.top_greeting .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem 6rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_greeting .row .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .img {
    width: 75%;
    margin: 0 auto;
  }
}
.top_greeting .row .txt_content {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
}
.top_greeting .row .txt_content .ttl {
  color: #f26b2f;
  margin-bottom: 3rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .txt_content .ttl {
    font-size: 1.8rem;
  }
}
.top_greeting .row .txt_content .txt {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .txt_content .txt {
    font-size: 1.4rem;
  }
}
.top_greeting .row .txt_content .btns li + li {
  margin-top: 2rem;
}
.top_greeting .row .txt_content .btns a {
  background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#ff8f34));
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  position: relative;
  display: block;
  width: min(100%, 35rem);
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_greeting .row .txt_content .btns a:hover {
  opacity: 0.5;
}
.top_greeting .row .txt_content .btns a::after {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  inset: 50% 3rem auto auto;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .txt_content .btns a {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}

.top_reason {
  position: relative;
  padding: 12rem 0 24rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .top_reason {
    padding: 8rem 0 16rem;
  }
}
.top_reason::before {
  content: "";
  background: #faf4e1;
  position: absolute;
  inset: 0 auto auto 0;
  width: min(100% - 6rem, 175rem);
  height: calc(100% - 12rem);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_reason::before {
    width: calc(100% - 2rem);
    height: calc(100% - 8rem);
  }
}
.top_reason::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#ff8f34));
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  position: absolute;
  inset: auto 0 0 auto;
  width: min(100% - 6rem, 150rem);
  height: calc(100% - 20rem);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top_reason .inner {
    width: min(100% - 6rem, 120rem);
    margin: 0 auto auto 2rem;
  }
}
.top_reason .reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top_reason .reason {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
.top_reason .reason li {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .top_reason .reason li {
    width: 100%;
  }
}
.top_reason .reason .img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top_reason .reason .img {
    width: 20rem;
    margin: 0 auto;
  }
}
.top_reason .reason .ttl {
  color: #f26b2f;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_reason .reason .ttl {
    font-size: 1.8rem;
  }
}
.top_reason .reason .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_reason .reason .txt {
    font-size: 1.4rem;
  }
}

.top_topics {
  margin-bottom: 15rem;
}
.top_topics .inner {
  width: min(100% - 4rem, 120rem);
  margin: 0 auto;
}
.top_topics .article-list {
  border-top: 1px solid #d4ccb1;
  border-bottom: 1px solid #d4ccb1;
  height: 270px;
  margin: 60px 0;
  padding-right: 50px;
  overflow-y: scroll;
}
.top_topics .article-list .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3em;
  border-bottom: 1px solid #d4ccb1;
  padding: 30px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_topics .article-list .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
  }
}
.top_topics .article-list .article::before {
  content: "";
  background-color: #101010;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 40px;
  left: 6px;
}
@media screen and (max-width: 767px) {
  .top_topics .article-list .article::before {
    top: 20px;
    left: 0;
  }
}
.top_topics .article-list .article a {
  text-decoration: underline;
  color: #f26b2f;
}
.top_topics .article-list .article a:hover {
  text-decoration: none;
}
.top_topics .article-list .article .time {
  font-size: 1.6em;
}
.top_topics .article-list .article .ttl {
  font-size: 1.6em;
}
.top_topics .btn {
  text-align: center;
}
.top_topics .btn a {
  background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#ff8f34));
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border-radius: 4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top_topics .btn a:hover {
  opacity: 0.5;
}

.top_voice {
  margin-bottom: 15rem;
}
.top_voice .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem 3.5rem;
  width: min(100% - 4rem, 160rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_voice .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_voice .row .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
  border: 1px solid #f26b2f;
}
.top_voice .row .img {
  margin-bottom: 2rem;
}
.top_voice .row .name {
  color: #f26b2f;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top_voice .row .name {
    font-size: 1.8rem;
  }
}
.top_voice .row .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_voice .row .txt {
    font-size: 1.4rem;
  }
}

.top_movie {
  margin-bottom: 12rem;
}
.top_movie .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem 7rem;
}
@media screen and (max-width: 767px) {
  .top_movie .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_movie .row .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top_movie .row .movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-bottom: 2rem;
}
.top_movie .row .movie iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border: none;
}
.top_movie .row .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_movie .row .txt {
    font-size: 1.4rem;
  }
}

.top_seminar {
  margin-bottom: 15rem;
}
.top_seminar .bnr {
  margin-bottom: 3rem;
}
.top_seminar .txt {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.top_seminar .txt span {
  color: #f26b2f;
}
@media screen and (max-width: 767px) {
  .top_seminar .txt {
    font-size: 1.4rem;
  }
}

.low .h1 {
  background-color: #faf4e1;
  background-image: radial-gradient(#f4dc71 1px, transparent 1px), radial-gradient(#f4dc71 1px, transparent 1px);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  padding: 8rem 2rem;
}
@media screen and (max-width: 767px) {
  .low .h1 {
    padding: 6rem 2rem;
  }
}
.low .low_inner {
  width: min(100% - 4rem, 120rem);
  margin: 2rem auto 15rem;
}
@media screen and (max-width: 767px) {
  .low .low_inner {
    margin: 1rem auto 12rem;
  }
}
.low .breadcrumbs {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .low .breadcrumbs {
    margin-bottom: 8rem;
  }
}
.low .breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .low .breadcrumbs ul {
    font-size: 1.2rem;
  }
}
.low .breadcrumbs ul li + li::before {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  margin: 0 1rem;
}
.low .breadcrumbs ul a {
  text-decoration: underline;
}

.sec_company .address {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_company .address {
    font-size: 1.4rem;
  }
}
.sec_company .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.sec_company .map iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sec_message .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 8rem;
  }
}
.sec_message .row .prof {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_message .row .prof .photo {
  margin-bottom: 2rem;
}
.sec_message .row .prof .name {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row .prof .name {
    font-size: 1.4rem;
  }
}
.sec_message .row .prof .name span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row .prof .name span {
    font-size: 1.2rem;
  }
}
.sec_message .row .message {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}
.sec_message .row .message .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row .message .ttl {
    font-size: 1.8rem;
    text-align: center;
  }
}
.sec_message .row .message .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_message .row .message .txt {
    font-size: 1.4rem;
  }
}
.sec_message .bnr {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.sec_service .steps {
  margin-bottom: 8rem;
}
.sec_service .steps li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem 6rem;
}
.sec_service .steps li + li {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .sec_service .steps li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_service .steps .img {
  position: relative;
  width: 40rem;
  padding: 0 3rem 3rem 0;
}
@media screen and (max-width: 767px) {
  .sec_service .steps .img {
    width: 100%;
  }
}
.sec_service .steps .img::before {
  content: "";
  background: #faf4e1;
  position: absolute;
  inset: auto 0 0 auto;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  z-index: -1;
}
.sec_service .steps .txt_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_service .steps .txt_content .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_service .steps .txt_content .ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    font-size: 1.8rem;
  }
}
.sec_service .steps .txt_content .ttl span {
  background: #f26b2f;
  color: #fff;
  display: inline-block;
  margin-right: 2rem;
  padding: 0 3rem;
}
.sec_service .steps .txt_content .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_service .steps .txt_content .txt {
    font-size: 1.4rem;
  }
}
.sec_service .box {
  padding: 4rem;
  border: 1px solid #f26b2f;
}
.sec_service .box + .box {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec_service .box {
    padding: 2rem;
  }
  .sec_service .box + .box {
    margin-top: 2rem;
  }
}
.sec_service .box .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_service .box .ttl {
    font-size: 1.8rem;
  }
}
.sec_service .box .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_service .box .txt {
    font-size: 1.4rem;
  }
}

.sec_security .txt {
  margin-bottom: 8rem;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_security .txt {
    margin-bottom: 6rem;
    font-size: 1.4rem;
    text-align: left;
  }
}
.sec_security .mark {
  width: min(100%, 45rem);
  margin: 0 auto;
}

.sec_contact .txt {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_contact .txt {
    font-size: 1.4rem;
  }
}
.sec_contact .form .table {
  margin-bottom: 3rem;
}
.sec_contact .form .table th {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .table th {
    width: 100%;
  }
}
.sec_contact .form .table th span {
  background: #e83826;
  color: #fff;
  display: inline-block;
  margin-left: 1rem;
  padding: 0 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  border-radius: 4rem;
}
.sec_contact .form .table td label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sec_contact .form .table td label input[type=radio] {
  margin-right: 1rem;
}
.sec_contact .form .table td input[type=text], .sec_contact .form .table td input[type=email], .sec_contact .form .table td textarea {
  display: block;
  padding: 1rem;
  border: 1px solid #d4ccb1;
  outline: none;
}
.sec_contact .form .table td input[type=text], .sec_contact .form .table td input[type=email] {
  width: min(100%, 30rem);
}
.sec_contact .form .table td textarea {
  width: min(100%, 60rem);
  resize: none;
}
.sec_contact .form .privacy {
  margin-bottom: 3rem;
  border-top: 1px solid #d4ccb1;
  border-bottom: 1px solid #d4ccb1;
}
.sec_contact .form .privacy .privacy_ttl {
  background: #faf4e1;
  padding: 2rem;
  font-size: 1.6rem;
  text-align: center;
  border-bottom: 1px solid #d4ccb1;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .privacy .privacy_ttl {
    font-size: 1.4rem;
  }
}
.sec_contact .form .privacy .privacy_txt {
  height: 26rem;
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .privacy .privacy_txt {
    font-size: 1.4rem;
  }
}
.sec_contact .form .privacy .privacy_txt :is(p, ul) + :is(p, ul) {
  margin-top: 2rem;
}
.sec_contact .form .privacy .privacy_txt span {
  color: #f26b2f;
  display: block;
}
.sec_contact .form .check {
  margin-bottom: 3rem;
}
.sec_contact .form .check label {
  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;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .check label {
    font-size: 1.4rem;
  }
}
.sec_contact .form .check label input {
  margin-right: 1rem;
}
.sec_contact .form .submit {
  text-align: center;
}
.sec_contact .form .submit button[type=submit], .sec_contact .form .submit input[type=submit] {
  background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#ff8f34));
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  width: min(100%, 30rem);
  padding: 2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 4rem;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sec_contact .form .submit button[type=submit]:hover, .sec_contact .form .submit input[type=submit]:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .submit button[type=submit], .sec_contact .form .submit input[type=submit] {
    font-size: 1.4rem;
  }
}

.sec_contact_thanks .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_contact_thanks .txt {
    font-size: 1.4rem;
  }
}

.sec_topics .sec_topics_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_topics .sec_topics_content {
    display: block;
  }
}
.sec_topics .sec_topics_content .left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.sec_topics .sec_topics_content .right {
  width: 100%;
}
.sec_topics .side-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec_topics .side-blog {
    display: none;
  }
}
.sec_topics .side-blog .side-head {
  background-color: #f26b2f;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px;
}
.sec_topics .side-blog .side-calender {
  border: 1px solid #f26b2f;
  overflow: hidden;
}
.sec_topics .side-blog .side-calender table caption {
  font-size: 15px;
  text-align: center;
  padding: 10px;
}
.sec_topics .side-blog .side-calender table th, .sec_topics .side-blog .side-calender table td {
  font-size: 15px;
  text-align: center;
  padding: 5px;
}
.sec_topics .side-blog .side-calender table th {
  background-color: #fff;
  font-weight: bold;
}
.sec_topics .side-blog .side-calender table tbody a {
  text-decoration: underline;
  color: #f26b2f;
}
.sec_topics .side-blog .side-calender table tbody a:hover {
  text-decoration: none;
}
.sec_topics .side-blog .side-calender table tfoot a {
  text-decoration: underline;
}
.sec_topics .side-blog .side-calender table tfoot a:hover {
  text-decoration: none;
}
.sec_topics .side-blog .side-calender table .prev {
  text-align: left;
}
.sec_topics .side-blog .side-calender table .next {
  text-align: right;
}
.sec_topics .side-blog .side-latest {
  border: 1px solid #f26b2f;
  overflow: hidden;
}
.sec_topics .side-blog .side-latest .side-body {
  padding: 0 20px;
}
.sec_topics .side-blog .side-latest .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid #d4ccb1;
  font-size: 15px;
  padding: 15px 10px 15px 16px;
  position: relative;
}
.sec_topics .side-blog .side-latest .list > li::before {
  content: "";
  background-color: #101010;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 24px;
  left: 3px;
}
.sec_topics .side-blog .side-latest .list > li:last-child {
  border-bottom: none;
}
.sec_topics .side-blog .side-latest .list > li a:hover {
  text-decoration: underline;
}
.sec_topics .side-blog .side-category {
  border: 1px solid #f26b2f;
  overflow: hidden;
}
.sec_topics .side-blog .side-category .side-body {
  padding: 0 20px;
}
.sec_topics .side-blog .side-category .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid #d4ccb1;
  font-size: 15px;
  padding: 15px 10px 15px 16px;
  position: relative;
}
.sec_topics .side-blog .side-category .list > li::before {
  content: "";
  background-color: #101010;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 24px;
  left: 3px;
}
.sec_topics .side-blog .side-category .list > li:last-child {
  border-bottom: none;
}
.sec_topics .side-blog .side-category .list > li a:hover {
  text-decoration: underline;
}
.sec_topics .side-blog .side-archive {
  border: 1px solid #f26b2f;
  overflow: hidden;
}
.sec_topics .side-blog .side-archive .side-body {
  padding: 20px;
  overflow: hidden;
}
.sec_topics .side-blog .side-archive select {
  border: 1px solid #c5c5c5;
  width: 100%;
  padding: 10px;
}
.sec_topics .h2 {
  margin-top: 0;
}
.sec_topics .article-list {
  border-top: 1px solid #d4ccb1;
  margin: 40px 0;
}
.sec_topics .article-list .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3em;
  border-bottom: 1px solid #d4ccb1;
  padding: 30px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_topics .article-list .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
  }
}
.sec_topics .article-list .article::before {
  content: "";
  background-color: #101010;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 40px;
  left: 6px;
}
@media screen and (max-width: 767px) {
  .sec_topics .article-list .article::before {
    top: 20px;
    left: 0;
  }
}
.sec_topics .article-list .article a {
  text-decoration: underline;
  color: #f26b2f;
}
.sec_topics .article-list .article a:hover {
  text-decoration: none;
}
.sec_topics .article-list .article .time {
  font-size: 1.6em;
}
.sec_topics .article-list .article .ttl {
  font-size: 1.6em;
}
.sec_topics .article_single {
  font-size: 1.6em;
}
.sec_topics .article_single .head {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec_topics .article_single .head {
    margin-bottom: 20px;
  }
}
.sec_topics .article_single .head .ttl {
  border-bottom: 1px solid #d4ccb1;
  color: #f26b2f;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec_topics .article_single .head .ttl {
    font-size: 18px;
  }
}
.sec_topics .article_single .head .cat {
  text-align: right;
  margin-top: 1em;
}
.sec_topics .article_single .body a {
  text-decoration: underline;
  color: #459ce6;
}
.sec_topics .article_single .body a:hover {
  text-decoration: none;
}
.sec_topics .article_single .foot {
  border-top: 1px solid #d4ccb1;
  text-align: right;
  margin: 50px 0 40px;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .sec_topics .article_single .foot {
    margin: 25px 0 20px;
  }
}/*# sourceMappingURL=style.css.map */