* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
  background: url(../img/bg.jpg);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  border-top: 5px solid #f18b00;
  overflow: hidden;
}

.inner {
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.red {
  color: rgb(222, 47, 47);
}

.page_content {
  background: #fff;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  position: relative;
  padding-top: 10px;
  z-index: 2;
}
header .txt {
  font-size: 14px;
  text-align: center;
}

.fixed_menu {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 20px;
  border-top: 5px solid #f18b00;
  border-radius: 0 0 10px 0;
  background: #fff url(../img/sec_bg_orange.png) repeat-x top center/17px;
  z-index: 100;
}
.fixed_menu::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 51/65;
  position: absolute;
  top: 10px;
  right: 7px;
  background: url(../img/flower.svg) no-repeat center/contain;
}
.fixed_menu h2 {
  color: #f18b00;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  padding-right: 20px;
}
.fixed_menu h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -20px;
  background: #f18b00;
}
.fixed_menu h2::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: calc(100% - 20px);
  bottom: -2px;
  background: #f18b00;
}
.fixed_menu ul li a {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.fixed_menu ul li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/arrow_right_orange.svg) no-repeat center/contain;
  margin-right: 5px;
}
.fixed_menu ul li:not(:last-child) {
  margin-bottom: 10px;
}

.fixed_btn {
  text-align: center;
  position: fixed;
  bottom: 30px;
  left: 15px;
  z-index: 110;
}
.fixed_btn .close {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  cursor: pointer;
}
.fixed_btn .close img {
  width: 24px;
}
.fixed_btn img {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  width: 200px;
}

#nav_area {
  position: relative;
  z-index: 2;
}
#nav_area .inner ul {
  display: flex;
}
#nav_area .inner ul li {
  width: calc((100% - 30px) / 7);
}
#nav_area .inner ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4db9e;
  color: #a77339;
  line-height: 1.2;
  height: 60px;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  text-align: center;
}
#nav_area .inner ul li:not(:last-child) {
  margin-right: 5px;
}
#nav_area .inner ul li.current a {
  background: #f18b00;
  color: #fff;
  text-shadow: 0 0 5px #a77339, 0 0 5px #a77339, 0 0 5px #a77339;
}

main .inner {
  background: #f18b00;
  padding: 15px;
}
main .inner section {
  position: relative;
}
main .inner section:not(#mv):not(#bnr_area) {
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  background: #fff;
}
main .inner section:not(#mv):not(#bnr_area)::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 51/65;
  position: absolute;
  top: 10px;
  right: 7px;
  background: url(../img/flower.svg) no-repeat center/contain;
}
main .inner section h2 {
  color: #f18b00;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  padding-right: 20px;
}
main .inner section h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -20px;
}
main .inner section h2::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: calc(100% - 20px);
  bottom: -2px;
}
main .inner section h2 span {
  font-size: 12px;
  font-weight: 400;
}
main .inner section .sec_row {
  display: flex;
  justify-content: space-between;
}
main .inner .row {
  display: flex;
  justify-content: space-between;
}
main .inner .row aside {
  width: 320px;
}
main .inner .row .content {
  width: calc(100% - 335px);
}

.link a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: #e24560;
  font-weight: 500;
}
.link a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: no-repeat center/contain;
  margin-right: 5px;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 150px;
  padding: 4px 0 5px;
  line-height: 1;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
}
.btn a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/arrow_right_white_circle.svg) no-repeat center/contain;
  margin-right: 5px;
}

.footer_nav_area {
  background: #fff3e3;
  margin: 20px -20px 0 -20px;
  padding: 20px;
}
.footer_nav_area .inner ul {
  display: flex;
  flex-wrap: wrap;
}
.footer_nav_area .inner ul li a {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.footer_nav_area .inner ul li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/arrow_right_orange.svg) no-repeat center/contain;
  margin-right: 5px;
}
.footer_nav_area .inner ul li:not(:last-child) {
  margin-right: 15px;
}

footer .inner {
  padding: 20px 0 100px;
  max-width: 1040px;
}
footer .inner p {
  text-align: right;
  font-size: 12px;
}

