@charset "utf-8";

/* ----------------------------------------------------------
 base css
---------------------------------------------------------- */

/* root
--------------------------------------- */
:root {
  --color-white: #ffffff;
  --color-black: #231815;
  --color-yellow: #FDCC37;
  --color-blue: #5486AC;
  --color-coral: #EF8575;
  --color-orange: #F18E32;
  --color-purple: #D9A0BA;
  --color-green: #6DB27F;
  --color-red: #EB6143;
  --color-brown: #C7A46F;
  --color-lightyellow:#FDF7E0;
  --inner: 2rem;
  --radius: 1rem;
}


/* base,responsive
--------------------------------------- */
body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: 1.75em;
  color: var(--color-black);
  background: url(../images/back.webp) repeat;
  min-width: 1200px;
}
.wrapper {
  overflow-x: hidden;
}
* {
  transition: .2s;
}
a {
  display: block;
  color: var(--color-black);
  transition: 0.3s;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  .sp {
    display: none !important;
  }
  .wrap {
    width: 85%;
    min-width: 1000px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .inner {
    width: 90%;
    margin: 0 auto;
  }
  body .wrapper {
    display: flex;
    flex-direction: column;
    /* height: 100vh; */
  }
  footer {
    margin-top: auto;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  html,
  p {
    text-align: left;
  }
  body {
    min-width: initial;
  }
  .pc {
    display: none !important;
  }
  .wrap {
    width: 84%;
    margin: 0 auto;
  }
  .zen {
    font-size: 1rem;
  }
}


/* ----------------------------------------------------------
 Loading
---------------------------------------------------------- */
#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  background-color: var(--color-yellow);
}
#logo_loader .loader_logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 80px;
  margin: auto;
  color: #fff;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width : 768px) { /* SP */
  #logo_loader .loader_logo {
    width: 50vw;
  }
}
#logo_loader .loader_logo:before {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 110%;
  background-color: var(--color-yellow);
  content: "";
  animation: loadLogo 0.5s;
}
@keyframes loadLogo {
  0% { left: 0; }
  50% { left: 0; }
  100% { left: 100%; }
}
#logo_loader .loader_logo img {
  width: 100%;
  height: auto;
}
#logo_loader.open {
  animation-name: slideOut;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes slideOut {
  0% { transform: translateX(0%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}


/* ----------------------------------------------------------
 header,nav
---------------------------------------------------------- */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: var(--color-white);
}
header.is-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0px 10px #cccccc;
  background-color: rgb(255 255 255 / 0.9);
}
header .sitetitle a img {
  width: 100%;
}
header .sitetitle a img:hover {
  opacity: 0.7;
  transition: .3s;
}
header nav li {
  font-weight: 500;
}

/* ハンバーガーメニュー */
.drawerbox {
  position: relative;
  bottom: 0;
  right: 0;
}
#nav-toggle {
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1000;
}
#nav-toggle div {
  position: relative;
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  background-color: #d19563;
  transition: 0.3s;
}
#nav-toggle div:after {
  content: "MENU";
  position: absolute;
  right: 0;
  bottom: 20px;
  font-weight: 500;
  font-size: 13px;
  display: block;
  line-height: 0;
  width: 100%;
  text-align: center;
}
#nav-toggle div span {
  width: 55%;
  height: 2px;
  left: 22.5%;  
  display: block;
  background: var(--color-black);
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle div span:nth-child(1) {
  top: 16px;
}
#nav-toggle div span:nth-child(2) {
  top: 24px;
}
.open {
  overflow: hidden;
}
.open #nav-toggle div:after {
  display: none;
  transition: 0.6s;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 30px;
  transform: rotate(45deg);
  background-color: var(--color-black);
}
.open #nav-toggle span:nth-child(2) {
  top: 30px;
  transform: rotate(-45deg);
  background-color: var(--color-black);
}
#gloval-nav {
  background: rgba(253 204 55 / 0.98);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#gloval-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}
#gloval-nav ul li {
  width: 48%;
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
  border-bottom: 1px dotted var(--color-black);
}
#gloval-nav ul li a {
  display: block;
  padding: 0.75rem 0;
  line-height: 1.5em;
  text-decoration: none;
  transition: color 0.6s ease;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
.open #gloval-nav li a {
  transition: 0.3s;
}
.open #gloval-nav li a:hover {
  color: var(--color-white);
  transition: 0.3s;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  header {
    width: 95%;
    margin: 0 auto;
  }
  header.is-animation {
    padding-right: 1rem;
  }
  header .sitetitle {
    width: 20vw;
    min-width: 260px;
  }
  header.is-animation .sitetitle {
    margin: 1rem;
    width: 15vw;
    min-width: 200px;
  }
  .drawerbox {
    display: flex;
    align-items: center;
  }
  #sub-nav ul {
    display: flex;
    justify-content: flex-end;
  }
  #sub-nav ul li {
    margin-right: 1rem;
  }
  #sub-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .3s;
    height: 60px;
  }
  #sub-nav ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--color-yellow);
    transition: .3s;
    opacity: 0;
  }
  #sub-nav ul li a:hover:after,
  body.category-npo #sub-nav ul li:first-child a:after,
  body.npo #sub-nav ul li:first-child a:after,
  body.category-kouza #sub-nav ul li:nth-child(2) a:after,
  body.kouza #sub-nav ul li:nth-child(2) a:after,
  body.category-joseikin #sub-nav ul li:nth-child(3) a:after,
  body.joseikin #sub-nav ul li:nth-child(3) a:after,
  body.category-topics #sub-nav ul li:nth-child(4) a:after,
  body.topics #sub-nav ul li:nth-child(4) a:after {
    opacity: 1;
    transition: .3s;
  }
  #sub-nav ul li:last-child a {
    padding: 0 1em;
    background-color: var(--color-yellow);
  }
  #sub-nav ul li:last-child a:hover,
  body.kaigishitsu #sub-nav ul li:last-child a {
    padding: 0 1em;
    color: var(--color-white);
  }
  #nav-toggle div:hover {
    background-color: var(--color-yellow);
    transition: 0.3s;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  header {
    padding: 0;
    background-color: var(--color-white);
  }
  header .sitetitle {
    width: auto;
    height: 60px;
  }
  header .sitetitle a {
    display: flex;
    align-items: center;
    height: 100%;
  }
  header .sitetitle a img {
    width: auto;
    height: 60px;
  }
  header #sub-nav {
    display: none;
  }
  #gloval-nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.25vw;
  }
  #gloval-nav ul li:first-child {
    width: 100%;
  }
  #gloval-nav ul li a {
    padding: 0.5rem 0;
  }
}


/* ----------------------------------------------------------
 all - common settings
---------------------------------------------------------- */
/*　fadein
--------------------------------------- */
body:not(.home) main {
  opacity: 0;
  animation: pageFade 0.5s ease-in-out forwards;
}
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  body.home main {
    opacity: 0;
    animation: HomeFade 3s ease-in-out forwards;
  }
  @keyframes HomeFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* bg
--------------------------------------- */
.bgyellow {
  background-color: var(--color-lightyellow);
}
.bgwhite {
  background-color: var(--color-white);
}

/* h,title,p
--------------------------------------- */
p:last-of-type {
  margin-bottom: 0;
}

/* link
--------------------------------------- */
.download a {
  display: flex;
  align-items: center;
}
.download a:hover {
  color: #e62d18;
}
.download a span {
  padding-right: 1em;
  border-bottom: 1px solid var(--color-black);
}
.download a img {
  width: 4rem;
  padding-left: 0.5rem;
}
.download a:hover img {
  opacity: .6;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  .download a {
   justify-content: space-between;
  }
  .download a span {
    width: calc(100% - 5rem);
  }
}

/* ul - caution
--------------------------------------- */
ul.ul_caution li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.ul_caution li:before {
  content: "※";
}


