@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

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

ul {
  list-style-type: none;
}

h1, h2, h3, h4, li, dt, input {
  line-height: 1.4;
}

img {
  max-width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: solid 0.1rem #ccc;
  background-color: #fff;
  z-index: 1;
}
header .header_inner {
  position: relative;
  padding: 1.2rem;
}
@media screen and (min-width: 1024px) {
  header .header_inner {
    width: 100%;
    max-width: 120rem;
    padding: 0;
    margin: 0 auto;
    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;
  }
}
header .header_inner .logo {
  width: 20rem;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  header .header_inner .logo {
    width: 24rem;
    margin: 0;
    padding: 0 1.2rem;
  }
}
header .header_inner .logo img {
  display: block;
}
header .header_inner nav.gl_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 7rem 1.2rem 1.2rem;
  z-index: 2;
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav {
    display: block;
    position: static;
    padding: 0;
    width: auto;
    overflow: visible;
  }
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .header_inner nav.gl_nav ul .gl_nav_parent {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_parent {
    text-align: center;
    position: relative;
  }
}
header .header_inner nav.gl_nav ul .gl_nav_parent > a, header .header_inner nav.gl_nav ul .gl_nav_parent > span {
  display: block;
  padding: 1.6rem 0.8rem;
  color: #333;
  border-bottom: solid 0.1rem #ccc;
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_parent > a, header .header_inner nav.gl_nav ul .gl_nav_parent > span {
    padding: 1.2rem 2rem;
    border-bottom: none;
  }
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_parent .gl_nav_child {
    display: none;
    position: absolute;
    width: 20rem;
    background-color: #fff;
    border-radius: 0.8rem;
    -webkit-box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.2);
    top: 80%;
    left: 50%;
    translate: -50% 0;
    padding: 0.8rem 0;
  }
}
header .header_inner nav.gl_nav ul .gl_nav_parent .gl_nav_child li {
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_parent .gl_nav_child li {
    margin-bottom: 0;
  }
}
header .header_inner nav.gl_nav ul .gl_nav_parent .gl_nav_child li a {
  display: block;
  padding: 1.6rem 2.4rem;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_parent .gl_nav_child li a {
    padding: 0.8rem 2.4rem;
    background-color: transparent;
  }
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_parent:hover .gl_nav_child {
    display: block;
  }
}
header .header_inner nav.gl_nav ul .gl_nav_search span {
  border-bottom: none;
}
header .header_inner nav.gl_nav ul .gl_nav_contact a {
  background-color: #333;
  color: #fff;
  text-align: center;
  border-bottom: none;
  border-radius: 10rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  header .header_inner nav.gl_nav ul .gl_nav_contact a {
    border-radius: 0;
    height: 100%;
    padding: 2.4rem;
  }
}
header .header_inner .gl_nav_switch {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 4rem;
  height: 2.4rem;
  translate: 0 -50%;
  z-index: 5;
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav_switch {
    display: none;
  }
}
header .header_inner .gl_nav_switch span {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #333;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}
header .header_inner .gl_nav_switch::before, header .header_inner .gl_nav_switch::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: #333;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
header .header_inner .gl_nav_open span {
  opacity: 1;
}
header .header_inner .gl_nav_open::before {
  top: 0;
}
header .header_inner .gl_nav_open::after {
  bottom: 0;
}
header .header_inner .gl_nav_close span {
  opacity: 0;
}
header .header_inner .gl_nav_close::before {
  top: 50%;
  rotate: 45deg;
  translate: 0 -50%;
}
header .header_inner .gl_nav_close::after {
  bottom: 50%;
  rotate: -45deg;
  translate: 0 50%;
}

.wednes_sec {
  position: relative;
  text-align: center;
  background-color: #fff;
}
.wednes_sec video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
}
.wednes_sec .content {
  position: relative;
}
.wednes_sec h2 {
  margin-bottom: 2.4rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .wednes_sec h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .wednes_sec h2 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .wednes_sec h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .wednes_sec h2 br {
    display: none;
  }
}
.wednes_sec h3 {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .wednes_sec h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .wednes_sec h3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .wednes_sec h3 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .wednes_sec h3 br {
    display: none;
  }
}
.wednes_sec .wednes_logo {
  width: 72%;
  margin: 4rem auto;
}
@media screen and (min-width: 768px) {
  .wednes_sec .wednes_logo {
    width: 36rem;
  }
}
@media screen and (min-width: 1024px) {
  .wednes_sec .wednes_logo {
    margin: 5.6rem auto;
  }
}
@media screen and (min-width: 1280px) {
  .wednes_sec .wednes_logo {
    margin: 6.4rem auto;
  }
}
.wednes_sec .wed_service_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wednes_sec .wed_service_list li {
  margin: 0 0.4rem 0.8rem;
}
@media screen and (min-width: 1024px) {
  .wednes_sec .wed_service_list li {
    width: 36%;
    margin: 0 1% 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .wednes_sec .wed_service_list li {
    width: 30%;
    margin: 0 1% 2rem;
  }
}
.wednes_sec .wed_service_list li a {
  display: block;
  padding: 1.2rem 3.2rem;
  background-color: #fff;
  border: solid 0.1rem #009BA2;
  border-radius: 10rem;
  color: #009BA2;
  font-weight: 700;
  position: relative;
}
.wednes_sec .wed_service_list li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  translate: 0 -50%;
}
.wednes_sec .footer_tel {
  margin-top: 2.4rem;
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .wednes_sec .footer_tel {
    margin-top: 3.6rem;
    font-size: 4rem;
  }
}
.wednes_sec .footer_tel span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .wednes_sec .footer_tel span {
    font-size: 1.6rem;
  }
}