@media (max-width: 1450px) {
  .page_content {
    margin: 0 calc((100vw - 1000px) / 2 - 100px) 0 calc((100vw - 1000px) / 2 + 60px);
  }
}
@media (max-width: 1200px) {
  .page_content {
    margin: 0 auto;
  }
  .fixed_menu {
    display: none;
  }
}
@media (max-width: 1040px) {
  header .txt .sp {
    display: block;
  }
  main .inner .row {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  header.open + #menu_btn span:nth-child(1) {
    transform: rotate(45deg);
    top: 28px;
  }
  header.open + #menu_btn span:nth-child(2) {
    opacity: 0;
  }
  header.open + #menu_btn span:nth-child(3) {
    transform: rotate(-45deg);
    top: 28px;
  }
  #menu_btn {
    display: block;
    width: 60px;
    height: 60px;
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    background: #f18b00;
  }
  #menu_btn span {
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 10px;
    transition: 0.3s;
  }
  #menu_btn span:nth-child(1) {
    top: 16px;
  }
  #menu_btn span:nth-child(2) {
    top: 28px;
  }
  #menu_btn span:nth-child(3) {
    top: 40px;
  }
  #nav_area {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    background: #f18b00;
    z-index: 100;
    display: none;
    overflow: auto;
  }
  #nav_area .inner {
    width: 100%;
  }
  #nav_area .inner ul {
    padding-top: 50px;
    flex-direction: column;
    width: 300px;
  }
  #nav_area .inner ul li {
    width: 100%;
  }
  #nav_area .inner ul li a {
    background: none;
    color: #fff;
    text-shadow: 0 0 5px #a77339, 0 0 5px #a77339, 0 0 5px #a77339;
  }
  #nav_area .inner ul li:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px dashed #fff;
  }
  #nav_area .inner ul li.current a {
    background: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .inner {
    width: 100%;
  }
  .page_content {
    padding: 0;
  }
  header {
    padding: 5px 60px 0 2%;
  }
  header .inner .txt {
    font-size: 10px;
    text-align: left;
  }
  .link a {
    font-size: 13px;
  }
  .btn a {
    font-size: 13px;
  }
  .fixed_btn {
    bottom: 15px;
  }
  .footer_nav_area {
    display: none;
  }
  footer {
    margin-bottom: 65px;
  }
  footer .inner {
    padding: 20px 0;
  }
  footer .inner p {
    text-align: center;
  }
}
#top #mv {
  height: 470px;
  position: relative;
}
#top #mv::before {
  content: "";
  display: block;
  width: 520px;
  aspect-ratio: 831/824;
  background: #fff url(../img/mv.jpg) no-repeat left top/contain;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 1;
}
#top #mv .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
#top #mv .inner h1 {
  margin-bottom: 20px;
}
#top #mv .inner h1 img {
  width: 550px;
}
#top #mv .inner .number img {
  width: 135px;
}
#top main .inner .row aside #news {
  background: #fff url(../img/sec_bg_red.png) repeat-x top center/17px;
}
#top main .inner .row aside #news h2 {
  color: #e24560;
}
#top main .inner .row aside #news h2::before, #top main .inner .row aside #news h2::after {
  background: #e24560;
}
#top main .inner .row aside #news .news_list {
  overflow: auto;
}
#top main .inner .row aside #news .news_list .item .date {
  color: #e24560;
  font-size: 14px;
  margin-bottom: 5px;
}
#top main .inner .row aside #news .news_list .item .ttl {
  font-size: 15px;
}
#top main .inner .row aside #news .news_list .item .link {
  margin-top: 10px;
}
#top main .inner .row aside #news .news_list .item .link a {
  color: #e24560;
}
#top main .inner .row aside #news .news_list .item .link a::before {
  background-image: url(../img/arrow_right_news.svg);
}
#top main .inner .row aside #news .news_list .item:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px dotted #bbb;
  margin-bottom: 10px;
}
#top main .inner .row aside #bnr_area {
  margin-top: 15px;
}
#top main .inner .row aside #bnr_area ul li img {
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}
#top main .inner .row aside #bnr_area ul li:not(:last-child) {
  margin-bottom: 10px;
}
#top main .inner .row .content #kaigo {
  background: #fff url(../img/sec_bg_orange.png) repeat-x top center/17px;
}
#top main .inner .row .content #kaigo h2 {
  color: #b5871b;
}
#top main .inner .row .content #kaigo h2::before, #top main .inner .row .content #kaigo h2::after {
  background: #b5871b;
}
#top main .inner .row .content #kaigo .sec_row .txt {
  width: 65%;
  padding-right: 20px;
}
#top main .inner .row .content #kaigo .sec_row .txt .main {
  font-size: 20px;
  line-height: 1.5;
  color: #b5871b;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}
#top main .inner .row .content #kaigo .sec_row .txt .desc {
  font-size: 15px;
  text-align: justify;
}
#top main .inner .row .content #kaigo .sec_row .txt .btn {
  margin-top: 15px;
}
#top main .inner .row .content #kaigo .sec_row .txt .btn a {
  background: #b5871b;
  margin: 0 0 0 auto;
}
#top main .inner .row .content #kaigo .sec_row .img_area {
  width: 35%;
}
#top main .inner .row .content #kaigo .sec_row .img_area .img {
  margin-bottom: 10px;
}
#top main .inner .row .content #kaigo .sec_row .img_area .position {
  font-size: 14px;
}
#top main .inner .row .content #kaigo .sec_row .img_area .name {
  font-size: 14px;
  font-weight: 500;
}
#top main .inner .row .content #kaigo .sec_row .img_area .name span {
  font-size: 18px;
  margin-right: 5px;
}
#top main .inner .row .content #shittoku {
  background: #fff url(../img/sec_bg_green.png) repeat-x top center/17px;
  margin-top: 15px;
}
#top main .inner .row .content #shittoku h2 {
  color: #8caf42;
}
#top main .inner .row .content #shittoku h2::before, #top main .inner .row .content #shittoku h2::after {
  background: #8caf42;
}
#top main .inner .row .content #shittoku .sec_row {
  position: relative;
}
#top main .inner .row .content #shittoku .sec_row .txt_area {
  display: flex;
}
#top main .inner .row .content #shittoku .sec_row .txt_area .person {
  width: 100px;
  height: 130px;
}
#top main .inner .row .content #shittoku .sec_row .txt_area .person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top main .inner .row .content #shittoku .sec_row .txt_area .txt {
  padding-left: 15px;
}
#top main .inner .row .content #shittoku .sec_row .txt_area .txt h3 {
  color: #8caf42;
  font-weight: 400;
  margin-bottom: 5px;
}
#top main .inner .row .content #shittoku .sec_row .txt_area .txt .main {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
#top main .inner .row .content #shittoku .sec_row .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
#top main .inner .row .content #shittoku .sec_row .btn a {
  background: #8caf42;
}
#top main .inner .row .content #zoomup {
  background: #fff url(../img/sec_bg_purple.png) repeat-x top center/17px;
  margin-top: 15px;
}
#top main .inner .row .content #zoomup h2 {
  color: #ae4ea5;
}
#top main .inner .row .content #zoomup h2::before, #top main .inner .row .content #zoomup h2::after {
  background: #ae4ea5;
}
#top main .inner .row .content #zoomup .sec_row {
  position: relative;
}
#top main .inner .row .content #zoomup .sec_row .txt_area {
  display: flex;
}
#top main .inner .row .content #zoomup .sec_row .txt_area .person {
  width: 100px;
  height: 130px;
  flex-shrink: 0;
}
#top main .inner .row .content #zoomup .sec_row .txt_area .person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top main .inner .row .content #zoomup .sec_row .txt_area .txt {
  padding-left: 15px;
}
#top main .inner .row .content #zoomup .sec_row .txt_area .txt h3 {
  color: #ae4ea5;
  font-weight: 400;
  margin-bottom: 5px;
}
#top main .inner .row .content #zoomup .sec_row .txt_area .txt .main {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
#top main .inner .row .content #zoomup .sec_row .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
#top main .inner .row .content #zoomup .sec_row .btn a {
  background: #ae4ea5;
}