/* ----------------------------------------------------------
 トップページ front-page.php
---------------------------------------------------------- */
/* firstview */
main.home .firstview {
  position: relative;
  width: 90%;
  height: auto;
  margin: 1rem auto 0 auto;
  padding-bottom: 2rem;
}
main.home .firstview .mainimage img {
  width: 100%;
  height: auto;
}
main.home .firstview p.text img {
  width: 100%;
  height: auto;
}
main.home .firstview p.link a {
  width: 100%;
}
main.home .firstview p.link img {
  width: 100%;
  height: auto;
  transition: .3s;
}
main.home .firstview p.link img:hover {
  opacity: .5;
  transition: .3s;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .firstview .mainimage img {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInA 0.75s ease-in-out 1.5s forwards;
  }
  @keyframes fadeInA {
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  main.home .firstview p.text {
    position: absolute;
    left: calc(10% - 2rem);
    top: 1.5vw;
    width: 44%;
    opacity: 0;
    animation: fadeInB 0.75s ease-in-out 1.5s forwards;
  }
  @keyframes fadeInB {
    to {
      left: 10%;
      opacity: 1;
    }
  }
  main.home .firstview p.link {
    position: absolute;
    left: calc(50% - 2rem);
    bottom: 2rem;
    width: 40%;
    opacity: 0;
    animation: fadeInC 0.75s ease-in-out 1.5s forwards;
  }
  @keyframes fadeInC {
    to {
      left: 50%;
      opacity: 1;
    }
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .firstview {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 1rem 2rem 1rem;
  }
  main.home .firstview p.text {
    order: 1;
  }
  main.home .firstview figure {
    order: 2;
    margin: 1rem 0 1.5rem 0;
  }
  main.home .firstview p.link {
    order: 3;
  }
}

/* news */
main.home .news {
  padding: 4rem 0 2rem 0;
}
main.home .news .wrap {
  padding: var(--inner);
  border-radius: var(--radius);
  background-color: var(--color-white);
}
main.home .news h2 {
  margin-bottom: 2rem;
  text-align: center;
}
main.home .news h2 .en {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2em;
  display: block;
  color: var(--color-yellow);
}
main.home .news h2 .ja {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  padding-left: 0.25em;
}
main.home .news ul {
  margin-bottom: 1rem;
}
main.home .news ul li {
  border-bottom: 1px solid #cccccc;
}
main.home .news ul li:first-child {
  border-top: 1px solid #cccccc;
}
main.home .news ul li a {
  display: flex;
  align-items: center;
  padding: 1rem 1em;
}
main.home .news ul li p.cat {
  width: 10em;
  margin: 0 1.5rem;
  padding: 0.125rem 0;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}
main.home .news ul li p.cat.topics {
  background-color: var(--color-blue);
}
main.home .news ul li p.cat.news {
  background-color: var(--color-coral);
}
main.home .news ul li p.cat.tsushin {
  background-color: var(--color-purple);
}
main.home .news ul li p.title:hover {
  color: #e62d18;
}
main.home .news ul li p.title:before {
  content: "〉";
}
main.home .news .more p {
  margin-right: 1rem;
  font-size: 0.95rem;
}
main.home .news .more p a:hover {
  color: #e62d18;
}
main.home .news .more a:before {
  content: "》";
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .news ul li time {
    width: 5em;
  }
  main.home .news ul li p.title {
    width: calc(100% - 15em);
  }
  main.home .news .more {
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .news {
    padding: 2rem 0;
  }
  main.home .news .wrap {
    padding: 1rem 1.5rem 2rem 1.5rem;
  }
  main.home .news h2 .ja {
    font-size: 2rem;
    letter-spacing: 0.125em;
    padding-left: 0.125em;
  }
  main.home .news h2 .en {
    font-size: 1.5rem;
  }
  main.home .news ul li a {
    flex-wrap: wrap;
  }
  main.home .news ul li p.cat {
    width: 8em;
    margin: 0 0 0 auto;
  }
  main.home .news ul li p.title {
    width: 100%;
    margin-top: 0.5rem;
  }
  main.home .news .more p {
    margin-right: 0;
  }
  main.home .news .more {
    border-radius: 0.5rem;
    overflow: hidden;
  }
  main.home .news .more p a {
    padding: 0.5rem 1em;
    border-bottom: 1px solid var(--color-white);
    background-color: var(--color-yellow);
    font-weight: 500;
  }
}

/* information */
main.home .info h2 {
  margin-bottom: 2rem;
  text-align: center;
}
main.home .info h2 .en {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2em;
  display: block;
  color: var(--color-yellow);
}
main.home .info h2 .ja {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  padding-left: 0.25em;
}
main.home .info ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
main.home .info ul li {
  width: calc((100% - 6rem) / 4);
  text-align: center;
}
main.home .info ul li a:hover {
  opacity: .6;
}
main.home .info ul li figure {
  margin-bottom: 0.75rem;
  border: 1px solid #cccccc;
  background-color: var(--color-white);
  overflow: hidden;
}
main.home .info ul li figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1 / 1;
}
main.home .info ul li a:hover figure img {
  transform: scale(1.1);
}
main.home .info ul li .cat {
  display: block;
  width: 80%;
  margin: 0 auto 0.5rem auto;
  padding: 0.125rem 0;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: var(--color-green);
  font-weight: 500;
  font-size: 0.95rem;
}
main.home .info ul li .cat.npo {
  background-color: var(--color-green);
}
main.home .info ul li .cat.kouza {
  background-color: var(--color-orange);
}
main.home .info ul li .cat.joseikin {
  background-color: var(--color-red);
}
main.home .info ul li h3 {
  font-size: 0.975rem;
  line-height: 1.5em;
}
main.home .info ul li a:hover p.title {
  color: #e62d18;
}
main.home .info .more p {
  margin-right: 1rem;
  font-size: 0.95rem;
}
main.home .info .more a:before {
  content: "》";
}
main.home .info .more a:hover {
  color: #e62d18;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .info .more {
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .info {
    padding: 2rem 0;
  }
  main.home .info h2 .ja {
    font-size: 2rem;
    line-height: 1.25em;
    letter-spacing: 0.125em;
    padding-left: 0.125em;
  }
  main.home .info h2 .en {
    font-size: 1.5rem;
  }
  main.home .info ul {
    flex-wrap: wrap;
  }
  main.home .info ul li {
    width: 47%;
    margin-bottom: 2rem;
  }
  main.home .info ul li:nth-child(3),
  main.home .info ul li:nth-child(4) {
    margin-bottom: 0;
  }
  main.home .info ul li .cat {
    width: 100%;
    text-align: center;
  }
  main.home .info .more p {
    margin-right: 0;
  }
  main.home .info .more {
    border-radius: 0.5rem;
    overflow: hidden;
  }
  main.home .info .more p a {
    padding: 0.5rem 1em;
    border-bottom: 1px solid var(--color-white);
    background-color: var(--color-yellow);
    font-weight: 500;
  }
}

/* about */
main.home .about {
  padding-bottom: 2rem;
}
main.home .about .flex {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
main.home .about .flex div h2 {
  margin: 1rem auto;
  padding: 0.125rem 0;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: var(--color-brown);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75em;
  text-align: center;
}
main.home .about .flex div p a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  color: var(--color-brown);
}
main.home .about .flex div p a:hover {
  color: #e62d18;
}
main.home .about .flex div p a:after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5rem;
  background: url(../images/icon-link.svg) no-repeat center center / contain;
}
main.home .about .banner {
  width: 75%;
  margin: 2rem 12.5% 0 12.5%;
  border-radius: var(--radius);
  border: 1px solid var(--color-black);
  overflow: hidden;
}
main.home .about .banner img:hover {
  opacity: .7;
  transition: .3s;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .about .flex div {
    width: 40%;
    padding-right: 4rem;
  }
  main.home .about .flex figure {
    width: 32.5%;
    text-align: center;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .about .flex {
    flex-direction: column;
  }
  main.home .about .flex div {
    width: 100%;
  }
  main.home .about .flex figure {
    width: 90%;
    margin: 2rem auto 0 auto;
  }
  main.home .about .banner {
    width: 100%;
    margin: 0 auto;
    border-radius: 0.5rem;
  }
}


/* ----------------------------------------------------------
 COMMON - PAGE
---------------------------------------------------------- */
main.page h1 {
  margin-bottom: 1rem;
  padding: 0.125rem 0.5em;
  border-radius: 0.5rem;
  background-color: var(--color-yellow);
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
main.pagebase > section {
  padding: 2rem 0;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.page {
    margin-top: 2rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.page h1 {
    padding: 0.25em 0.5em;
    line-height: 1.5em;
  }
}

/* ----------------------------------------------------------
 ふくサポについて - about / page-about.php
---------------------------------------------------------- */
/* 冒頭文 */
main.about section.about {
  padding: 2rem 0;
}
main.about section.about h1 {
  color: var(--color-black);
}
main.about section.about .intro p {
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.about section.about .intro p:nth-of-type(2) {
  width: 90%;
  margin: 1rem 5%;
}
main.about section.about .intro p:nth-of-type(2) a {
  display: block
}
main.about section.about .intro p:nth-of-type(2) a:hover {
  opacity: .7;
  transition: .3s;
}
main.about section.about .intro p img {
  width: 100%;
  border: 2px solid var(--color-black);
  border-radius: 0.25rem;
}

/* 下層コンテンツ共通 */
main.about section.about h2 {
  background-color: var(--color-yellow);
}
main.about section.about .wrap > section:not(.intro):not(.katsudo) {
  position: relative;
}
main.about section.about .wrap > section:not(.intro):not(.katsudo):after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  display: block;
  width: 90%;
  height: 2px;
  background-color: #F3981C;
}
main.about section.about .wrap > section:not(.intro) p {
  font-size: 1.125rem;
  line-height: 1.75em;
}
main.about section.about .flex h2 {
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.75em;
  text-align: center;
}
main.about section.about p.link {
  margin-top: 1rem;
}
main.about section.about p.link a {
  border: 2px solid var(--color-black);
  border-radius: 0.5rem;
  background-color: var(--color-white);
  font-weight: 500;
  text-align: center;
}
main.about section.about p.link a:hover {
  color: #e62d18;
}

/* 相談対応 */
main.about section.about .soudan h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}
main.about section.about .soudan h3 span {
  font-size: 1.125rem;
}

/* 学び */
main.about section.about .manabi {
  font-size: 1.125rem;
  line-height: 1.75em;
}
main.about section.about .manabi > p:first-of-type {
  font-weight: 500;
  font-size: 1.5rem !important;
  line-height: 1.5em !important;
  text-align: center;
  color: #F3981C;
}
main.about section.about .manabi .flex h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em;
  border-bottom: 2px solid var(--color-black);
}

/* 沿革 */
main.about .enkaku {
  margin: 4rem auto;
  padding: var(--inner);
  background-color: var(--color-yellow);
}
main.about .enkaku h2 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-white);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: center;
}
main.about .enkaku ul li {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--color-white);
  font-size: 1.125rem;
  line-height: 1.75em;
}
main.about .enkaku ul li:last-child {
  border-bottom: 0;
}
main.about .enkaku ul li h3 {
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.about .enkaku ul li:first-child h3 + p {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  /* 下層コンテンツ共通 */
  main.about section.about .flex {
    display: flex;
    align-items: center;
  }
  main.about section.about .flex h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    align-self: flex-start;
  }
  /* 交流の場の提供 共創・連携の促進 */
  main.about section.about .koryu {
    padding: 2rem 0;
  }
  main.about section.about .koryu .flex figure {
    width: 14rem;
  }
  main.about section.about .koryu .flex p {
    width: calc(100% - 29rem);
    padding: 0 2rem;
  }
  /* 相談対応 */
  main.about section.about .soudan {
    padding: 2rem 0;
  }
  main.about section.about .soudan .flex figure {
    order: 1;
    width: 15rem;
    margin-left: 3rem;
  }
  main.about section.about .soudan .flex p {
    order: 2;
    width: calc(100% - 33rem);
    padding: 0 2rem;
  }
  main.about section.about .soudan .flex h2 {
    order: 3;
  }
  main.about section.about .soudan h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 7rem);
    margin: 1rem auto 0.5rem auto;
  }
  main.about section.about .soudan h3 + p {
    width: calc(100% - 7rem);
    margin: 0 auto;
  }
  /* 学び */
  main.about section.about .manabi {
    padding: 2rem 0;
  }
  main.about section.about .manabi > p:first-of-type {
    margin-bottom: 2rem;
  }
  main.about section.about .manabi .flex {
    align-items: flex-start;
  }
  main.about section.about .manabi .flex figure {
    width: 15rem;
  }
  main.about section.about .manabi .flex figure img {
    width: 80%;
  }
  main.about section.about .manabi .flex figure img + img {
    margin-left: 20%;
  }
  main.about section.about .manabi .flex div {
    width: calc(100% - 30rem);
    padding: 0 2rem;
  }
  main.about section.about .manabi .flex ul li {
    margin-bottom: 0.5rem;
  }
  /* 会議室等の提供・支援 */
  main.about section.about .kaigi {
    padding: 2rem 0;
  }
  main.about section.about .kaigi .flex figure {
    order: 1;
    width: 15rem;
  }
  main.about section.about .kaigi .flex div {
    order: 2;
    width: calc(100% - 30rem);
    padding: 0 2rem;
  }
  main.about section.about .kaigi .flex h2 {
    order: 3;
  }
  /* 情報発信 情報収集 */
  main.about section.about .joho {
    padding: 2rem 0;
  }
  main.about section.about .joho .flex figure {
    width: 14rem;
  }
  main.about section.about .joho .flex div {
    width: calc(100% - 29rem);
    padding: 0 2rem;
  }
  main.about section.about .joho .flex div p.link a:nth-of-type(1) {
    margin-bottom: 1rem;
  }
  /* 活動資金の情報提供 */
  main.about section.about .katsudo {
    padding: 2rem 0;
  }
  main.about section.about .katsudo .flex figure {
    order: 1;
    width: 12rem;
  }
  main.about section.about .katsudo .flex div {
    order: 2;
    width: calc(100% - 27rem);
    padding: 0 2rem;
  }
  main.about section.about .katsudo .flex h2 {
    order: 3;
  }
  /* 沿革 */
  main.about .enkaku ul li h3 {
    display: flex;
  }
  main.about .enkaku ul li h3 span:nth-of-type(1) {
    display: inline-block;
    width: 8em;
  }
  main.about .enkaku ul li h3 span:nth-of-type(2) {
    display: inline-block;
    width: calc(100% - 8em)
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.about section.about .intro p img {
    width: 100%;
    margin: 1rem 0;
  }
  main.about section.about .wrap > section:not(.intro):not(.katsudo):after {
    left: 0;
    width: 100%;
  }
  main.about section.about .flex h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60vw;
    height: 60vw;
    margin: 1rem auto;
    border-radius: 100%;
  }
  main.about section:not(.intro) {
    padding: 2rem 0;
  }
  main.about section:not(.intro) figure {
    width: 80%;
    margin: 1rem auto;
  }
  main.about section.about p.link a {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  main.about section.about .soudan h3 {
    margin-bottom: 0.5rem;
    padding: 0.25em 0;
    line-height: 1.5em;
    text-align: center;
  }
  main.about section.about .manabi .flex h3 {
    text-align: center;
  }
  main.about section.about .manabi .flex h3 + p {
    margin-bottom: 1rem;
  }
  main.about section.about .manabi figure {
    display: flex;
  }
  main.about section.about .manabi figure img {
    width: 50%;
  }
  main.about section.about .katsudo figure {
    width: 60%;
  }
  main.about .enkaku ul li {
    padding: 1rem;
  }
  main.about .enkaku ul li h3 span:nth-of-type(1) {
    display: block;
    text-align: center;
    font-weight: 500;
  }
  main.about .enkaku ul li h3 span:nth-of-type(2) {
    display: block;
  }
}