footer {
  padding: 1.2rem 0;
}
footer .copyright {
  font-size: 1.2rem;
  text-align: center;
}

.float_bnr {
  display: none;
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  background-color: rgba(0, 155, 162, 0.7);
  padding: 2.4rem 3.6rem;
  text-align: center;
  color: #fff;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .float_bnr {
    display: block;
  }
}
.float_bnr h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.float_bnr .float_bnr_mail {
  padding: 0.4rem 1.2rem;
  background-color: #fff;
  color: #009BA2;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
}
.float_bnr .float_bnr_tel {
  font-size: 2.4rem;
  font-weight: 700;
}
.float_bnr .float_bnr_tel span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
.float_bnr .close {
  position: absolute;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #fff;
  border-radius: 1.6rem;
  top: 0;
  right: 0;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #333;
  translate: 30% -30%;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

main {
  padding-top: 7rem;
}
@media screen and (min-width: 1024px) {
  main {
    padding-top: 6.9rem;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp_hidden {
    display: block;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc_only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .pc_hidden {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .over_alpha {
    -webkit-transition: opacity 0.4s ease 0s;
    transition: opacity 0.4s ease 0s;
    cursor: pointer;
  }
  .over_alpha:hover {
    opacity: 0.5;
  }
}

.content {
  width: 120rem;
  max-width: 94%;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .content {
    padding: 6.4rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .content {
    padding: 8rem 0;
  }
}

.site_search_form {
  border: solid 0.1rem #ccc;
  border-radius: 10rem;
  position: relative;
  overflow: hidden;
  max-width: 48rem;
  margin: 0 auto;
}
.site_search_form input {
  border: none;
  display: block;
  width: 100%;
  padding: 0.8rem 2.4rem 0.8rem 1.2rem;
}
.site_search_form input:focus {
  outline: none;
}
.site_search_form button {
  display: block;
  padding: 1.2rem;
  position: absolute;
  top: 50%;
  right: 0;
  background: none;
  border: none;
  translate: 0 -50%;
}

/*

アーカイブページネーション

*/
.pagination {
  margin-top: 4rem;
}
.pagination .nav-links .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .nav-links .page-numbers li {
  width: 4rem;
  text-align: center;
  margin: 0 0.4rem;
}
.pagination .nav-links .page-numbers li a, .pagination .nav-links .page-numbers li span {
  display: block;
  padding: 1.2rem 0;
  border: solid 0.1rem #009BA2;
  border-radius: 0.4rem;
}
.pagination .nav-links .page-numbers li a {
  color: #009BA2;
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}
.pagination .nav-links .page-numbers li a:hover {
  opacity: 0.6;
}
.pagination .nav-links .page-numbers li span {
  color: #fff;
  background-color: #009BA2;
}

/*

サイドバー

*/
.sidebar_content h3 {
  background-color: #E3F4F3;
  padding: 0.8rem 0.8rem 0.8rem 1.2rem;
  border-left: solid 1.2rem #75C3C6;
  font-size: 1.6rem;
}
.sidebar_content ul {
  margin-bottom: 2.4rem;
}
.sidebar_content ul li {
  border-bottom: dotted 0.1rem #ccc;
  font-size: 1.4rem;
}
.sidebar_content ul li a {
  display: block;
  padding: 1.2rem 0;
}
@media screen and (min-width: 1024px) {
  .sidebar_content ul li a {
    padding: 1.6rem 0;
  }
}

.side_bnr li {
  margin-bottom: 1.2rem;
}
.side_bnr li img {
  display: block;
}

/*

ボタン

*/
.btn {
  text-align: center;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto;
  width: 32rem;
}
@media screen and (min-width: 1024px) {
  .btn {
    width: 40rem;
  }
}
.btn a {
  display: block;
  padding: 1.2rem;
  background-color: #009BA2;
  color: #fff;
  border: solid 0.1rem #009BA2;
  border-radius: 10rem;
  -webkit-transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
}
@media screen and (min-width: 768px) {
  .btn a {
    padding: 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .btn a {
    padding: 2.4rem;
    font-size: 2rem;
  }
}
.btn a:hover {
  background-color: #fff;
  color: #009BA2;
}

/*

TOP

*/
.fv {
  background: url(../img/top/fv_bg.jpg) no-repeat right center;
  background-size: cover;
  position: relative;
}
.fv::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.fv .fv_inner {
  width: 120rem;
  max-width: 94%;
  margin: 0 auto;
  padding: 6.4rem 0;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fv .fv_inner {
    padding: 8rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .fv .fv_inner {
    padding: 12rem 0;
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv_inner {
    padding: 16rem 0;
  }
}
.fv .fv_inner h1 {
  font-size: 3.2rem;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .fv .fv_inner h1 {
    font-size: 4.8rem;
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv_inner h1 {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}
.fv .fv_inner h1::before {
  content: "";
  display: block;
  width: 6.4rem;
  height: 0.4rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fv .fv_inner h1 span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1024px) {
  .fv .fv_inner h1 span {
    font-size: 2rem;
  }
}
.fv .fv_inner h2 {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .fv .fv_inner h2 {
    font-size: 1.8rem;
  }
}

.top_cont_ttl {
  border: solid 0.1rem #009BA2;
  padding: 1.2rem;
  border-radius: 0.8rem;
  position: relative;
  -webkit-box-shadow: 2px 2px 0 #009BA2;
          box-shadow: 2px 2px 0 #009BA2;
  margin-bottom: 4rem;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .top_cont_ttl {
    padding: 2rem;
    font-size: 3.2rem;
    margin-bottom: 5.6rem;
  }
}
.top_cont_ttl::before, .top_cont_ttl::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -2.4rem;
  left: 30%;
}
.top_cont_ttl::before {
  background-color: #009BA2;
  translate: 2px 2px;
}
.top_cont_ttl::after {
  background-color: #fff;
}

.top_post_module {
  padding-bottom: 3.6rem;
  border-bottom: dotted 0.1rem #ccc;
  margin-bottom: 4rem;
}
.top_post_module:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .top_post_module {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.top_post_module a {
  display: block;
}
@media screen and (min-width: 768px) {
  .top_post_module a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top_post_module .post_thumb {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .top_post_module .post_thumb {
    width: 40%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top_post_module .post_thumb {
    width: 36%;
  }
}
.top_post_module .post_thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top_post_module .post_meta {
    width: 56%;
  }
}
@media screen and (min-width: 1024px) {
  .top_post_module .post_meta {
    width: 60%;
  }
}
.top_post_module .post_date {
  font-size: 1.2rem;
  color: #999;
}
.top_post_module .post_ttl {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 1024px) {
  .top_post_module .post_ttl {
    font-size: 2.4rem;
  }
}
.top_post_module .post_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .top_post_module .post_cat {
    margin-bottom: 1.6rem;
  }
}
.top_post_module .post_cat li {
  border: solid 0.1rem #009BA2;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  padding: 0.1rem 0.4rem;
  color: #009BA2;
  margin: 0 0.4rem 0.4rem 0;
}
.top_post_module .excerpt {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top_post_module .excerpt {
    display: block;
    color: #999;
    font-size: 1.4rem;
  }
}

.top_sec02 {
  background-color: #E3F4F3;
}
.top_sec02 .content {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .top_sec02 .content {
    max-width: 94%;
  }
}
.top_sec02 .top_cont_ttl {
  max-width: 94%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .top_sec02 .top_cont_ttl {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

.top_news_module {
  margin: 0 0.8rem;
}
@media screen and (min-width: 768px) {
  .top_news_module {
    margin: 0 1.2rem;
  }
}
.top_news_module a {
  display: block;
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 1.2rem;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.top_news_module figure {
  margin-bottom: 1.2rem;
}
.top_news_module figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_news_module h3 {
  border-bottom: solid 0.1rem #009BA2;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}
.top_news_module p {
  font-size: 1.2rem;
  color: #999;
}

.top_sec03 {
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .about_us_row {
    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;
  }
}
.about_us_row figure {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .about_us_row figure {
    margin-bottom: 0;
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .about_us_row dl {
    width: 48%;
  }
}
.about_us_row dl dt {
  color: #009BA2;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1.2rem;
  border-bottom: solid 0.1rem #009BA2;
  margin-bottom: 1.2rem;
}

/*

記事単体ページ

*/
.single_main {
  width: 120rem;
  max-width: 94%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .single_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.single_main .main_column {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .single_main .main_column {
    width: 72%;
    padding: 6.4rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .single_main .main_column {
    padding: 8rem 0;
  }
}
@media screen and (min-width: 768px) {
  .single_main .side_column {
    width: 24%;
    padding: 6.4rem 0;
  }
}

.post_content .post_ttl_area {
  margin-bottom: 4rem;
  border-left: solid 0.3rem #009BA2;
  padding-left: 1.2rem;
}
.post_content .post_ttl_area h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 1024px) {
  .post_content .post_ttl_area h1 {
    font-size: 3.2rem;
  }
}
.post_content .post_ttl_area dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post_content .post_ttl_area dl dd {
  margin-right: 2rem;
}
.post_content .post_cat {
  margin-bottom: 2.4rem;
}
.post_content .post_cat ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.post_content .post_cat ul li {
  font-size: 1.4rem;
  margin: 0 0.8rem 0.8rem 0;
}
.post_content .post_cat ul li a {
  display: block;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  color: #009BA2;
  border: solid 0.1rem #009BA2;
}
.post_content .post_eyecatch {
  margin-bottom: 2.4rem;
}
.post_content .post_eyecatch img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_content #toc_container {
  border: solid 0.1rem #009BA2;
  border-radius: 0.8rem;
  background-color: #E3F4F3;
  margin-bottom: 4rem;
  padding: 0;
}
.post_content #toc_container.contracted {
  width: 100% !important;
}
.post_content #toc_container .toc_title {
  padding: 1.2rem 0;
  position: relative;
}
.post_content #toc_container .toc_title .toc_toggle {
  display: block;
  width: 6.4rem;
  background-color: #009BA2;
  color: #fff;
  text-align: center;
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  translate: 0 -50%;
}
.post_content #toc_container .toc_title .toc_toggle span {
  display: none;
}
.post_content #toc_container .toc_title .toc_toggle a {
  display: block;
  padding: 0.4rem;
}
.post_content #toc_container .toc_title .toc_toggle a:hover {
  text-decoration: none;
}
.post_content #toc_container .toc_list {
  margin-top: 0 !important;
  border-top: solid 0.1rem #009BA2;
  padding: 2rem;
}
.post_content #toc_container ul li {
  margin-bottom: 0.8rem;
}
.post_content #toc_container ul li ul {
  padding-top: 0.8rem;
}
.post_content #toc_container ul li:last-of-type {
  margin-bottom: 0;
}
.post_content h2.wp-block-heading {
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  border-bottom: solid 0.1rem #009BA2;
  background-color: #f5f5f5;
  padding: 1.2rem 2.4rem;
  font-size: 2rem;
}
.post_content h2.wp-block-heading strong {
  font-weight: 700;
}
.post_content h3.wp-block-heading {
  padding: 0 0 0.8rem;
  border-bottom: solid 0.2rem #009BA2;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}
.post_content h4.wp-block-heading {
  padding: 0 0 0.8rem;
  border-bottom: solid 0.1rem #75C3C6;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.post_content p {
  margin-bottom: 2.4rem;
}
.post_content ul.wp-block-list {
  margin-bottom: 2.4rem;
  list-style-type: none;
}
.post_content ul.wp-block-list li {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2rem;
}
.post_content ul.wp-block-list li::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.4rem;
  background-color: #009BA2;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.post_content .wp-block-quote {
  background-color: #f5f5f5;
  padding: 1.2rem;
  font-style: italic;
  margin-bottom: 2.4rem;
}
.post_content .wp-block-quote p:last-of-type {
  margin-bottom: 0;
}
.post_content .wp-block-table table {
  margin-bottom: 2.4rem;
}
.post_content .wp-block-table table tr td {
  text-align: center;
  border: solid 0.1rem #ccc;
}
.post_content .wp-block-table table tr td:first-of-type {
  border-left: none;
}
.post_content .wp-block-table table tr td:last-of-type {
  border-right: none;
}
.post_content .post_tag {
  background-color: #fff;
  padding: 1.2rem 1.6rem 0.4rem;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post_content .post_tag dt {
  margin: 0 0.8rem 1.2rem;
}
.post_content .post_tag dd {
  margin: 0 0.8rem 0.8rem 0;
}
.post_content .post_tag dd a {
  display: block;
  padding: 0.4rem 0.8rem;
  background-color: #f5f5f5;
  border-radius: 0.4rem;
}
.post_content .post_tag dd a::before {
  content: "#";
}
.post_content .related_posts_ttl {
  font-size: 1.6rem;
  margin-top: 4rem;
  background-color: #E3F4F3;
  padding: 1.2rem;
  border-radius: 0.4rem;
  margin-bottom: 2.4rem;
  border: dotted 0.1rem #009BA2;
}
.post_content .related_posts {
  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;
}
.post_content .related_posts::after {
  content: "";
  display: inline-block;
  width: 32%;
}
.post_content .related_posts .related_post_module {
  width: 48%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .post_content .related_posts .related_post_module {
    width: 32%;
  }
}
.post_content .related_posts .related_post_module figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_content .related_posts .related_post_module figure figcaption {
  font-weight: 400;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .post_content .related_posts .related_post_module figure figcaption {
    font-size: 1.4rem;
  }
}

/*

検索結果ページ

*/
.search_words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 1024px) {
  .search_words {
    margin-bottom: 4rem;
  }
}
.search_words dt, .search_words dd {
  padding: 0.8rem 1.2rem;
  border: solid 0.2rem #009BA2;
  line-height: 1;
}
.search_words dt {
  width: 30%;
  border-radius: 0.4rem 0 0 0.4rem;
  color: #fff;
  text-align: center;
  background-color: #009BA2;
}
@media screen and (min-width: 1024px) {
  .search_words dt {
    width: 20%;
  }
}
.search_words dd {
  width: 70%;
  border-radius: 0 0.4rem 0.4rem 0;
}
@media screen and (min-width: 1024px) {
  .search_words dd {
    width: 80%;
  }
}
/*# sourceMappingURL=style.css.map */