@media (max-width: 1040px) {
  #top #mv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 20px;
  }
  #top #mv::before {
    width: 150px;
    order: 2;
    top: 0;
    position: relative;
  }
  #top #mv .inner {
    order: 1;
    margin: 0;
  }
  #top #mv .inner h1 {
    margin-bottom: 10px;
  }
  #top #mv .inner h1 img {
    width: 270px;
  }
  #top #mv .inner .number img {
    width: 80px;
  }
  #top main .inner .row aside {
    margin-top: 15px;
    width: 100%;
    order: 2;
  }
  #top main .inner .row aside #bnr_area ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 610px;
    max-width: 100%;
    margin: 0 auto;
  }
  #top main .inner .row aside #bnr_area ul li img {
    max-width: 300px;
  }
  #top main .inner .row aside #bnr_area ul li:nth-child(2n) {
    margin-left: 10px;
  }
  #top main .inner .row .content {
    width: 100%;
    order: 1;
  }
}
@media (max-width: 768px) {
  #top #mv {
    padding: 0 2%;
    height: 150px;
  }
  #top #mv .inner {
    width: auto;
  }
  #top #mv .inner h1 img {
    width: 220px;
  }
  #top main .inner .row aside #news .news_list .item .date {
    font-size: 12px;
  }
  #top main .inner .row aside #news .news_list .item .ttl {
    font-size: 13px;
  }
  #top main .inner .row aside #news .news_list .item .link {
    margin-top: 5px;
  }
  #top main .inner .row aside #bnr_area ul {
    flex-direction: column;
    align-items: center;
  }
  #top main .inner .row aside #bnr_area ul li:nth-child(2n) {
    margin-left: 0;
  }
  #top main .inner .row .content section h2 {
    font-size: 16px;
  }
  #top main .inner .row .content section .sec_row {
    flex-direction: column;
  }
  #top main .inner .row .content #kaigo .sec_row .txt {
    width: 100%;
    order: 2;
    padding-right: 0;
  }
  #top main .inner .row .content #kaigo .sec_row .txt .main {
    font-size: 16px;
  }
  #top main .inner .row .content #kaigo .sec_row .txt .desc {
    font-size: 13px;
  }
  #top main .inner .row .content #kaigo .sec_row .img_area {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }
  #top main .inner .row .content #kaigo .sec_row .img_area .img img {
    width: 200px;
  }
  #top main .inner .row .content #kaigo .sec_row .img_area .position {
    font-size: 12px;
  }
  #top main .inner .row .content #shittoku .sec_row {
    align-items: center;
  }
  #top main .inner .row .content #shittoku .sec_row .txt_area {
    width: 100%;
  }
  #top main .inner .row .content #shittoku .sec_row .txt_area .person {
    width: 70px;
    height: 90px;
  }
  #top main .inner .row .content #shittoku .sec_row .txt_area .txt {
    width: calc(100% - 70px);
  }
  #top main .inner .row .content #shittoku .sec_row .txt_area .txt h3 {
    font-size: 14px;
  }
  #top main .inner .row .content #shittoku .sec_row .txt_area .txt .main {
    font-size: 16px;
    margin-bottom: 33px;
  }
  #top main .inner .row .content #shittoku .sec_row .txt_area .txt .main br {
    display: none;
  }
  #top main .inner .row .content #shittoku .sec_row .btn {
    margin-top: 20px;
  }
  #top main .inner .row .content #shittoku .sec_row .btn a {
    margin: 0 auto;
  }
  #top main .inner .row .content #zoomup .sec_row {
    align-items: center;
  }
  #top main .inner .row .content #zoomup .sec_row .txt_area {
    width: 100%;
  }
  #top main .inner .row .content #zoomup .sec_row .txt_area .person {
    width: 70px;
    height: 90px;
  }
  #top main .inner .row .content #zoomup .sec_row .txt_area .txt {
    width: calc(100% - 70px);
  }
  #top main .inner .row .content #zoomup .sec_row .txt_area .txt h3 {
    font-size: 14px;
  }
  #top main .inner .row .content #zoomup .sec_row .txt_area .txt .main {
    font-size: 16px;
    margin-bottom: 33px;
  }
  #top main .inner .row .content #zoomup .sec_row .txt_area .txt .main br {
    display: none;
  }
  #top main .inner .row .content #zoomup .sec_row .btn {
    margin-top: 20px;
  }
  #top main .inner .row .content #zoomup .sec_row .btn a {
    margin: 0 auto;
  }
}
.kasou #mv {
  height: 150px;
  margin-bottom: 20px;
}
.kasou #mv .inner {
  background: url(../img/mv.jpg) no-repeat top left 300px/contain;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.kasou #mv .inner h1 {
  margin-bottom: 10px;
}
.kasou #mv .inner h1 img {
  width: 270px;
}
.kasou #mv .inner .number {
  margin-left: 90px;
}
.kasou #mv .inner .number img {
  width: 80px;
}
.kasou main .inner section .sec_row:not(:first-child) {
  margin-top: 40px;
}
.kasou main .inner section .sec_row.mgt0 {
  margin-top: 0;
}
.kasou main .inner section .sec_row .img_area {
  width: 300px;
}
.kasou main .inner section .sec_row .img_area .img {
  margin-bottom: 10px;
  padding-top: 6px;
}
.kasou main .inner section .sec_row .img_area .img.no_pdg {
  padding-top: 0;
}
.kasou main .inner section .sec_row .img_area .img img {
  width: 100%;
}
.kasou main .inner section .sec_row .img_area .img .caption {
  margin-top: 5px;
  font-size: 12px;
  text-align: center;
  display: block;
}
.kasou main .inner section .sec_row .img_area .position {
  font-size: 14px;
}
.kasou main .inner section .sec_row .img_area .name {
  font-size: 14px;
  font-weight: 500;
}
.kasou main .inner section .sec_row .img_area .name span {
  font-size: 18px;
  margin-right: 5px;
}
.kasou main .inner section .sec_row .img_area .profile {
  font-size: 12px;
  margin-top: 20px;
}
.kasou main .inner section .sec_row .txt_area {
  width: calc(100% - 300px);
  padding-left: 20px;
}
.kasou main .inner section .sec_row .txt_area.full {
  width: 100%;
  padding-left: 0;
}
.kasou main .inner section .sec_row .txt_area h3 {
  font-size: 26px;
  line-height: 1.5;
  color: #f18b00;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
}
.kasou main .inner section .sec_row .txt_area h4 {
  font-size: 22px;
  color: #f18b00;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
}
.kasou main .inner section .sec_row .txt_area h4:not(:first-child) {
  margin-top: 40px;
}
.kasou main .inner section .sec_row .txt_area h4.small {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.kasou main .inner section .sec_row .txt_area p {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}
.kasou main .inner section .sec_row .txt_area p:not(:last-child) {
  margin-bottom: 1em;
}
.kasou main .inner section .sec_row .txt_area p a {
  color: #f18b00;
  text-decoration: underline;
}
.kasou main .inner section .sec_row .txt_area .img .caption {
  margin-top: 5px;
  font-size: 12px;
  text-align: center;
  display: block;
}
.kasou main .inner section .sec_row .txt_area .introduction {
  margin-top: 40px;
  background: rgba(0, 123, 199, 0.15);
  padding: 20px;
}
.kasou main .inner section .sec_row .txt_area .introduction .ttl {
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 5px;
  border-bottom: 1px solid #444;
  border-left: 6px solid;
  padding-left: 10px;
  font-weight: bold;
}
.kasou main .inner section .sec_row .txt_area .introduction .address a {
  color: #3d90b6;
  text-decoration: underline;
}
.kasou main .inner section .sec:not(:last-child) {
  margin-bottom: 60px;
}
.kasou main .inner section .sec h3 {
  color: #7084be;
  font-weight: bold;
  border-top: 2px solid #7084be;
  border-bottom: 2px solid #7084be;
  margin-bottom: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.kasou main .inner section .sec h3::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #7084be;
  transform: rotate(45deg);
  margin-right: 10px;
}
.kasou main .inner section .sec .group:not(:last-child) {
  margin-bottom: 30px;
}
.kasou main .inner section .sec .group h4 {
  color: #7084be;
  font-weight: bold;
  margin-bottom: 10px;
}
.kasou main .inner section .sec .group table tr th {
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #444;
  padding: 10px 5px;
  background: #7084be;
  color: #fff;
}
.kasou main .inner section .sec .group table tr th:nth-child(1) {
  width: 20%;
}
.kasou main .inner section .sec .group table tr th:nth-child(2) {
  width: 10%;
}
.kasou main .inner section .sec .group table tr th:nth-child(3) {
  width: 10%;
}
.kasou main .inner section .sec .group table tr th:nth-child(4) {
  width: 10%;
}
.kasou main .inner section .sec .group table tr th:nth-child(5) {
  width: 30%;
}
.kasou main .inner section .sec .group table tr td {
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #444;
  padding: 5px;
}
.kasou main .inner section .sec .group table tr td:nth-child(2n) {
  background: #e9eaf4;
}
.kasou main .inner section .sec .group table tr td:nth-child(4) {
  text-align: center;
}
.kasou main .inner #main {
  min-height: 400px;
}
.kasou main .inner #main .coming {
  text-align: center;
  color: #888;
  font-size: 20px;
  margin-top: 100px;
}
.kasou main .inner #main .sec_row .txt_area .name {
  margin-top: 55px;
  background: #f18b00;
  color: #fff;
  padding: 2px 15px 4px;
  font-size: 20px;
  font-weight: 500;
  margin-right: -20px;
}