/* ----------------------------------------------------------
 会議室使用 - kaigishitsu / page-kaigi.php
---------------------------------------------------------- */
main.kaigi {
  font-size: 1.125rem;
  line-height: 1.75em;
}
main.kaigi .bgyellow:nth-of-type(1) {
  padding: 2rem 0;
}
main.kaigi h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
main.kaigi h3 {
  margin-bottom: 0.5rem;
  padding: 0.125rem 0.5em;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: #785D50;
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
main.kaigi .flex {
  display: flex;
}
main.kaigi .download {
  margin: 1rem 0;
}
main.kaigi .download p {
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5em;
}
main.kaigi .download p a {
  position: relative;
  padding: 0.75rem 0.5rem;
  border: 2px solid #785D50;
  border-radius: 0.5rem;
  background-color: var(--color-white);
}
main.kaigi .download p a:after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  background: url(../images/icon-word.svg) no-repeat center center / contain;
  transform: translateY(-50%);
}
/* 1.団体の新規登録・更新 */
main.kaigi .step01-a div h3 + p {
  padding: 0 0.5em;
}
main.kaigi .step01-b > div h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
main.kaigi .step01-b ol  {
  position: relative;
  margin: 0;
  padding: 0;
}
main.kaigi .step01-b ol li  {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1em;
  font-size: 0.9rem;
  line-height: 1.75em;
}
main.kaigi .step01-b ol li span {
  position: absolute;
  left: 0;
  margin: 0;
}
main.kaigi .genmen {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-black);
}
main.kaigi .genmen p:nth-of-type(2) {
  margin: 1rem 0;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.kaigi .genmen p:nth-of-type(4) {
  margin-top: 0.5rem;
}
main.kaigi .genmen p:nth-of-type(4) a {
  display: inline;
}
/* 2.空き状況の確認 */
main.kaigi .step02 {
  margin: 2rem auto;
}
main.kaigi .step02 h3 {
  margin-bottom: 2rem;
}
main.kaigi .step02 p.link {
  margin: 1rem auto 2rem auto;
}
main.kaigi .step02 p.link a {
  padding: 0.75rem 1em;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: #595757;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
  box-shadow: 3px 3px 3px #999;
}
main.kaigi .step02 p.link a:hover {
  color: var(--color-black);
  background-color: var(--color-yellow);
}
main.kaigi .step02 p.link a:before {
  content: "〉";
}
main.kaigi .step02 p.link + p span {
  font-weight: 500;
}
main.kaigi .step02 h4 {
  margin-top: 0.5rem;
  color: var(--color-brown);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.kaigi .step02 .ul_caution {
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.5em;
}
/* 3.使用申請書の提出 */
main.kaigi .step03 {
  padding: 2rem 0;
}
main.kaigi .step03 p:nth-of-type(2) {
  margin-top: 1rem;
  color: #785D50;
  font-weight: 500;
}
/* 4.使用の変更・取消 */
main.kaigi .step04 {
  padding: 2rem 0;
}
/* その他の申請書 */
main.kaigi .step05 {
  padding: 2rem 0;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  /* 1.団体の新規登録・更新 */
  main.kaigi .step01-a > div {
    width: 60%;
  }
  main.kaigi .step01-a figure {
    width: 40%;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kaigi .step01-a figure img {
    width: 80%;
  }
  main.kaigi .step01-b figure {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kaigi .step01-b figure img {
    width: 80%;
  }
  main.kaigi .step01-b > div {
    width: 75%;
    padding-left: 2rem;
  }
  /* 2.空き状況の確認 */
  main.kaigi .step02 .flex > div {
    width: 60%;
    padding-top: 2rem;
  }
  main.kaigi .step02 .flex figure {
    width: 35%;
    margin-right: 5%;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kaigi .step02 .flex figure img {
    width: 75%;
    height: auto;
  }
  /* 3.使用申請書の提出 */
  main.kaigi .step03 figure {
    order: 1;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kaigi .step03 figure img {
    width: 75%;
    height: auto;
  }
  main.kaigi .step03 > div {
    order: 2;
    width: 60%;
  }
  /* 4.使用の変更・取消 */
  main.kaigi .step04 > div {
    width: 60%;
  }
  main.kaigi .step04 figure {
    width: 35%;
    margin-left: 2.5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kaigi .step04 figure img {
    width: 75%;
    height: auto;
  }
  /* その他の申請書 */
  main.kaigi .step05 figure {
    order: 1;
    width: 35%;
    margin-right: 2.5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kaigi .step05 figure img {
    width: 65%;
    height: auto;
  }
  main.kaigi .step05 > div {
    order: 2;
    width: 60%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.kaigi .flex {
    flex-direction: column;
  }
  main.kaigi .flex > div {
    order: 1;
  }
  main.kaigi .flex > figure {
    order: 2;
    width: 70%;
    margin: 1rem auto;
  }
  main.kaigi .download p a {
    padding: 0.75rem 2.5em 0.75em 0.5rem;
  }
}


/* ----------------------------------------------------------
 施設の概要 - shisetsu / page-shisetsu.php
---------------------------------------------------------- */
/* 施設の概要 */
main.shisetsu section.gaiyou {
  padding: 2rem 0 3rem 0;
}
main.shisetsu section.gaiyou h1 {
  color: var(--color-white);
  background-color: var(--color-brown);
}
main.shisetsu section.gaiyou h1 + p {
  margin: 1em auto;
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
  text-align: center;
}
main.shisetsu section.gaiyou h1 + p a {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--color-black);
}
main.shisetsu section.gaiyou h1 + p a:hover {
  color: #e62d18;  
}
main.shisetsu section.gaiyou h1 + p a:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url(../images/icon-link02.svg) no-repeat center center / contain;
  margin: 0 0.25em;
}
main.shisetsu section.gaiyou h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-brown);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em;
}
main.shisetsu section.gaiyou h2 + * {
  padding: 0 0.5em;
  font-size: 1.125rem;
  line-height: 1.75em;
}
main.shisetsu section.gaiyou ol {
  position: relative;
}
main.shisetsu section.gaiyou ol li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.5em;
}
main.shisetsu section.gaiyou ol li span {
  position: absolute;
  left: 0;
  margin: 0;
}
/* その下 共通 */
main.shisetsu section:not(.gaiyou) {
  padding: 2rem 0;
}
main.shisetsu section:not(.gaiyou) h2 {
  margin-bottom: 2rem;
  padding: 0.125rem 0.5em;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: var(--color-brown);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em;
}
main.shisetsu section:not(.gaiyou) figure {
  width: 100%;
}
main.shisetsu .ul_caution li {
  font-size: 1.125rem;
  line-height: 1.75em;
}
/* フロアマップ */
main.shisetsu .floormap {
  padding-top: 3rem;
}
/* 会議室使用料 */
main.shisetsu .room-price figure + p {
  margin: 0.5rem 0;
  text-align: right;
}
main.shisetsu .room-price figure + p + p {
  margin-bottom: 1rem;
  color: #C30D23;
  font-weight: 500;
  font-size: 1.5rem;
}
/* 設備使用料 */
main.shisetsu .item-price dl {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto 5em;
}
main.shisetsu .item-price dl dt {
  grid-column: 1;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.shisetsu .item-price dl dt:before {
  content: "■";
  color: var(--color-brown);
}
main.shisetsu .item-price dl dd {
  grid-column: 2;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
  text-align: right;
}
main.shisetsu .item-price .ul_caution + p {
  margin: 1rem auto;
  color: #C30D23;
  font-weight: 500;;
  font-size: 1.3rem;
  line-height: 1.75em;
  text-align: center;
}
main.shisetsu .item-price .ul_caution + p + p {
  text-align: center;
}
/* 会議室A・B */
main.shisetsu .room-photo figure {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.shisetsu .room-photo figure img:nth-of-type(1) {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
}
main.shisetsu .room-photo figure img:nth-of-type(2),
main.shisetsu .room-photo figure img:nth-of-type(3) {
  width: calc(50% - 1rem);
  height: auto;
}
main.shisetsu .room-photo .flex {
  margin-top: 2rem;
}
main.shisetsu .room-photo h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
main.shisetsu .room-photo h3::before {
  content: "■";
  color: var(--color-brown);
}
main.shisetsu .room-photo dl {
  margin-bottom: 1rem;
}
main.shisetsu .room-photo dl dt {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
main.shisetsu .room-photo dl dd {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
/* 多目的ホール */
main.shisetsu .hall .flex {
  margin-top: 2rem;
}
main.shisetsu .hall h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
main.shisetsu .hall h3::before {
  content: "■";
  color: var(--color-brown);
}
main.shisetsu .hall dl {
  margin-bottom: 1rem;
}
main.shisetsu .hall dl dt {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
main.shisetsu .hall dl dd {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
/* 交流広場 */
main.shisetsu .space h2 span {
  margin-left: 3em;
  font-size: 1.3rem;
}
main.shisetsu .space figure {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.shisetsu .space figure img:nth-of-type(1) {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
}
main.shisetsu .space figure img:nth-of-type(2),
main.shisetsu .space figure img:nth-of-type(3) {
  width: calc(50% - 1rem);
  height: auto;
}
main.shisetsu .space dl {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main.shisetsu .space dl dt {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
main.shisetsu .space dl dt:before {
  content: "■";
  color: var(--color-brown);
}
main.shisetsu .space dl dd {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em
}
/* 印刷室 */
main.shisetsu .print-room h2 span {
  margin-left: 3em;
  font-size: 1.3rem;
}
main.shisetsu .print-room h3 {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-black);
  font-weight: 500;
  font-size: 1.3rem;
}
main.shisetsu .print-room dl dt {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.shisetsu .print-room dl dt:before {
  content: "■";
  color: var(--color-brown);
}
main.shisetsu .print-room dl dd {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
  text-align: right;
}
main.shisetsu .print-room dl dt.dot,
main.shisetsu .print-room dl dd.dot {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom:dotted 5px;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  /* 設備使用料 */
  main.shisetsu .item-price .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0.5rem;
  }
  main.shisetsu .item-price dl {
    width: 45%;
  }
  /* 会議室A・B */
  main.shisetsu .room-photo .flex {
    display: flex;
    justify-content: flex-start;
    padding: 0 1rem;
  }
  main.shisetsu .room-photo h3 {
    width: 10em;
  }
  main.shisetsu .room-photo dl {
    width: calc(100% - 10em);
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
  }
  main.shisetsu .room-photo dl dt {
    width: 10em;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.75em
  }
  main.shisetsu .room-photo dl dd {
    width: calc(100% - 10em);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.75em
  }
  /* 会議室A・B */
  main.shisetsu .hall .flex {
    display: flex;
    justify-content: flex-start;
  }
  main.shisetsu .hall h3 {
    width: 10em;
  }
  main.shisetsu .hall dl {
    width: calc(100% - 10em);
  }
  /* 多目的ホール */
  main.shisetsu .hall dl {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  main.shisetsu .hall dl dt {
    width: 10em;
  }
  main.shisetsu .hall dl dd {
    width: calc(100% - 10em);
  }
  /* 交流広場 */
  main.shisetsu .space dl {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  main.shisetsu .space dl dt {
    width: 10em;
  }
  main.shisetsu .space dl dd {
    width: calc(100% - 10em);
  }
  /* 印刷室 */
  main.shisetsu .print-room .flex {
    display: flex;
  }
  main.shisetsu .print-room .flex figure {
    width: 50%;
    padding-right: 2rem;
  }
  main.shisetsu .print-room .flex > div {
    width: 50%;
  }
  main.shisetsu .print-room dl {
    display: flex;
    flex-wrap: wrap;
  }
  main.shisetsu .print-room dl dt {
    width: 10em;
  }
  main.shisetsu .print-room dl dd {
    width: calc((100% - 10em) - 5px);
    margin-left: 5px;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.shisetsu .room-photo dl dd,
  main.shisetsu .hall dl dd,
  main.shisetsu .space dl dd {
    padding-left: 1em;
  }
  main.shisetsu .space h2 span,
  main.shisetsu .print-room h2 span {
    margin-left: 0;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
    line-height: 1.5em;
  }
  main.shisetsu section:not(.gaiyou) figure {
    margin-bottom: 1rem;
  }
  main.shisetsu .print-room dl dt.dot {
    border-bottom: 0;
  }
}


/* ----------------------------------------------------------
 福島市公共施設予約システムについて - yoyaku / page-yoyakusystem.php
---------------------------------------------------------- */
main.system section {
  padding: 2rem 0 3rem 0;
}
main.system section h1 {
  margin-bottom: 2rem;
  color: var(--color-white);
  background-color: var(--color-black);
  text-align: left;
}
main.system section h2 {
  margin: 2rem auto 1rem auto;
  padding: 0.25em 0;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  font-weight: 500;
  font-size: 1.3rem;
}
main.system section h2 + p {
  font-weight: 500;
  font-size: 1.3rem;
}
main.system section figure {
  width: 80%;
  margin: 2rem auto;
}
main.system section figure + p {
  color: #4F5092;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.system section ul {
  margin-top: 2rem;
}
main.system section ul li a {
  padding: 0.75em 0;
  border: 1px solid var(--color-black);
  border-radius: 0.25rem;
  color: var(--color-black);
  background-color: var(--color-white);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5em;
  transition: .3s;
}
main.system section ul li a:hover {
  padding: 0.75em 0;
  color: var(--color-white);
  background-color: #4F5092;
  transition: .3s;
}
main.system section ul li a span {
  display: inline-flex;
  align-items: center;
}
main.system section ul li a span:before {
  content: "〉";
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.system section {
    text-align: center;
  }
  main.system section ul {
    display: flex;
    justify-content: space-between;
  }
  main.system section ul li {
    width: 49%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.system section h2 {
    text-align: center;
  }
  main.system section ul li {
    margin-bottom: 1rem;
  }
  main.system section ul li a {
    padding: 0.75rem 1rem;
  }
}


/* ----------------------------------------------------------
 アクセス - access / page-access.php
---------------------------------------------------------- */
main.access section {
  padding: 2rem 0 3rem 0;
}
main.access section h1 {
  margin-bottom: 2rem;
  color: var(--color-white);
  background-color: var(--color-black);
}
main.access .dl_access {
  padding: 0 0.5rem;
}
main.access .dl_access dt {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75em;
}
main.access .dl_access dd {
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
main.access .map {
  margin: 1rem auto;
}
main.access .map iframe {
  width: 100%;
  height: 350px;
}
main.access .map p {
  margin: 0.5rem 0;
  text-align: right;
}
main.access .map p a {
  display: inline-flex;
  align-items: center;
}
main.access .map p a:hover {
  color: #e62d18;
}
main.access .map p a:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url(../images/icon-link02.svg) no-repeat center center / contain;
  margin: 0 0.25em;
}
main.access .flex div > *:not(h2) {
  padding: 0 1rem;
  font-size: 1.3rem;
  line-height: 1.75em;
}
main.access .flex h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.125rem 0.5em;
  border-radius: 0.5rem;
  background-color: var(--color-yellow);
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
main.access .flex span {
  font-size: 1.125rem;
}
main.access .flex + p {
  width: 90%;
  margin: 2rem auto 0 auto;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: #595757;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.access .flex {
    display: flex;
    align-items: center;
  }
  main.access .dl_access {
    display: flex;
    flex-wrap: wrap;
  }
  main.access .dl_access dt {
    width: 8em;
  }
  main.access .dl_access dd {
    width: calc(100% - 8em);
  }
  main.access .flex > div {
    width: 50%;
  }
  main.access .flex > div dl {
    display: flex;
  }
  main.access .flex > div dl dt {
    padding-right: 2em;
  }
  main.access .flex figure {
    width: 50%;
    padding-left: 2rem;
  }
  main.access .flex figure img {
    width: 80%;
    height: auto;
    margin: 0 10%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.access .dl_access dd {
    padding-left: 1em;
    margin-bottom: 1rem;
  }
  main.access .flex figure {
    width: 80%;
    margin: 1rem auto;
  }
  main.access .flex + p {
    width: 100%;
    padding: 0.5rem;
    text-align: left;
  }
}


/* ----------------------------------------------------------
 リンク集 - link / page-link.php
---------------------------------------------------------- */
main.link section {
  padding: 2rem 0 3rem 0;
}
main.link section h1 {
  margin-bottom: 2rem;
}
main.link section h2 {
  position: relative;
  margin-bottom: 1rem;
  padding: 0 0 0.5em 2.5rem;
  border-bottom: 1px solid #F6B7AA;
  font-weight: 500;
  font-size: 1.3rem;
}
main.link section h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  display: block;
  width: 4px;
  height: 1.5em;
  background-color: #F6B7AA;
}
main.link section .flex {
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}
main.link section .flex ul li {
  margin-bottom: 0.5rem;
  font-size: 0.975rem;
  line-height: 1.5em;
}
main.link section .flex ul li a:before {
  content: "〉";
  color: #F6B7AA;
}
main.link section .flex ul li a:hover {
  color: #e62d18;
}
main.link section .center h2 {
  border-bottom: 1px solid #74BD9B;
}
main.link section .center h2:before {
  background-color: #74BD9B;
}
main.link section .center .flex ul li a:before {
  content: "〉";
  color: #74BD9B;
}
main.link section .dantai h2 {
  border-bottom: 1px solid #C996B5;
}
main.link section .dantai h2:before {
  background-color: #C996B5;
}
main.link section .dantai .flex ul li a:before {
  content: "〉";
  color: #C996B5;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.link section .flex {
    display: flex;
    justify-content: space-between;
  }
  main.link section .flex ul {
    width: 50%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.link section h2 {
    padding: 0 0 0.5em 0.75em;
  }
  main.link section h2:before {
    left: 0;
  }
  main.link section .flex {
    padding: 0;
  }
  main.link section .flex ul li a {
    position: relative;
    padding: 0.25em 0 0.25em 1em;
  }
  main.link section .flex ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
  }
}


/* ----------------------------------------------------------
 プライバシーポリシー - privacy-policy
---------------------------------------------------------- */
body.privacy-policy section {
  padding-bottom: 3rem;
}
body.privacy-policy main .wrap > *:not(h1) {
  padding: 0 2.5rem;
}
body.privacy-policy main .wrap h1 {
  margin-bottom: 1.5rem;
}
body.privacy-policy main .wrap h1 + p {
  margin-bottom: 1rem;
}
body.privacy-policy main .wrap h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5em;
}
body.privacy-policy main .wrap p a {
  display: inline;
  text-decoration: underline;
}

@media screen and (max-width : 768px) { /* -- sp -- */
  body.privacy-policy main .wrap > *:not(h1) {
    padding: 0 1rem;
  }
}


/* ----------------------------------------------------------
 投稿一覧 - category.php
---------------------------------------------------------- */
main.postlist section {
  padding: 2rem 0 3rem 0;
}
main.postlist section h1 {
  margin-bottom: 2rem;
}
body:not(.category-kouza) main.postlist section ul.ul_post {
  border-top: 1px solid #cccccc;
}
body:not(.category-kouza) main.postlist section ul.ul_post li {
  border-bottom: 1px solid #cccccc;
}
body:not(.category-kouza) main.postlist section ul.ul_post li a {
  display: flex;
  align-items: flex-start;
  padding: 0.5em 1rem;
}
body:not(.category-kouza) main.postlist section ul.ul_post li a time {
  font-size: 1.3rem;
  line-height: 1.5em;
}
body:not(.category-kouza) main.postlist section ul.ul_post li a h2 {
  position: relative;
  padding-left: 1em;
  font-size: 1.3rem;
  line-height: 1.5em;
}
body:not(.category-kouza) main.postlist section ul.ul_post li a:hover h2 {
  color: #e62d18;
}
body:not(.category-kouza) main.postlist section ul.ul_post li a h2:before {
  content: "〉";
  position: absolute;
  left: 0;
}
main.postlist section p.nopost {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
  text-align: center;
}

/* 色変え */
body.category-news main.postlist section h1 {
  color: var(--color-white);
  background-color: var(--color-coral);
}
body.category-topics main.postlist section h1 {
  color: var(--color-white);
  background-color: var(--color-blue);
}
body.category-kouza main.postlist section h1 {
  color: var(--color-white);
  background-color: var(--color-orange);
}

/* ふくサポ講座 */
body.category-kouza main.postlist section h1 + p {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.75em;
}
body.category-kouza main.postlist section h1 + p a {
  display: inline-flex;
  align-items: center;
}
body.category-kouza main.postlist section h1 + p a:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url(../images/icon-link02.svg) no-repeat center center / contain;
  margin: 0 0.25em;
}
body.category-kouza main.postlist section ul.ul_post {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
}
body.category-kouza main.postlist section ul.ul_post li:nth-child(3n) {
  margin-right: 0;
}
body.category-kouza main.postlist section ul.ul_post li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
body.category-kouza main.postlist section ul.ul_post li a:hover {
  opacity: .6;
}
body.category-kouza main.postlist section ul.ul_post li a figure {
  width: 80%;
  height: auto;
  margin-bottom: 1rem;
  border: 1px solid #cccccc;
  overflow: hidden;
}
body.category-kouza main.postlist section ul.ul_post li a:hover figure img {
  transform: scale(1.1);
}
body.category-kouza main.postlist section ul.ul_post li a h2 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
  line-height: 1.5em;
  text-align: center;
}
body.category-kouza main.postlist section ul.ul_post li a:hover h2 {
  color: #e62d18;
}
body.category-kouza main.postlist section ul.ul_post li a p {
  line-height: 1.5em;
  text-align: center;
}
body.category-kouza main.postlist section ul.ul_post li a p.kouza_date,
body.category-kouza main.postlist section ul.ul_post li a div.kouza_bikou {
  margin-bottom: 0.25rem;
}
body.category-kouza main.postlist section ul.ul_post li a p.kouza_kigen {
  margin-top: auto;
  width: 100%;
}
body.category-kouza main.postlist section ul.ul_post li a p.kouza_kigen span {
  display: block;
  margin-top: 0.5rem;
  padding: 0.125em 1em;
  color: var(--color-white);
  background-color: var(--color-orange);
  text-align: center;
}

/* 助成金情報 */
body.category-joseikin main.postlist section h1 {
  color: var(--color-white);
  background-color: var(--color-red);
}
body.category-joseikin main.postlist section ul.ul_post li a h2 {
  width: 100%;
  margin-bottom: 0.25rem;
}
body.category-joseikin main.postlist section ul.ul_post li a {
  padding: 0.5em 1rem 0.75em 1rem;
}
body.category-joseikin main.postlist section ul.ul_post li a .joseikin_kinds {
  margin-top: 0.25rem;
  padding: 0.125em 1em;
  line-height: 1.5em;
  color: var(--color-white);
  background-color: var(--color-red);
}
body.category-joseikin main.postlist section .kasseika {
  margin-top: 2rem;
}
body.category-joseikin main.postlist section .kasseika h3 {
  margin-bottom: 0.75rem;
  padding: 0 1rem 0.25rem 1rem;
  border-bottom: 1px solid var(--color-red);
  color: var(--color-red);
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
body.category-joseikin main.postlist section .kasseika p {
  padding: 0 1rem;
  line-height: 1.5em;
}
body.category-joseikin main.postlist section .kasseika p.link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75em 1em;
  border: 2px solid var(--color-black);
  border-radius: 0.5rem;
  background-color: var(--color-white);
}
body.category-joseikin main.postlist section .kasseika p.link a:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url(../images/icon-link02.svg) no-repeat center center / contain;
  margin: 0 0.25em;
}

/* NPO情報 */
body.category-npo main.postlist section h1 {
  color: var(--color-white);
  background-color: var(--color-green);
}
body.category-npo main.postlist section ul.ul_post li a h2 {
  width: 100%;
  margin-bottom: 0.25rem;
}
body.category-npo main.postlist section ul.ul_post li a {
  padding: 0.5em 1rem 0.75em 1rem;
}
body.category-npo main.postlist section ul.ul_post li a .npo_price {
  margin-top: 0.25rem;
  padding: 0.125em 1em;
  line-height: 1.5em;
  color: var(--color-white);
  background-color: var(--color-green);
}
body.category-npo main.postlist section .banner {
  width: 75%;
  margin: 2rem 12.5% 0 12.5%;
  border-radius: var(--radius);
  border: 1px solid var(--color-black);
  overflow: hidden;
}
body.category-npo main.postlist section .banner img {
  transition: .3s;
}
body.category-npo main.postlist section .banner img:hover {
  opacity: .7;
  transition: .3s;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  body:not(.category-kouza) main.postlist section ul.ul_post li a time {
    width: 12em;
  }
  body:not(.category-kouza) main.postlist section ul.ul_post li a h2 {
    width: calc(100% - 12em);
  }
  /* ふくサポ講座 */
  body.category-kouza main.postlist section h1 + p {
    text-align: center;
  }
  body.category-kouza main.postlist section ul.ul_post li {
    width: calc((100% - 4rem) / 3);
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
  /* 助成金情報 */
  body.category-joseikin main.postlist section ul.ul_post li a div {
    width: calc(100% - 12em);
    padding-left: 1em;
  }
  body.category-joseikin main.postlist section ul.ul_post li a .joseikin_kinds {
    width: calc(100% / 3);
    max-width: 400px;
  }
  body.category-joseikin main.postlist section .kasseika {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  body.category-joseikin main.postlist section .kasseika h3 {
    width: 100%;
  }
  body.category-joseikin main.postlist section .kasseika p:not(.link) {
    width: 65%
  }
  body.category-joseikin main.postlist section .kasseika p.link {
    width: 35%
  }
  body.category-joseikin main.postlist section .kasseika p.link a {
    max-width: 300px;
  }
  body.category-joseikin main.postlist section .kasseika p.link a:hover {
    color: #e62d18;
  }
  /* NPO情報 */
  body.category-npo main.postlist section ul.ul_post li a .npo_price {
    width: calc(100% / 3);
    max-width: 400px;
  }
  body.category-npo main.postlist section ul.ul_post li a div {
    width: calc(100% - 12em);
    padding-left: 1em;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  body:not(.category-kouza) main.postlist section ul.ul_post li a {
    flex-direction: column;
  }
  body:not(.category-kouza) main.postlist section ul.ul_post li a div {
    width: 100%;
  }
  body.category-npo main.postlist section .banner {
    width: 100%;
    margin: 2rem auto 0 auto;
    border-radius: 0.5rem;
  }
  body.category-npo main.postlist section ul.ul_post li a .npo_price {
    width: 100%;
  }
  body.category-kouza main.postlist section ul.ul_post li {
    margin-bottom: 2rem;
  }
  body.category-joseikin main.postlist section .kasseika h3 {
    line-height: 1.5em;
  }
  body.category-joseikin main.postlist section .kasseika p {
    margin-top: 1rem;
  }
  body.category-joseikin main.postlist section ul.ul_post li a .joseikin_kinds {
    width: 100%;
  }
}


/* ----------------------------------------------------------
 記事 - single.php
---------------------------------------------------------- */
main.single > section:nth-of-type(1) {
  padding: 2rem 0;
}
main.single article p.category {
  margin-bottom: 1rem;
  padding: 0.125rem 0.5em;
  border-radius: 0.5rem;
  color: var(--color-white);
  background-color: var(--color-coral);
  font-weight: 500;
  font-size: 1.575rem;
  line-height: 1.75em;
}
main.single article.category-news p.category {
  color: var(--color-white);
  background-color: var(--color-coral);
}
main.single article.category-topics p.category {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.single article.category-kouza p.category {
  color: var(--color-white);
  background-color: var(--color-orange);
}
main.single article.category-npo p.category {
  color: var(--color-white);
  background-color: var(--color-green);
}
main.single article.category-joseikin p.category {
  color: var(--color-white);
  background-color: var(--color-red);
}
main.single article time {
  color: var(--color-coral);
  font-weight: 500;
}
main.single article.category-news time {
  color: var(--color-coral);
}
main.single article.category-topics time {
  color: var(--color-blue);
}
main.single article.category-kouza time {
  color: var(--color-orange);
}
main.single article.category-npo time {
  color: var(--color-green);
}
main.single article.category-joseikin time {
  color: var(--color-red);
}
main.single article h1 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-coral);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
main.single article.category-news h1 {
  border-bottom: 2px solid var(--color-coral);
}
main.single article.category-topics h1 {
  border-bottom: 2px solid var(--color-blue);
}
main.single article.category-kouza h1 {
  border-bottom: 2px solid var(--color-orange);
}
main.single article.category-npo h1 {
  border-bottom: 2px solid var(--color-green);
}
main.single article.category-joseikin h1 {
  border-bottom: 2px solid var(--color-red);
}
main.single article .subinfo {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px dotted var(--color-black);
}
main.single article figure.mainimage {
  margin: 1rem;
}
main.single article figure.mainimage img {
  width: 100%;
  height: auto;
  border: 1px solid #cccccc;
}
main.single article h2 {
  position: relative;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
main.single article h2:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #cccccc;
}
main.single article h2:after {
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-coral);
}
main.single article.category-news h2:after {
  background-color: var(--color-coral);
}
main.single article.category-topics h2:after {
  background-color: var(--color-blue);
}
main.single article.category-kouza h2:after {
  background-color: var(--color-orange);
}
main.single article.category-npo h2:after {
  background-color: var(--color-green);
}
main.single article.category-joseikin h2:after {
  background-color: var(--color-red);
}
main.single article h3 {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.single article h4 {
  padding-bottom: 0.25rem;
  border-bottom: 1px dotted;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.single article h5 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.single article h5:before {
  content: "●";
}
main.single article h6 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.single article p a {
  text-decoration: underline;
}
main.single article table {
  background-color: var(--color-white);
}
.wp-block-file:not(.wp-element-button) {
  font-size: 1rem !important;
  line-height: 1.75em !important;
}
main.single article .content a {
  display: initial !important;
  word-break: break-all;
}
main.single article .content ol {
  list-style: decimal !important;
  padding-left: 0; 
  margin-left: 1.5em;
  list-style-position: inside;
}
main.single article .content ul {
  list-style-type: disc;
  list-style-position: inside;
}
main.single article .content > * {
  margin-bottom: 1rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.single {
    margin-top: 2rem;
  }
  main.single article figure.mainimage {
    width: 300px;
  }
  main.single article .inner {
    width: calc(100% - 2rem);
  }
  main.single article .content img {
    width: initial !important;
    max-width: initial !important;
    height: initial !important;
  }
}

/* 前後記事へのリンク */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #cccccc;
}
.post-navigation a {
  display: inline-block;
  padding: 0.25em 0.5em;
  border: 2px solid var(--color-black);
  border-radius: 0.5rem;
  background-color: var(--color-white);
}
.post-navigation a:hover {
  color: #e62d18;
}
.nav-previous,
.nav-next,
.nav-archive {
  text-align: center;
}
.nav-previous {
  text-align: left;
}
.nav-next {
  text-align: right;
}
.nav-archive {
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  .nav-previous,
  .nav-next,
  .nav-archive {
    flex: 1;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  .post-navigation {
    flex-wrap: wrap;
  }
  .nav-previous {
    order: 1;
    width: 50%;
  }
  .nav-next {
    order: 2;
    width: 50%;
  }
  .nav-archive {
    order: 3;
    width: 100%;
    margin-top: 1rem;
  }
  .nav-archive a {
    display: block;
  }
}


/* ----------------------------------------------------------
 ふくサポ通信 - archive-tsushin.php
---------------------------------------------------------- */
main.f-tsushin section {
  padding: 2rem 0 3rem 0;
}
main.f-tsushin section h1 {
  margin-bottom: 2rem;
  color: var(--color-white);
  background-color: var(--color-purple);
}
main.f-tsushin section .des p {
  margin-bottom: 0.5rem;
}
main.f-tsushin section .des p:nth-of-type(1) {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.f-tsushin section ul {
  margin: 2rem auto;
}
main.f-tsushin section ul li {
  margin-bottom: 4rem;
}
main.f-tsushin section ul li h2 {
  margin-bottom: 1rem;
  padding: 0.25em;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  background-color: var(--color-white);
  font-weight: 500;
  text-align: center;
}
main.f-tsushin section ul li figure {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
main.f-tsushin section ul li figure a {
  width: 48%;
}
main.f-tsushin section ul li figure a img {
  width: 100%;
  border: 1px solid #cccccc;
}
main.f-tsushin section ul li dl {
  margin-bottom: 1rem;
}
main.f-tsushin section ul li .download p {
  margin-bottom: 1rem;
}
main.f-tsushin section ul li .download p a {
  display: block;
  padding: 0.25em 0;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.75em;
  text-align: center;
}
main.f-tsushin section ul li .download p.tsushin a {
  color: var(--color-black);
  background-color: var(--color-white);
}
main.f-tsushin section ul li .download p.tsushin a:hover {
  color: var(--color-white);
  background-color: var(--color-purple);
}
main.f-tsushin section ul li .download p.smile a {
  color: var(--color-white);
  background-color: var(--color-purple);
}
main.f-tsushin section ul li .download p.smile a:hover {
  color: var(--color-black);
  background-color: #f2e1e8;
}
main.f-tsushin section ul li .download p.next a {
  color: var(--color-black);
  background-color: #f2e1e8;
}
main.f-tsushin section ul li .download p.next a:hover {
  color: var(--color-white);
  background-color: var(--color-purple);
}
main.f-tsushin section ul li .download p.next a span {
  padding: 0;
  border-bottom: 0;
}
body.single main.f-tsushin section div p.link {
  text-align: center;
}
body.single main.f-tsushin section div p.link a {
  display: inline-block;
  padding: 0.25em 0.5em;
  border: 2px solid var(--color-black);
  border-radius: 0.5rem;
  background-color: var(--color-white);
}
body.single main.f-tsushin section div p.link a:hover {
  color: #e62d18;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.f-tsushin section .des {
    text-align: center;
  }
  main.f-tsushin section ul {
    display: flex;
    flex-wrap: wrap;
  }
  body.single main.f-tsushin section ul {
    justify-content: center;
  }
  main.f-tsushin section ul li {
    width: 44%;
    margin: 0 3% 2rem 3%;
  }
  main.f-tsushin section ul li dl {
    padding: 0 2rem;
    display: flex;
    justify-content: center;
  }
  main.f-tsushin section ul li dl dt {
    padding-right: 1em
  }
  main.f-tsushin section ul li .download {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main.f-tsushin section ul li .download p.tsushin {
    width: 49%;
  }
  main.f-tsushin section ul li .download p.smile {
    width: 49%;
  }
  main.f-tsushin section ul li .download p.next {
    width: 100%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.f-tsushin section ul li dl dt,
  main.f-tsushin section ul li dl dd p {
    text-align: center;
  }
}


/*---------------------------------------------------------------------------
  ページネーション
----------------------------------------------------------------------------*/
/* 共通設定・デフォルト */
.sec_pagination {
  padding-bottom: 4rem;
}
div.pagination {
  clear:both;
  padding: 0;
  position:relative;
  background:none;
  margin: 2rem 0 0 0;
  vertical-align: middle;
  font-size: 0.975rem;
}
div.pagination span,
.pagination a {
  display:block;
  float:left ;
  margin: 2px 2px 2px 0 ;
  padding: 0.25em 0.5em;
  text-decoration:none;
  width:auto ;
  color:#fff ;
  background-color: var(--color-coral);
  transition: .6s;
}
div.pagination a:hover {
  color: var(--color-coral);
  background-color: var(--color-white) !important;
  transition: .6s;
}
div.pagination .current {
  color: var(--color-coral);
  background-color: var(--color-white) !important;
}

/* カテゴリごとの色チェンジ */
body.category-news div.pagination span,
body.category-news .pagination a {
  background-color: var(--color-coral);
}
body.category-news div.pagination a:hover,
body.category-news div.pagination .current  {
  color: var(--color-coral) !important;
}
body.category-topics div.pagination span,
body.category-topics .pagination a {
  background-color: var(--color-blue);
}
body.category-topics div.pagination a:hover,
body.category-topics div.pagination .current  {
  color: var(--color-blue) !important;
}
body.category-kouza div.pagination span,
body.category-kouza .pagination a {
  background-color: var(--color-orange);
}
body.category-kouza div.pagination a:hover,
body.category-kouza div.pagination .current  {
  color: var(--color-orange) !important;
}
body.category-joseikin div.pagination span,
body.category-joseikin .pagination a {
  background-color: var(--color-red);
}
body.category-joseikin div.pagination a:hover,
body.category-joseikin div.pagination .current  {
  color: var(--color-red) !important;
}
body.category-npo div.pagination span,
body.category-npo .pagination a {
  background-color: var(--color-green);
}
body.category-npo div.pagination a:hover,
body.category-npo div.pagination .current  {
  color: var(--color-green) !important;
}
main.f-tsushin div.pagination span,
main.f-tsushin .pagination a {
  background-color: var(--color-purple);
}
main.f-tsushin div.pagination a:hover,
main.f-tsushin div.pagination .current  {
  color: var(--color-purple) !important;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  div.pagination {
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  div.pagination {
    width: 90%;
    margin: 2rem auto;
    font-size: 4vw;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center; /* Safari */
    justify-content:         center;
  }
  span.pagesmp {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
}


/* ----------------------------------------------------------
 CONTACT
---------------------------------------------------------- */
main.contact section {
  padding: 2rem 0 3rem 0;
}
main.contact section h1 {
  margin-bottom: 2rem;
  color: var(--color-white);
  background-color: var(--color-black);
}
main.contact section .inner {
  width: calc(100% - 2rem);
}
body.contact main.contact section .inner p:nth-of-type(1),
body.contact-confirm main.contact section .inner p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
}
main.contact section .inner p {
  margin-bottom: 1rem;
}
main.contact dl {
  width: 80%;
  max-width: 1000px;
  margin: 2rem auto;
}
main.contact dl dt {
  position: relative;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
main.contact dl dt span {
  position: absolute;
  left: 0;
  top: 0.5rem;
  padding: 0 0.5em;
  border-radius: 0.25em;
  color: var(--color-white);
  background-color: #c30d23;
  font-size: 0.8rem;
  line-height: 1.75em;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}
main.contact dl dd {
  margin-bottom: 1rem;
}
body.contact main.contact dl dt,
body.contact main.contact dl dd {
  padding-left: 4rem;
}
body.contact-confirm main.contact dl dd {
  padding-left: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-black);
}
.wpcf7 input::placeholder {
  color: #9fa0a0 !important;
}
.wpcf7 input::-ms-input-placeholder {
  color: #9fa0a0 !important;
}
main.contact select {
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/arrow.svg") no-repeat right 12px center / 24px auto;
}
main.contact select,
main.contact input,
main.contact textarea {
  width: 100%;
  padding: 0.75rem 1em;
  border: 2px solid var(--color-black);
  border-radius: 0.25rem;
  font-size: 1.125rem;
}
main.contact textarea {
  resize: vertical;
}
main.contact input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
}
main.contact .accept a {
  display: inline;
  color: #c30d23;
  font-weight: 500;
}
main.contact .accept a:hover {
  color: var(--color-yellow);
}
main.contact .wpcf7 span.check {
  display: flex;
  justify-content: center;
  position: relative;
}
main.contact .button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
main.contact .button .wpcf7-spinner {
  display: none !important;
}
main.contact input.wpcf7-submit,
main.contact input.wpcf7-previous {
  display: inline-block;
  position: relative;
  padding: 1rem 5rem;
  margin: 0 0.25rem;
  border: 0;
  border-radius: 5em;
  color: var(--color-white);
  background-color: #c30d23;
  font-family: "Zen Maru Gothic", serif !important;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
}
main.contact input.wpcf7-submit:hover,
main.contact input.wpcf7-previous:hover,
main.contact input.wpcf7-submit:hover {
  background-color: var(--color-yellow);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  margin-top: 2rem;
  color: var(--color-white);
  background-color: #dc3232;
  border-color: #dc3232;
}
.wpcf7-not-valid-tip {
  font-size: var(--fm);
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  body.contact-thanks main.contact {
    padding-bottom: 20vh;
  }
  main.contact .accept {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.contact .accept .wpcf7-list-item {
    display: flex;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.contact section .inner {
    width: 100%;
  }
  main.contact dl {
    width: 100%;
  }
  .wpcf7-list-item {
    margin-left: 0 !important;
  }
  main.contact input.wpcf7-submit, 
  main.contact input.wpcf7-previous {
    padding: 1rem 3em;
  }
}

/* reCAPTCHAバッジ */
.grecaptcha-badge {
  visibility: hidden;
}
.page-id-167 .grecaptcha-badge,
.page-id-170 .grecaptcha-badge {
  visibility: visible;
}


/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
.footer-contents .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contents .flex > div {
  font-weight: 500;
  font-size: 1.125rem;
}
.footer-contents .flex > div h2 {
  font-size: 1.3rem;
}
.footer-contents .flex > div h2 span {
  font-size: 2.6rem;
  line-height: 1rem;
}
.footer-contents .flex > div h2 + p {
  margin-top: 0.25em;
}
.footer-contents .flex > div p.access {
  margin: 0.5rem 0;
}
.footer-contents .flex > div p.access a {
  display: block;
  padding: 0.5rem;
  border-radius: 0.25rem;
  color: var(--color-white);
  background-color: var(--color-black);
  font-size: 1.5rem;
  text-align: center;
}
.footer-contents .flex > div p.access a:hover {
  background-color: #e62d18;
}
.footer-contents .flex > div .contact .tel {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 3.5rem;
  font-size: 1rem;
  line-height: 1.5em;
  text-align: right;
}
.footer-contents .flex > div .contact .tel:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../images/icon-phone.svg) no-repeat center center / contain;
}
.footer-contents .flex > div .contact .tel span {
  font-size: 1.35rem;
}
.footer-contents .flex > div .contact .mail {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 4rem;
  text-align: right;
}
.footer-contents .flex > div .contact .mail:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../images/icon-mail.svg) no-repeat center center / contain;
}
.footer-contents .flex > div .contact .mail a {
  padding: 0.25em 1em;
  border-radius: 3em;
  color: var(--color-white);
  background-color: var(--color-black);
}
.footer-contents .flex > div .contact .mail a:hover {
  background-color: #e62d18;
}
.footer-contents ul.banner {
  display: flex;
  flex-wrap: wrap;
}
.footer-contents ul.banner li a:hover {
  opacity: .7;
  transition: .3s;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 2rem 5% 1rem 5%;
  background-color: var(--color-yellow);
}
.footer-nav p.logo {
  margin-right: 2rem;
}
.footer-nav p.logo img {
  width: 5rem;
  height: auto;
}
.footer-nav a {
  color: var(--color-black);
}
.footer-nav a:hover {
  color: var(--color-white);
}
.footer-nav nav {
  display: flex;
  padding-top: 1rem;
}
.footer-nav nav ul {
  margin-right: 3rem;
  font-size: 0.9rem;
  line-height: 1.75em;
}
.footer-nav nav ul li a:before {
  content: "〉";
  margin-right: 0.25em;
}
.footer-nav nav ul:nth-of-type(1) li:first-child {
  margin-bottom: 0.25em;
  font-size: 1.5rem;
  line-height: 1.25em;
}
.footer-nav nav ul:nth-of-type(1) li:first-child a:before {
  content: none;
}
.footer-nav p.fb {
  padding-top: 1rem;
  margin-left: auto;
}
.footer-nav p.fb a img {
  width: 2.5rem;
  height: 2.5rem;
  transition: .3s;
}
.footer-nav p.fb a img:hover {
  opacity: .7;
  transition: .3s;
}
footer small {
  display: block;
  width: 100%;
  margin-top: 4rem;
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  .footer-contents {
    width: 1200px;
    margin: 2rem auto;
  }
  .footer-contents .flex figure {
    padding-right: 4rem;
  }
  .footer-contents .flex figure img {
    width: auto;
    max-width: initial;
    height: 10em;
  }
  .footer-contents .flex > div {
    width: 30rem;
  }
  .footer-contents .flex > div h2 {
    display: flex;
    justify-content: space-between;
  }
  .footer-contents .flex > div h2 + p {
    display: flex;
    justify-content: space-between;
  }
  .footer-contents .flex > div .contact {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .footer-contents .flex > div .contact:after {
    content: "";
    display: block;
    width: 1px;
    height: 90%;
    position: absolute;
    left: 52.5%;
    top: 5%;
    background-color: var(--color-black);
  }
  .footer-contents ul.banner {
    width: 800px;
    align-items: center;
    margin: 3rem auto 1rem auto;
  }
  .footer-contents ul.banner li {
    width: calc(25% - (4rem / 3));
  }
  .footer-contents ul.banner li {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
  }
  .footer-contents ul.banner li:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  .footer-contents {
    padding: 2rem;
  }
  .footer-contents .flex {
    flex-direction: column;
  }
  .footer-contents .flex > div {
    order: 1;
    margin-bottom: 2rem;
    text-align: center;
  }
  .footer-contents .flex > div h2 {
    font-size: 1.25rem;
  }
  .footer-contents .flex > div h2 span {
    line-height: 1.25em;
  }
  .footer-contents .flex > div p {
    text-align: center;
  }
  .footer-contents .flex figure {
    order: 2;
    width: 100%;
  }
  .footer-contents .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-contents .contact .tel {
    margin-bottom: 0.5rem;
  }
  .footer-contents ul.banner {
    width: 90%;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2rem auto 0 auto;
  }
  .footer-contents ul.banner li {
    width: 48%;
  }
  .footer-contents ul.banner li {
    margin-bottom: 1rem;
  }
  .footer-nav nav {
    display: none;
  }
  .footer-nav p.fb {
    padding-top: 0;
  }
  footer small {
    margin-top: 1rem;
    line-height: 1.5em;
  }
}