@media (max-width: 1040px) {
  .kasou #mv .inner {
    width: 420px;
    background-position: 270px;
  }
  .kasou #mv .inner .number {
    margin-left: 70px;
  }
}
@media (max-width: 1000px) {
  .kasou main .inner section .sec .group .table_wrap {
    overflow: auto;
  }
  .kasou main .inner section .sec .group .table_wrap table {
    width: 1000px;
  }
}
@media (max-width: 900px) {
  .kasou #mv .inner {
    max-width: 360px;
    background-position: right;
    background-size: 140px;
  }
  .kasou #mv .inner h1 img {
    width: 220px;
  }
  .kasou main .inner section .sec_row .img_area {
    width: 30%;
  }
  .kasou main .inner section .sec_row .txt_area {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .kasou main .inner section h2 {
    font-size: 18px;
  }
  .kasou main .inner section h2 + .sec_row {
    margin-top: 0 !important;
  }
  .kasou main .inner section .sec_row {
    flex-direction: column;
  }
  .kasou main .inner section .sec_row .img_area {
    width: 100%;
    order: 2;
    margin: 0 auto;
    text-align: center;
  }
  .kasou main .inner section .sec_row .img_area img {
    max-width: 200px;
  }
  .kasou main .inner section .sec_row .txt_area {
    width: 100%;
    order: 1;
    padding-left: 0;
    margin-bottom: 30px;
  }
  .kasou main .inner section .sec_row .txt_area p {
    font-size: 13px;
    word-break: break-all;
  }
  .kasou main .inner section .sec_row .txt_area h4 {
    font-size: 16px;
  }
  .kasou main .inner section .sec_row .txt_area .introduction .ttl {
    font-size: 16px;
  }
  .kasou main .inner section .sec_row .txt_area .introduction .address a {
    word-break: break-all;
  }
  .kasou main .inner section .sec h3 {
    font-size: 18px;
  }
  .kasou main .inner section .sec .group h4 {
    font-size: 14px;
  }
  .kasou main .inner section .sec .group .table_wrap table {
    width: 780px;
  }
  .kasou main .inner section .sec .group .table_wrap table tr th {
    font-size: 12px;
  }
  .kasou main .inner section .sec .group .table_wrap table tr td {
    font-size: 12px;
  }
  .kasou main .inner #main .sec_row .txt_area h3 {
    font-size: 16px;
  }
  .kasou main .inner #main .sec_row .txt_area .name {
    margin-left: -20px;
    font-size: 13px;
    text-align: center;
  }
  .kasou main .inner #main .sec_row .img_area .position {
    font-size: 12px;
  }
}
#kaigo main .inner #main {
  background: #fff url(../img/sec_bg_orange.png) repeat-x top center/17px;
}
#kaigo main .inner #main h2 {
  color: #b5871b;
}
#kaigo main .inner #main h2::before, #kaigo main .inner #main h2::after {
  background: #b5871b;
}
#kaigo main .inner #main .sec_row .txt_area h3 {
  color: #b5871b;
}
#kaigo main .inner #main .sec_row .txt_area .name {
  background: #b5871b;
}
#kaigo main .inner #main .sec_row .txt_area h4 {
  color: #b5871b;
}
#kaigo main .inner #main .sec_row .txt_area .introduction .ttl {
  border-left-color: #b5871b;
}

@media (max-width: 768px) {
  #kaigo main .inner .sec_row .txt_area .introduction {
    margin-top: 0;
  }
}
#topics main .inner #main {
  background: #fff url(../img/sec_bg_green.png) repeat-x top center/17px;
}
#topics main .inner #main h2 {
  color: #7ac46b;
  margin-bottom: 40px;
}
#topics main .inner #main h2::before, #topics main .inner #main h2::after {
  background: #7ac46b;
}
#topics main .inner #main .sec_row .txt_area h3 {
  color: #7ac46b;
}
#topics main .inner #main .sec_row .txt_area .name {
  background: #7ac46b;
}
#topics main .inner #main .sec_row .txt_area h4 {
  color: #7ac46b;
}
#topics main .inner #main .sec_row .txt_area .introduction .ttl {
  border-left-color: #7ac46b;
}
#topics main .inner #main .sec .ttl_area {
  margin-bottom: 40px;
}
#topics main .inner #main .sec .ttl_area .sub {
  color: #3a3e84;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}
#topics main .inner #main .sec .ttl_area h3 {
  background: #3a3e84;
  color: #fff;
  font-size: 30px;
  border: none;
  display: block;
  text-align: center;
  position: relative;
  padding: 20px 0;
}
#topics main .inner #main .sec .ttl_area h3 .time {
  margin: 0 0.5em;
}
#topics main .inner #main .sec .ttl_area h3::before {
  width: calc(100% - 20px);
  height: 2px;
  background: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  transform: none;
  margin-right: 0;
}
#topics main .inner #main .sec .ttl_area h3::after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: none;
  margin-right: 0;
}
#topics main .inner #main .sec .ttl_area .desc {
  font-size: 14px;
  line-height: 1.8;
  padding: 0 10px;
}

@media (max-width: 768px) {
  #topics main .inner #main .sec .ttl_area .sub {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.5;
  }
  #topics main .inner #main .sec .ttl_area .sub span {
    font-size: 11px;
    line-height: 1.2;
    margin-left: 5px;
    padding: 2px 5px 4px;
  }
  #topics main .inner #main .sec .ttl_area h3 {
    font-size: 20px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  #topics main .inner #main .sec .ttl_area h3::before {
    width: calc(100% - 10px);
    height: 1px;
    top: 5px;
    left: 5px;
  }
  #topics main .inner #main .sec .ttl_area h3::after {
    width: calc(100% - 10px);
    height: 1px;
    bottom: 5px;
    left: 5px;
  }
  #topics main .inner #main .sec .ttl_area .desc {
    padding: 0;
    font-size: 12px;
  }
}
#equipment main .inner #main {
  background: #fff url(../img/sec_bg_pink.png) repeat-x top center/17px;
}
#equipment main .inner #main h2 {
  color: #e3688d;
}
#equipment main .inner #main h2::before, #equipment main .inner #main h2::after {
  background: #e3688d;
}
#equipment main .inner #main .sec_row .txt_area h3 {
  color: #e3688d;
}
#equipment main .inner #main .sec_row .txt_area .name {
  background: #e3688d;
}
#equipment main .inner #main .sec_row .txt_area h4 {
  color: #e3688d;
}
#equipment main .inner #main .sec_row .txt_area .introduction .ttl {
  border-left-color: #e3688d;
}
#equipment main .inner #main .voice {
  margin-top: 60px;
  background: #f1f9fe;
  border: 1px solid #005bac;
}
#equipment main .inner #main .voice h3 {
  background: #005bac;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#equipment main .inner #main .voice h3::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #e6acae;
  transform: rotate(45deg);
  margin-right: 10px;
}
#equipment main .inner #main .voice h3::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #e6acae;
  transform: rotate(45deg);
  margin-left: 10px;
}
#equipment main .inner #main .voice .row {
  display: flex;
  padding: 20px;
}
#equipment main .inner #main .voice .row .imgs {
  width: 200px;
}
#equipment main .inner #main .voice .row .imgs .img {
  margin-bottom: 10px;
}
#equipment main .inner #main .voice .row .imgs .img img {
  width: 100%;
}
#equipment main .inner #main .voice .row .imgs .position {
  font-size: 14px;
}
#equipment main .inner #main .voice .row .imgs .name {
  font-weight: bold;
  font-size: 20px;
}
#equipment main .inner #main .voice .row .txt {
  width: calc(100% - 200px);
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  text-indent: 1em;
}
#equipment main .inner #main .introduction {
  margin-top: 40px;
  border: 1px solid #8fc31f;
  padding: 20px;
}
#equipment main .inner #main .introduction h3 {
  color: #fff;
  background: #8fc31f;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}
#equipment main .inner #main .introduction .sec h5 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #8fc31f;
}
#equipment main .inner #main .introduction .sec .table_wrap {
  overflow: auto;
}
#equipment main .inner #main .introduction .sec .table_wrap table {
  min-width: 100%;
}
#equipment main .inner #main .introduction .sec .table_wrap table tr th {
  border: 1px solid #8fc31f;
  padding: 5px 10px;
  text-align: left;
  font-size: 14px;
  background: #cadf9e;
  width: 150px;
}
#equipment main .inner #main .introduction .sec .table_wrap table tr td {
  border: 1px solid #8fc31f;
  padding: 10px;
  font-size: 14px;
}
#equipment main .inner #main .introduction .sec .table_wrap table:not(:last-child) {
  margin-bottom: 10px;
}
#equipment main .inner #main .introduction .sec .desc {
  margin-top: 10px;
  font-size: 14px;
}
#equipment main .inner #main .introduction .sec_row {
  margin-top: 20px;
}
#equipment main .inner #main .introduction .sec_row .img_area {
  width: 250px;
}
#equipment main .inner #main .introduction .sec_row .txt_area {
  width: calc(100% - 250px);
}
#equipment main .inner #main .introduction .sec_row .txt_area h5 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #8fc31f;
}
#equipment main .inner #main .introduction .sec_row .txt_area .table_wrap {
  overflow: auto;
}
#equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table {
  min-width: 100%;
}
#equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table tr th {
  border: 1px solid #8fc31f;
  padding: 5px 10px;
  text-align: left;
  font-size: 14px;
  background: #cadf9e;
  width: 150px;
}
#equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table tr td {
  border: 1px solid #8fc31f;
  padding: 10px;
  font-size: 14px;
}
#equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table:not(:last-child) {
  margin-bottom: 10px;
}
#equipment main .inner #main .introduction .sec_row .txt_area .desc {
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  #equipment main .inner #main .voice .row {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  #equipment main .inner #main h2 {
    flex-direction: column;
    align-items: flex-start;
  }
  #equipment main .inner #main h2 span {
    margin-top: 5px;
  }
  #equipment main .inner #main .sec_row .txt_area h3 {
    font-size: 15px;
  }
  #equipment main .inner #main .voice .row {
    flex-direction: column;
    padding: 15px;
  }
  #equipment main .inner #main .voice .row .imgs {
    width: 100%;
    order: 2;
    margin-top: 20px;
    text-align: center;
  }
  #equipment main .inner #main .voice .row .imgs .img img {
    width: 70%;
  }
  #equipment main .inner #main .voice .row .txt {
    width: 100%;
    padding-left: 0;
    order: 1;
    font-size: 13px;
    line-height: 1.7;
  }
  #equipment main .inner #main .introduction {
    padding: 15px;
  }
  #equipment main .inner #main .introduction h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  #equipment main .inner #main .introduction h4 {
    font-size: 18px;
  }
  #equipment main .inner #main .introduction .sec h5 {
    font-size: 16px;
  }
  #equipment main .inner #main .introduction .sec .table_wrap table tr th {
    padding: 3px 7px;
    font-size: 12px;
    width: 100%;
    display: block;
    border-bottom: 0;
  }
  #equipment main .inner #main .introduction .sec .table_wrap table tr td {
    padding: 3px 7px;
    font-size: 12px;
    width: 100%;
    display: block;
  }
  #equipment main .inner #main .introduction .sec .table_wrap table tr:not(:last-child) td {
    border-bottom: 0;
  }
  #equipment main .inner #main .introduction .sec_row .img_area {
    order: 1;
  }
  #equipment main .inner #main .introduction .sec_row .txt_area {
    width: 100%;
    order: 2;
  }
  #equipment main .inner #main .introduction .sec_row .txt_area h5 {
    font-size: 16px;
  }
  #equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table tr th {
    padding: 3px 7px;
    font-size: 12px;
    width: 100%;
    display: block;
    border-bottom: 0;
  }
  #equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table tr td {
    padding: 3px 7px;
    font-size: 12px;
    width: 100%;
    display: block;
  }
  #equipment main .inner #main .introduction .sec_row .txt_area .table_wrap table tr:not(:last-child) td {
    border-bottom: 0;
  }
}
#hibi main .inner #main {
  background: #fff url(../img/sec_bg_gray.png) repeat-x top center/17px;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 100px;
}
#hibi main .inner #main h2 {
  color: #aaa;
}
#hibi main .inner #main h2::before, #hibi main .inner #main h2::after {
  background: #aaa;
}
#hibi main .inner #main .img {
  text-align: center;
}
#hibi main .inner #main .intro_txt {
  font-size: 18px;
  line-height: 3;
  padding-left: 60px;
}
#hibi main .inner #main .after_txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
}
#hibi main .inner #main .name {
  margin-top: 60px;
}
#hibi main .inner #main .name img {
  width: 200px;
}

@media (max-width: 768px) {
  #hibi main .inner #main .intro_txt {
    margin-top: 20px;
    padding-left: 0;
    font-size: 15px;
  }
  #hibi main .inner #main .after_txt {
    margin-top: 40px;
    padding-left: 0;
    font-size: 13px;
  }
}
#shittoku main .inner #main {
  background: #fff url(../img/sec_bg_green.png) repeat-x top center/17px;
}
#shittoku main .inner #main h2 {
  color: #8caf42;
}
#shittoku main .inner #main h2::before, #shittoku main .inner #main h2::after {
  background: #8caf42;
}
#shittoku main .inner #main .sec_row .txt_area h3 {
  color: #8caf42;
  font-size: 25px;
}
#shittoku main .inner #main .sec_row .txt_area .name {
  background: #8caf42;
}
#shittoku main .inner #main .sec_row .txt_area h4 {
  color: #8caf42;
}
#shittoku main .inner #main .sec_row .txt_area .introduction .ttl {
  border-left-color: #8caf42;
}

@media (max-width: 768px) {
  #shittoku main .inner #main .sec_row .txt_area h3 {
    font-size: 18px;
  }
  #shittoku main .inner #main .sec_row .txt_area h3 br {
    display: none;
  }
}
#zoomup main .inner #main {
  background: #fff url(../img/sec_bg_purple.png) repeat-x top center/17px;
}
#zoomup main .inner #main h2 {
  color: #ae4ea5;
}
#zoomup main .inner #main h2::before, #zoomup main .inner #main h2::after {
  background: #ae4ea5;
}
#zoomup main .inner #main .sec_row .txt_area h3 {
  color: #ae4ea5;
  font-size: 25px;
}
#zoomup main .inner #main .sec_row .txt_area .name {
  background: #ae4ea5;
}
#zoomup main .inner #main .sec_row .txt_area h4 {
  color: #ae4ea5;
}
#zoomup main .inner #main .sec_row .txt_area .introduction .ttl {
  border-left-color: #ae4ea5;
}

@media (max-width: 768px) {
  #zoomup main .inner #main .sec_row .txt_area h3 {
    font-size: 16px;
  }
  #zoomup main .inner section .sec_row .txt_area .introduction {
    margin-top: 0;
  }
  #zoomup main .inner section .sec_row:nth-child(3) .txt_area {
    order: 2;
    margin-bottom: 0;
  }
  #zoomup main .inner section .sec_row:nth-child(3) .img_area {
    margin-bottom: 30px;
    order: 1;
    text-align: left;
  }
}
#homecare main .inner #main {
  background: #fff url(../img/sec_bg_blue.png) repeat-x top center/17px;
}
#homecare main .inner #main h2 {
  color: #3698cd;
}
#homecare main .inner #main h2::before, #homecare main .inner #main h2::after {
  background: #3698cd;
}
#homecare main .inner #main .sec_row .img_area .example {
  border: 1px solid #154577;
  padding: 15px;
}
#homecare main .inner #main .sec_row .img_area .example h4 {
  background: #154577;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 10px;
  padding: 5px 0;
  font-size: 18px;
}
#homecare main .inner #main .sec_row .img_area .example .img {
  text-align: center;
}
#homecare main .inner #main .sec_row .img_area .example .img img {
  max-width: 200px;
}
#homecare main .inner #main .sec_row .txt_area h3 {
  color: #3698cd;
  font-size: 25px;
}
#homecare main .inner #main .sec_row .txt_area .name {
  background: #3698cd;
  margin-top: 0;
}
#homecare main .inner #main .sec_row .txt_area h4 {
  color: #3698cd;
}
#homecare main .inner #main .example_overview {
  margin-top: 30px;
  border: 1px solid #154577;
  padding: 15px;
}
#homecare main .inner #main .example_overview .ttl_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}
#homecare main .inner #main .example_overview .ttl_area .user_info {
  display: flex;
  align-items: center;
}
#homecare main .inner #main .example_overview .ttl_area .user_info h4 {
  background: #154577;
  color: #fff;
  border-radius: 10px;
  padding: 8px 20px 10px;
  margin-right: 15px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0;
}
#homecare main .inner #main .example_overview .ttl_area .user_info .user_name {
  font-weight: bold;
  margin-right: 15px;
  margin-bottom: 0;
}
#homecare main .inner #main .example_overview .ttl_area .user_info .status {
  background: #962b2b;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  padding: 4px 10px 5px;
}
#homecare main .inner #main .example_overview .detail p {
  text-indent: -5em;
  margin-left: 5em;
}
#homecare main .inner #main .example_overview .detail p.no_indent {
  text-indent: 0;
  margin-left: 0;
}
#homecare main .inner #main .detail_table {
  margin-top: 30px;
}
#homecare main .inner #main .detail_table .red {
  font-weight: bold;
}
#homecare main .inner #main .detail_table p {
  font-size: 14px;
}
#homecare main .inner #main .detail_table .table_wrap {
  margin-top: 10px;
  overflow: auto;
}
#homecare main .inner #main .detail_table .table_wrap table {
  white-space: nowrap;
  min-width: 100%;
}
#homecare main .inner #main .detail_table .table_wrap table tr th {
  border: 1px solid #000;
  padding: 5px 10px;
  font-size: 14px;
}
#homecare main .inner #main .detail_table .table_wrap table tr td {
  border: 1px solid #000;
  padding: 5px 10px;
  font-size: 14px;
}
#homecare main .inner #main .detail_table .table_wrap table tr td:nth-child(1) {
  text-align: right;
}
#homecare main .inner #main .detail_table .table_wrap table tr td:nth-child(1).bg {
  text-align: left;
}
#homecare main .inner #main .detail_table .table_wrap table tr td:nth-child(2), #homecare main .inner #main .detail_table .table_wrap table tr td:nth-child(3) {
  text-align: right;
}
#homecare main .inner #main .detail_table .table_wrap table tr td.bg {
  background: #eee;
}
#homecare main .inner #main .detail_table .table_wrap table tr td.empty {
  background-image: linear-gradient(to right bottom, transparent calc(50% - 0.5px), #000 50%, #000 calc(50% + 0.5px), transparent calc(50% + 1px));
}
#homecare main .inner #main .detail_table .notice {
  margin-top: 10px;
}
#homecare main .inner #main .point {
  margin-top: 60px;
  border: 1px solid #154577;
  padding-bottom: 20px;
}
#homecare main .inner #main .point h3 {
  background: #154577;
  color: #fff;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
}
#homecare main .inner #main .point .sec_row {
  padding: 0 20px;
}
#homecare main .inner #main .point .sec_row .main_txt {
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  color: #962b2b;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  #homecare main .inner #main h2 {
    flex-direction: column;
    align-items: flex-start;
  }
  #homecare main .inner #main h2 span {
    margin-top: 5px;
  }
  #homecare main .inner #main .sec_row .txt_area h3 {
    font-size: 19px;
    margin-bottom: 15px;
  }
  #homecare main .inner #main .example_overview {
    margin-top: 0;
    padding: 10px;
  }
  #homecare main .inner #main .example_overview .ttl_area {
    flex-direction: column;
  }
  #homecare main .inner #main .example_overview .ttl_area .user_info {
    flex-direction: column;
    width: 100%;
  }
  #homecare main .inner #main .example_overview .ttl_area .user_info h4 {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
  }
  #homecare main .inner #main .example_overview .ttl_area .user_info .user_name {
    margin-right: 0;
  }
  #homecare main .inner #main .example_overview .ttl_area .user_info .status {
    margin-top: 5px;
  }
  #homecare main .inner #main .example_overview .ttl_area .date {
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
  }
  #homecare main .inner #main .example_overview .detail {
    font-size: 12px;
  }
  #homecare main .inner #main .detail_table .table_wrap table tr th {
    font-size: 12px;
    padding: 3px 10px;
  }
  #homecare main .inner #main .detail_table .table_wrap table tr td {
    font-size: 12px;
    padding: 3px 10px;
  }
  #homecare main .inner #main .detail_table .notice {
    font-size: 12px;
  }
  #homecare main .inner #main .point {
    margin-top: 30px;
  }
  #homecare main .inner #main .point h3 {
    font-size: 16px;
  }
  #homecare main .inner #main .point .sec_row {
    padding: 0 15px;
  }
  #homecare main .inner #main .point .sec_row:not(:first-child) {
    margin-top: 20px;
  }
  #homecare main .inner #main .point .sec_row .txt_area {
    margin-bottom: 0;
  }
  #homecare main .inner #main .point .sec_row .txt_area .main_txt {
    font-size: 16px;
  }
}
#grants main .inner #main {
  background: #fff url(../img/sec_bg_sax.png) repeat-x top center/17px;
}
#grants main .inner #main h2 {
  color: #4768d4;
}
#grants main .inner #main h2::before, #grants main .inner #main h2::after {
  background: #4768d4;
}
#grants main .inner #main .sec_row .txt_area h3 {
  color: #4768d4;
  font-size: 25px;
}
#grants main .inner #main .sec_row .txt_area .sub {
  color: rgb(209, 57, 57);
  font-weight: bold;
  font-size: 16px;
}
#grants main .inner #main .sec_row .txt_area .name {
  background: #4768d4;
}
#grants main .inner #main .sec_row .txt_area h4 {
  color: #4768d4;
}
#grants main .inner #main .sec_row .txt_area .introduction .ttl {
  border-left-color: #4768d4;
}

@media (max-width: 768px) {
  #grants main .inner #main h2 {
    flex-direction: column;
    align-items: flex-start;
  }
  #grants main .inner #main h2 span {
    margin-top: 5px;
  }
  #grants main .inner #main .sec_row .txt_area .sub {
    font-size: 13px;
  }
  #grants main .inner #main .sec_row .txt_area h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #grants main .inner #main .sec_row .txt_area .introduction {
    margin-top: 0;
  }
}/*# sourceMappingURL=style.css.map */