@charset "utf-8";

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

/* root
--------------------------------------- */
:root {
  --color-white: #ffffff;
  --color-black: #231815;
  --color-gray: #c9caca;
  --color-blue: #1d68a8;
  --color-violet: #c6cde5;
  --fs: 0.8rem;
  --fm: 1.2rem;
  --fl: 1.5rem;
  --fll: 1.85rem;
  --gutter: 140px;
  --gutterw: 280px;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  :root {
  --pcinner: 920px;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  :root {
    --fm: 1.125rem;
    --fl: 1.25rem;
    --fll: 1.5rem;
  }
}


/* base,responsive
--------------------------------------- */
body {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: 180%;
  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: 96%;
    margin: 0 auto;
  }
  .pcinner {
    width: var(--pcinner);
    margin: 0 auto;
  }
}

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


/* ----------------------------------------------------------
 header,nav
---------------------------------------------------------- */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgb(0 67 141 / 0.8);
}
header.is-animation {
  box-shadow: 0 0px 10px #cccccc;
}
header .sitetitle {
  background-color: var(--color-white);
}
header .sitetitle a img {
  width: 100%;
}
header nav li a { 
  color: var(--color-white);
}
header a:hover {
  opacity: .7;
}


@media print, screen and (min-width: 767px) { /* -- pc -- */
  header {
    width: 100%;
    min-width: 1200px;
    height: 82px;
  }
  header .sitetitle {
    width: 300px;
    height: 82px;
    padding: 0.5rem 1rem;
  }
  #nav-toggle {
    display: none;
  }
  #gloval-nav ul {
    display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
  }
  #gloval-nav ul li {
    margin-right: 1rem;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  header {
    padding: 0;
    background-color: var(--color-white);
  }
  header .sitetitle {
    padding-left: 0.5rem;
    width: auto;
    height: 60px;
  }
  header .sitetitle a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  header .sitetitle a img {
    width: auto;
    height: calc(50px - 0.5rem);
  }
  .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: rgb(0 67 141 / 1);
    transition: 0.6s;
  }
  #nav-toggle div:hover {
    opacity: 0.7;
    transition: 0.6s;
  }
  #nav-toggle div span {
    width: 45%;
    height: 1px;
    left: 27.5%;
    display: block;
    background: var(--color-white);
    position: absolute;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
  }
  #nav-toggle div span:nth-child(1) {
    top: 25px;
  }
  #nav-toggle div span:nth-child(2) {
    top: 35px;
  }
  .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: 28px;
    transform: rotate(45deg);
    background-color: var(--color-white);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 28px;
    transform: rotate(-45deg);
    background-color: var(--color-white);
  }
  #gloval-nav {
    background: rgb(0 67 141 / 0.95);
    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 rgb(255 255 255 / 0.5);
  }
  #gloval-nav ul li:first-child {
    width: 100%;
  }
  #gloval-nav ul li a {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-white);
    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.6s;
  }
  .open #gloval-nav li a:hover {
    opacity: 0.5;
    transition: 0.6s;
  }
}

/* ----------------------------------------------------------
 all - common settings
---------------------------------------------------------- */
/*　fadein
--------------------------------------- */
.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}
body:not(.home) main {
  opacity: 0;
  animation: pageFade 0.5s ease-in-out forwards;
}
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* bg
--------------------------------------- */
.bgblue {
  color: var(--color-white);
  background-color: var(--color-blue);
}


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

/* link
--------------------------------------- */
.link {
  margin-top: 2rem;
}
.link a {
  display: inline-block;
  width: 16em;
  padding: 0.75em 0;
  border: 1px solid var(--color-white);
  border-radius: 3em;
  text-align: center;
}
.link a + a {
  margin-left: 1rem;
}
.primary-link {
  text-align: center;
}
.primary-link a {
  display: block;
  padding: 0.75rem 0;
  border: 1px solid #cccccc;
  background-color: var(--color-violet);
  text-align: center;
}
.primary-link a:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-blue);
}
.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 - normal
--------------------------------------- */
ul.ul_normal li {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  border-bottom: 1px dotted rgb(255 255 255 / 0.4);
}
ul.ul_normal li:before {
  content: "";
  display: block;
  width: 0.25em;
  height: 0.25em;
  margin-right: 0.5em;
  background-color: var(--color-go);
}
ul.ul_normal.white li {
  border-bottom: 1px dotted var(--color-bl);
}

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

/* ul - square
--------------------------------------- */
ul.ul_square li {
  margin-bottom: 0.25rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5em;
}
ul.ul_square li:before {
  content: "■";
}

/* ページコンタクト
--------------------------------------- */
.pagecontact {
  padding: 4rem 0;
}
.pagecontact h2 {
  font-size: var(--fl);
}
.pagecontact a {
  display: inline;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  .pagecontact h2 {
    display: flex;
    justify-content: center;
  }
}



/* ページャー
--------------------------------------- */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager .page-numbers {
  padding: 0.75rem;
  position: relative;
}
.pager .page-numbers.current,
.pager .page-numbers:hover {
  color: var(--color-blue);
}
.pager .page-numbers:after {
  content: ".";
  position: absolute;
  right: -0.25rem;
  bottom: 0.75rem;
}
.pager a.next:after {
  content: none;
}


/* ----------------------------------------------------------
 トップページ front-page.php
---------------------------------------------------------- */
/* ローディング */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1s 1.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 1s 0s forwards;
  width: 30vw;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  .loading__logo {
    width: 60vw;
  }
}

/* スライダー */
main.home .firstview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.home .firstview p {
  position: absolute;
  z-index: 1;
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
main.home .firstview p span {
  display: block;
  text-shadow: 2px 2px 2px rgb(35 24 21 / 0.75);
}
main.home .firstview p .ja {
  margin-bottom: 0.5rem;
  padding: 0 0.5em 1rem 0.5em;
  border-bottom: 1px solid var(--color-white);
  font-size: 3rem;
  line-height: 1em;
}
main.home .firstview p .en {
  font-size: 1.4rem;
  line-height: 1em;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .firstview p {
    padding: 0 1rem;
  }
  main.home .firstview p .ja {
    font-size: 1.5rem;
    line-height: 1.25em;
  }
  main.home .firstview p .en {
    font-size: 1rem;
    line-height: 1.25em;
  }
}

/* INFORMATION */
main.home .info {
  padding: 4rem 0;
}
main.home .info .flex h2 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.home .info .flex h2 a:hover {
  color: var(--color-black);
  background-color: var(--color-violet);
}
main.home .info .flex h2 a .en {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fm);
}
main.home .info .flex h2 a .ja {
  margin-top: 0.5rem;
  padding: 0 3em;
  color: var(--color-black);
  background-color: var(--color-violet);
}
main.home .info .flex h2 a:hover .ja {
  background-color: var(--color-white);
}
main.home .info .flex ul.postlist li a {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #cccccc;
}
main.home .info .flex ul.postlist li a:hover {
  opacity: 1;
  color: var(--color-blue);
}
main.home .info .flex ul.postlist li a time {
  width: 6.5em;
}
main.home .info .flex ul.postlist li a .category {
  width: 10em;
  border: 1px solid var(--color-blue);
  text-align: center;
}
main.home .info .flex ul.postlist li a .category.dayori {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.home .info .flex ul.postlist li a p {
  width: calc(100% - 16.5em);
  padding-left: 1em;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .info .flex {
    display: flex;
  }
  main.home .info .flex h2 {
    width: 30%;
  }
  main.home .info .flex ul.postlist {
    width: 70%;
    padding-left: 2rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .info {
    padding: 2rem 0;
  }
  main.home .info .flex h2 {
    margin-bottom: 1rem;
  }
  main.home .info .flex h2 a {
    padding: 1rem 0;
  }
  main.home .info .flex ul.postlist li a {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main.home .info .flex ul.postlist li a p {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}

/* ふくしま市町村支援機構について */
main.home .about {
  position: relative;
}
main.home .about .wrap {
  position: relative;
}
main.home .about .wrap .left h2 {
  position: relative;
  font-weight: 700;
  font-size: var(--fl);
  line-height: 1.5em;
}
main.home .about .wrap .left h2 + p {
  margin: 1rem 0;
}
main.home .about .wrap .left p.primary-link a {
  border-color: var(--color-black);
}
main.home .about .right {
  background: url(../images/top-about.webp) no-repeat center center / cover;
}
main.home .about .right p {
  height: 100%;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
main.home .about .right img {
  width: auto;
  max-width: initial;
  height: 80%;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .about .wrap .left {
    width: 50%;
    padding: 0 3rem;
  }
  main.home .about .wrap .left h2:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: var(--color-gray);
  }
  main.home .about .wrap .left h2 span {
    position: relative;
    z-index: 1;
    padding-right: 0.5em;
    background-color: var(--color-white);
  }
  main.home .about .right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    margin-left: 50vw;
    width: 50vw;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .about {
    display: flex;
    flex-direction: column;
  }
  main.home .about .right {
    order: 1;
    margin-bottom: 2rem;
  }
  main.home .about .right p {
    padding: 1rem;
  }
  main.home .about .right p img {
    width: 50%;
    height: auto;
  }
  main.home .about .wrap {
    order: 2;
  }
  main.home .about .wrap .left h2 {
    text-align: center;
  }
}

/* 機構が選ばれる理由 */
main.home .reason {
  padding: 4rem 0;
}
main.home .reason .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.home .reason h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: var(--fl);
  line-height: 1.5em;
  text-align: center;
}
main.home .reason ul li {
  font-size: var(--fm);
  line-height: 1.5em;
}

/*  発注者支援 */
main.home .hacchushashisen {
  padding: 3rem 0;
}
main.home .hacchushashisen .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}
main.home .hacchushashisen .left a {
  color: var(--color-white);
}
main.home .hacchushashisen .left a .primary-link {
  display: block;
  padding: 0.5rem 0;
  border: 1px solid #cccccc;
  color: var(--color-black);
  background-color: var(--color-violet);
  text-align: center;
}
main.home .hacchushashisen .left a:hover .primary-link {
  background-color: var(--color-white);
}
main.home .hacchushashisen .left h2 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: var(--fll);
}
main.home .hacchushashisen p.primary-link {
  margin-top: 2rem;
}
main.home .hacchushashisen p.primary-lin a {
  border-color: var(--color-black);
}
main.home .hacchushashisen ul {
  display: flex;
  justify-content: space-between;
}
main.home .hacchushashisen ul li {
  width: calc((100% - 4rem) / 3);
}
main.home .hacchushashisen ul li a {
  position: relative;
  overflow: hidden;
}
main.home .hacchushashisen ul li a:hover img {
  transform: scale(1.1);
}
main.home .hacchushashisen .wrap > p.primary-link {
  margin-top: 3rem;
}
main.home .hacchushashisen .wrap > p.primary-link a {
  display: inline-block;
  padding: 0.75rem 7em;
  font-weight: 700;
  font-size: var(--fm);
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .hacchushashisen .flex {
    display: flex;
  }
  main.home .hacchushashisen .left {
    width: 25%;
    padding-right: 2rem;
  }
  main.home .hacchushashisen ul {
    width: 75%;
  }
  main.home .hacchushashisen ul li a h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0.5rem 0;
    color: var(--color-black);
    background-color: rgb(255 255 255 / 0.8);
    text-align: center;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .hacchushashisen .left h2 {
    margin-bottom: 1rem;
  }
  main.home .hacchushashisen .left a .primary-link {
    margin-top: 1rem;
  }
  main.home .hacchushashisen ul {
    flex-direction: column;
    margin: 2rem auto;
    width: calc(100% - 2rem);
  }
  main.home .hacchushashisen ul li {
    width: 100%;
    margin-bottom: 1rem;
    background-color: var(--color-white);
  }
  main.home .hacchushashisen ul li:last-child {
    margin-bottom: 0;
  }
  main.home .hacchushashisen ul li a {
    display: flex;
    align-items: center;
  }
  main.home .hacchushashisen ul li a img {
    width: 35%;
    margin-right: 1rem;
  }
  main.home .hacchushashisen .wrap > p.primary-link {
    margin-top: 1rem;
  }
  main.home .hacchushashisen .wrap > p.primary-link a {
    display: block;
    padding: 0.75rem 0;
  }
}

/* 各種事業 */
main.home .jigyo {
  padding: 4rem 0;
}
main.home .jigyo ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.home .jigyo ul li a:hover img {
  transform: scale(1.1);
}
main.home .jigyo ul li:nth-child(3) a img,
main.home .jigyo ul li:nth-child(4) a img {
  order: 2;
  margin-left: 40%;
}
main.home .jigyo ul li a div {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.home .jigyo ul li a:hover div {
  background-color: var(--color-violet);
}
main.home .jigyo ul li:nth-child(3) a div,
main.home .jigyo ul li:nth-child(4) a div {
  order: 1;
  right: initial;
  left: 0;
}
main.home .jigyo ul li a div h2 {
  margin-bottom: 1rem;
}
main.home .jigyo ul li a div h2 .ja {
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1em;
}
main.home .jigyo ul li a div h2 .en {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: var(--fs);
  line-height: 1.5em;
}
main.home .jigyo ul li a div p:nth-of-type(1) {
  line-height: 1.5em;
} 
main.home .jigyo ul li a div p:nth-of-type(2) {
  display: block;
  margin-top: 0.5rem;
  padding: 0.125em 4em;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background-color: var(--color-violet);
  text-align: center;
}
main.home .jigyo ul li a:hover div p:nth-of-type(2) {
  background-color: var(--color-white);
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.home .jigyo ul li {
    width: calc(50% - 2rem);
    margin-bottom: 4rem;
  }
  main.home .jigyo ul li a {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  main.home .jigyo ul li a img {
    width: 60%;
    height: auto;
  }
  main.home .jigyo ul li a div {
    position: absolute;
    z-index: 1;
    right: 0;
    width: 50%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .jigyo {
    padding: 2rem 0;
  }
  main.home .jigyo ul li {
    margin-bottom: 2rem;
  }
  main.home .jigyo ul li a {
    position: relative;
  }
  main.home .jigyo ul li a img {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 20%;
  }
  main.home .jigyo ul li:nth-child(3) a img,
  main.home .jigyo ul li:nth-child(4) a img {
    margin-left: 0;
  }
  main.home .jigyo ul li a div {
    padding: 1rem;
  }
  main.home .jigyo ul li a div h2 {
    margin: 0.5rem 0;
    padding-left: calc(20% + 1rem);
  }
  main.home .jigyo ul li a div p:nth-of-type(1) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-white);
  }
}

/* 採用情報 */
main.home section.recruit {
  position: relative;
  padding: 4rem 0;
  background-color: #009e3b;
}
main.home section.recruit:before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  top: 1rem;
  background-color: var(--color-white);
}
main.home section.recruit:after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-white);
}
main.home section.recruit .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
main.home section.recruit .wrap h2 span {
  display: block;
  color: var(--color-white);
}
main.home section.recruit .wrap h2 img {
  width: 15rem;
  height: auto;
}
main.home section.recruit .wrap h2 .ja {
  margin-top: 1rem;
  font-weight: 700;
  font-size: var(--fl);
  line-height: 1.5em;
}
main.home section.recruit .wrap figure {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem auto;
}
main.home section.recruit .wrap figure img {
  width: 49%;
}
main.home section.recruit .wrap p:nth-of-type(1) {
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
}
main.home section.recruit .wrap p:nth-of-type(2) {
  margin: 1rem auto;
  font-size: var(--fm);
  line-height: 1.5em;
}
main.home section.recruit .wrap p.primary-link a {
  display: inline-block;
  padding: 1rem 8em;
  border-radius: 0.5rem;
  font-size: var(--fm);
  line-height: 1.5em;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home section.recruit .wrap h2 img {
    width: 45vw;
    height: auto;
  }
  main.home section.recruit .wrap h2 .ja {
    margin-top: 0.5rem;
  }
  main.home section.recruit .wrap p {
    text-align: center;
  }
  main.home section.recruit .wrap p.primary-link a {
    display: block;
    padding: 1rem 0;
  }
  main.home section.recruit:after {
    height: 60%;
  }
}


/* ----------------------------------------------------------
 COMMON - PAGE
---------------------------------------------------------- */
main.page section.title {
  position: relative;
  margin-bottom: 2rem;
}
main.page section.title figure img {
  width: 100%
}
main.page section.title h1 {
  text-align: center;
  color: var(--color-white);
  font-family: "Noto Serif JP", serif;
}
main.page.about section.title h1 {
  color: var(--color-black);
}
main.page section.title h1 span {
  display: block;
  text-shadow: 2px 2px 2px rgb(35 24 21 / 0.75);
}
main.page.about section.title h1 span {
  text-shadow: none;
}
main.page section.title h1 span.ja {
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-white);
  font-size: 3.2rem;
  line-height: 1em;
}
main.page.about section.title h1 span.ja {
  border-bottom: 1px solid var(--color-black);
}
main.page section.title h1 span.en {
  font-size: 1.4rem;
  line-height: 1em;
}
main.page section.subtitle {
  margin-bottom: 2rem;
}
main.page section.subtitle p:nth-of-type(1) {
  margin-bottom: 0.5rem;
  font-weight: 900;
  font-size: var(--fll); 
  line-height: 1.5em;
}
main.page section.subtitle p:nth-of-type(2) {
  font-size: var(--fl); 
  line-height: 1.75em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.page section.title h1 {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding-top: 82px;
    text-align: center;
    color: var(--color-white);
    font-family: "Noto Serif JP", serif;
  }
  main.page section.subtitle {
    text-align: center;
  }
  main.notitleimage {
    padding-top: calc(82px + 4rem);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.page section.title {
    padding: 3rem 0;
  }
  main.page section.title figure {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
  }
  main.page section.title figure img {
    width: auto;
    max-width: initial;
    height: 100%;
    transform: translateX(-50vw);
  }
  main.page section.title h1 {
    position: relative;
    z-index: 1;
  }
  main.page section.title h1 span.ja {
    padding-bottom: 0.5rem;
    font-size: 2rem;
    line-height: 1.5em;
  }
  main.page section.title h1 span.en {
    font-size: 1rem;
    line-height: 1.5em;
  }
  main.page section.subtitle p:nth-of-type(1) {
    margin-bottom: 1rem;
  }
}


/* ----------------------------------------------------------
 ふくしま市町村支援機構について page-about.php
---------------------------------------------------------- */
/* ご挨拶 */
main.about .aisatsu {
  padding: 2rem 0 4rem 0;
}
main.about .aisatsu .flex {
  display: flex;
}
main.about .aisatsu .flex .left p.honbun {
  margin-bottom: 1rem;
}
main.about .aisatsu .flex .left p.shomei {
  text-align: right;
}
main.about .aisatsu .flex .left p.shomei span:nth-of-type(1) {
  margin-left: 1rem;
  font-size: var(--fm);
}
main.about .aisatsu .flex .left p.shomei span:nth-of-type(2) {
  margin-left: 1rem;
  font-size: var(--fl);
  line-height: 1.5em;
  letter-spacing: 0.25em;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.about .aisatsu .flex {
    align-items: flex-end;
  }
  main.about .aisatsu .flex .left {
    width: 75%;
    padding-right: 3rem;
  }
  main.about .aisatsu .flex figure {
    width: 25%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.about .aisatsu {
    padding-top: 0;
  }
  main.about .aisatsu .flex {
    flex-direction: column;
  }
  main.about .aisatsu .flex figure {
    order: 1;
    width: 75%;
    margin: 0 auto 1rem auto;
  }
  main.about .aisatsu .flex .left {
    order: 2;
  }
}

/* 会社概要 */
main.about .gaiyou {
  padding: 4rem 0;
}
main.about .gaiyou .flex {
  display: flex;
  flex-wrap: wrap;
}
main.about .gaiyou h2 {
  margin-bottom: 1rem;
  color: #f7e976;
  font-weight: 700;
  font-size: var(--fm);
  line-height: 1.75em;
}
main.about .gaiyou .flex h3 {
  width: 100%;
}
main.about .gaiyou .flex dl {
  display: flex;
  flex-wrap: wrap;
}
main.about .gaiyou .flex dl dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
main.about .gaiyou .flex dl dd ul li:before {
  content: "・";
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.about .gaiyou .flex {
    justify-content: space-between;
    align-items: flex-start;
  }
  main.about .gaiyou .flex .left {
    width: 50%;
    margin-bottom: 2rem;
  }
  main.about .gaiyou .flex figure {
    width: 50%
  }
  main.about .gaiyou .flex h3 {
    margin-bottom: 1rem;
  }
  main.about .gaiyou .flex dl {
    width: 50%;
  }
  main.about .gaiyou .flex dl:nth-of-type(1) {
    padding-right: 2rem;
    border-right: 1px solid var(--color-white);
  }
  main.about .gaiyou .flex dl:nth-of-type(2) {
    padding-left: 2rem;
  }
  main.about .gaiyou .flex dl dt {
    width: 10em;
    display: flex;
    justify-content: space-between;
  }
  main.about .gaiyou .flex dl dd {
    width: calc(100% - 10em);
    padding-left: 1em;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.about .gaiyou .flex {
    flex-direction: column;
  }
  main.about .gaiyou .flex figure {
    order: 1;
    margin-bottom: 1rem;
  }
  main.about .gaiyou .flex .left {
    order: 2;
    margin-bottom: 1rem;
  }
  main.about .gaiyou .flex dl {
    flex-direction: column;
  }
  main.about .gaiyou .flex dl dt span {
    margin-left: 1em;
  }
  main.about .gaiyou .flex dl dd {
    padding-left: 1em;
  }
}

/* 組織図 */
main.about .soshikizu {
  padding: 4rem 0;
}
main.about .soshikizu .wrap h2 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: var(--fl);
  text-align: center;
}
main.about .soshikizu .wrap figure {
  width: 90%;
  margin: 1rem auto;
}

/* 各課担当業務 */
main.about .kakuka {
  width: var(--pcinner);
  margin: 4rem auto 2rem auto;
}
main.about .kakuka h3 {
  font-size: var(--fm);
}
main.about .kakuka dl {
  width: 100%;
  margin: 0.5rem auto 0 auto;
  border-top: 1px solid var(--color-black);
  display: flex;
  flex-wrap: wrap;
}
main.about .kakuka dl dt {
  width: 25%;
  padding: 1rem 1em;
  border-bottom: 1px solid var(--color-black);
}
main.about .kakuka dl dt:before {
  content: "■";
}
main.about .kakuka dl dd {
  width: 75%;
  padding: 1rem 1em;
  border-bottom: 1px solid var(--color-black);
  display: flex;
  flex-wrap: wrap;
}
main.about .kakuka dl dd ul {
  width: 100%;
}
main.about .kakuka dl dd ul li {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-black);
}
main.about .kakuka dl dd ul li:first-child {
  padding-top: 0;
}
main.about .kakuka dl dd ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
main.about .kakuka dl dd .busho {
  width: 25%;
  display: flex;
  align-items: center;
}
main.about .kakuka dl dd .naiyou {
  width: 75%;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.about .kakuka {
    padding-top: 0;
  }
  main.about .kakuka dl dt {
    width: 100%;
    padding: 0.5rem 0 0 0;
    border-bottom: 0;
  }
  main.about .kakuka dl dd {
    width: 100%;
    padding: 0.5rem 0 0.5rem 1em;
  }
  main.about .kakuka dl dd .busho {
    width: 35%;
    display: initial;
  }
}

/* 役員情報 */
main.about .member {
  padding: 4rem 0;
  background-color: #efefef;
}
main.about .member .flex .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}
main.about .member table + .title {
  margin-top: 2rem;
}
main.about .member .flex h2 {
  font-weight: 700;
  font-size: var(--fl);
}
main.about .member .right h2 {
  letter-spacing: 1em;
}
main.about .member table {
  width: 100%;
  text-align: center;
}
main.about .member table thead tr {
  margin-bottom: 0.25rem;
}
main.about .member table thead tr th {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.about .member table tr {
  display: flex;
  justify-content: space-between;
}
main.about .member table th {
  text-align: center;
}
main.about .member table .position {
  width: 15%;
}
main.about .member table .name {
  width: 20%;
}
main.about .member table .job {
  width: 60%;
}
main.about .member table tbody tr {
  border-bottom: 1px solid var(--color-black);
}
main.about .member .rekidai {
  margin: 1rem 0 3rem 0;
}
main.about .member .rekidai h3 {
  position: relative;
  width: 60%;
  margin-left: 40%;
}
main.about .member .rekidai h3:after {
  content: "";
  display: block;
  width: calc(100% - 2.5rem);
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  bottom: 0;
}
main.about .member .rekidai h3 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.about .member .rekidai h3 a:hover {
  color: #e62d18;
}
main.about .member .rekidai h3 a:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon-pdf.svg) no-repeat center center / contain;
  transition: .2s;
}
main.about .member .rekidai h3 a:hover:after {
  opacity: .6;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.about .member .flex {
    display: flex;
    justify-content: space-between;
  }
  main.about .member .flex .left {
    width: 48.5%;
  }
  main.about .member .flex .right {
    width: 48.5%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.about .member table {
    margin-bottom: 2rem;
  }
  main.about .member table tbody {
    font-size: 0.9rem;
    line-height: 1.5em;
  }
  main.about .member table tbody td {
    padding: 0.25em 0;
  }
  main.about .member table .name {
    width: 25%;
  }
  main.about .member table .job {
    width: 55%;
  }
}

/* 定款・規定・業務及び財務資料 */
main.about .document {
  padding: 4rem 0;
}
main.about .document .flex .left {
  display: flex;
  flex-wrap: wrap;
}
main.about .document .flex .left ul {
  width: 100%;
}
main.about .document .flex h2 {
  width: 100%;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
  font-weight: 700;
  font-size: var(--fl);
}
main.about .document .flex .left ul,
main.about .document .flex .right div {
  padding: 0 0.5rem;
}
main.about .document .flex .left ul li,
main.about .document .flex .right ul li {
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
main.about .document .flex .left ul li:after,
main.about .document .flex .right ul li:after {
  content: "";
  display: block;
  width: calc(100% - 2.5rem);
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  bottom: 0;
}
main.about .document .flex .left ul li a,
main.about .document .flex .right ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.about .document .flex a:hover {
  color: #e62d18;
}
main.about .document .flex .left ul li a:after,
main.about .document .flex .right ul li a:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon-pdf.svg) no-repeat center center / contain;
  transition: .2s;
}
main.about .document .flex .left ul li a:hover:after,
main.about .document .flex .right ul li a:hover:after {
  opacity: .6;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.about .document .flex {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    align-items: flex-start;
  }
  main.about .document .flex .right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
  }
  main.about .document .flex .right div {
    width: calc((100% - 2rem) / 3);
  }
  main.about .document .flex .right div > p {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.about .document .flex .left {
    margin-bottom: 2rem;
  }
  main.about .document .flex .right div {
    margin-bottom: 1rem;
  }
}


/* ----------------------------------------------------------
 発注者支援 page-hacchushashien.php
---------------------------------------------------------- */
/* 支援の流れ */
main.hacchushashien .nagare ul.parent > li {
  display: flex;
  margin-bottom: 3rem;
}
main.hacchushashien .nagare ul.parent > li figure {
  width: 40%;
}
main.hacchushashien .nagare ul.parent > li div {
  width: 60%;
  padding-left: 3rem;
}
main.hacchushashien .nagare ul.parent > li div h2 {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  color: var(--color-white);
  background-color: var(--color-blue);
  border: 1px solid var(--color-black);
  font-size: var(--fl);
  line-height: var(--fllh);
  text-align: center;
}
main.hacchushashien .nagare ul.parent > li:nth-child(2) div h2 {
  padding-left: 2em;
}
main.hacchushashien .nagare ul.parent > li:nth-child(2) div h2 span {
  letter-spacing: 2em;
}
main.hacchushashien .nagare ul.parent > li div h2 + p {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border: 1px solid var(--color-black);
  font-size: var(--fm);
  line-height: var(--fmlh);
  text-align: center;
}
main.hacchushashien .nagare ul.parent + p {
  padding: 0.5rem 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  font-weight: 900;
  font-size: var(--fl);
  line-height: 1.5em;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.hacchushashien .nagare ul.parent > li:first-child {
    opacity: 1;
  }
}

/* 有資格者数 */
main.hacchushashien .shikaku {
  padding: 2rem 0 4rem 0;
}
main.hacchushashien .shikaku h2 {
  margin-bottom: 0.5rem;
  font-size: var(--fm);
}
main.hacchushashien .shikaku h2 span {
  font-size: 1rem;
}
main.hacchushashien .shikaku .shikakulist dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.hacchushashien .shikaku .shikakulist dl dt {
  width: calc(100% - 3em);
}
main.hacchushashien .shikaku .shikakulist dl dd {
  width: 3em;
  text-align: right;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.hacchushashien .nagare ul.parent > li:first-child {
    opacity: 1;
  }
  main.hacchushashien .shikaku .shikakulist {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  main.hacchushashien .shikaku .shikakulist dl {
    width: 30%;
  }
}

/* 建設DXの取組 */
main.hacchushashien .dx {
  padding: 2rem 0;
}
main.hacchushashien .dx h2 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
}
main.hacchushashien .dx h2 + p {
  font-weight: 700;
  font-size: var(--fm);
  line-height: 1.75em;
}
main.hacchushashien .dx figure {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 1rem auto;
}
main.hacchushashien .dx figure img {
  width: 49%;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.hacchushashien .nagare ul.parent + p {
    text-align: center;
  }
  main.hacchushashien .dx {
    text-align: center;
  }
  main.hacchushashien .dx figure {
    width: var(--pcinner);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.hacchushashien .nagare ul.parent > li {
    flex-direction: column;
  }
  main.hacchushashien .nagare ul.parent > li figure {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  main.hacchushashien .nagare ul.parent > li div {
    width: 100%;
    padding-left: 0;
  }
}

/* ----------------------------------------------------------
 土木事業 page-dobokujigyo.php
 建築事業 page-kenchikujigyo.php
 設備・水道事業 page-setsubijigyo.php
---------------------------------------------------------- */
/* 3事業共通パーツ */
main.jigyo .jigyolist .flex {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
}
main.jigyo .jigyolist .flex h2 {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  font-size: var(--fl);
  line-height: 1.5em;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.jigyo .jigyolist.bgblue .flex h2 {
  color: var(--color-black);
  background-color: var(--color-white);
}
main.jigyo .jigyolist .flex .left h2 + p,
main.jigyo .jigyolist .flex .right h2 + p {
  margin-bottom: 1rem;
  padding: 0 1rem;
  font-size: var(--fl);
  line-height: 1.5em;
}
main.jigyo .jigyolist .flex .ul_square {
  padding: 0 1rem;
}
main.jigyo .jigyolist .flex figure img {
  width: 100%;
}
main.jigyo .jigyoichiran {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.jigyo .jigyolist .flex .left {
    width: calc(50% + 2rem);
    padding-right: 2rem;
  }
  main.jigyo .jigyolist .flex .right {
    width: calc(50% + 2rem);
    padding-left: 2rem;
  }
  main.jigyo .jigyolist .flex figure {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.jigyo .jigyolist .flex .left,
  main.jigyo .jigyolist .flex .right {
    order: 1;
  }
  main.jigyo .jigyolist .flex figure {
    order: 2;
    padding: 0 1rem;
    margin-top: 1rem;
  }
}

/* 実績投稿 */
main.jigyo section.post ul.post li {
  width: var(--pcinner);
}
main.jigyo section.post ul.post li a div p.cat {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  color: var(--color-white);
  background-color: var(--color-black);
  font-size: var(--fm);
}
main.jigyo section.post ul.post li a div p.cat span.letter-space {
  letter-spacing: 1em;
}
main.jigyo section.post ul.post li a div p.subtitle {
  margin-bottom: 1rem;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid var(--color-black);
}
main.jigyo section.post ul.post li a div h3 {
  padding: 0 0.5rem;
  font-size: var(--fl);
  line-height: 1.5em;
}
main.jigyo section.post ul.post li a div p.link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 2em;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  background-color: var(--color-violet);
  text-align: center;
}
main.jigyo section.post ul.post li a:hover div p.link {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.jigyo section.post ul.post li a figure {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
main.jigyo section.post ul.post li a figure img {
  height: 100%;
  object-fit: cover;
}
main.jigyo section.post ul.post li a:hover figure img {
  transform: scale(1.1);
}
main.jigyo section.post .slidenav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 2rem auto 4rem auto;
}
main.jigyo section.post .slidenav > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
main.jigyo section.post .slidenav .swiper-pagination {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-black) !important;
}
main.jigyo section.post .swiper-button-next,
main.jigyo section.post .swiper-button-prev {
  position: relative !important;
  right: initial !important;
  left:  initial !important;
  top: initial !important;
  bottom:  initial !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  margin: 0 0.5rem;
}
main.jigyo .swiper-button-prev:after,
main.jigyo .swiper-rtl .swiper-button-next:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/icon-arrow.svg) no-repeat center center / contain;
  transform: scaleX(-1);
}
main.jigyo .swiper-button-next:after,
main.jigyo .swiper-rtl .swiper-button-prev:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/icon-arrow.svg) no-repeat center center / contain;
}
main.jigyo .swiper-button-next:hover:after,
main.jigyo .swiper-button-prev:hover:after {
  opacity: .6;
}
main.jigyo section.post .slidenav p.primary-link a {
  padding: 0.75rem 6em; 
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.jigyo section.post ul.post li {
    border-right: 1px solid var(--color-gray);
  }
  main.jigyo section.post ul.post li a {
    display: flex;
    align-items: flex-start;
    padding: 2rem 4rem;
  }
  main.jigyo section.post ul.post li a div {
    width: 45%;
    padding-right: 4rem;
  }
  main.jigyo section.post ul.post li a figure {
    width: 55%;
  }
  main.jigyo section.post .slidenav p.primary-link {
    padding-left: 4rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.jigyo section.post .swipercontainer {
    width: 85%;
    margin: 3rem auto;
  }
  main.jigyo section.post ul.post li a {
    display: flex;
    flex-direction: column;
  }
  main.jigyo section.post ul.post li a figure {
    order: 1;
    margin-bottom: 1rem;
  }
  main.jigyo section.post ul.post li a > div {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  main.jigyo section.post ul.post li a div p.subtitle {
    margin-bottom: 0.5rem;
  }
  main.jigyo section.post ul.post li a > div p.cat {
    text-align: center;
  }
  main.jigyo section.post ul.post li a > div p.link {
    margin-left: auto;
  }
  main.jigyo section.post .slidenav p.primary-link {
    margin-top: 2rem;
  }
}

/* 土木事業ページ */
main.dobokujigyo .saigai {
  margin-top: 2rem;
  padding-top: 2rem;
}
main.dobokujigyo .josen {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

/* 建築事業ページ */
main.kenchikujigyo .saigai {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kenchikujigyo .rokyu {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

/* 設備・水道事業ページ */
main.setsubijigyo .setsubi {
  margin-top: 2rem;
  padding-top: 2rem;
}
main.setsubijigyo .setsubi .example {
  width: 100%;
  margin: 2rem 1rem 0 1rem;
  padding: 1.5rem;
  background-color: #dcdddd;
}
main.setsubijigyo .setsubi .example ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
main.setsubijigyo .setsubi .example ul li {
  margin-bottom: 0.25rem;
  margin-right: 2em;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5em;
}
main.setsubijigyo .setsubi .example ul li:before {
  content: "〇";
}
main.setsubijigyo .suido {
  margin: 2rem auto;
  padding: 2rem 0;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.setsubijigyo .setsubi {
    padding-top: 0;
  }
  main.setsubijigyo .setsubi .example {
    order: 3;
  }
  main.setsubijigyo .setsubi .example ul li {
    width: 100%;
    margin-right: 0;
  }
}


/* ----------------------------------------------------------
 公益事業 page-kouekijigyo.php
 土木事業 page-dobokujigyo.php
 建築事業 page-kenchikujigyo.php
 設備・水道事業 page-setsubijigyo.php
---------------------------------------------------------- */
/* ページ下 事業一覧リンク */
.jigyoichiran .wrap {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.jigyoichiran .wrap article h2 {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  color: var(--color-white);
  background-color: var(--color-black);
  text-align: center;
  font-weight: 700;
  font-size: var(--fl);
  line-height: 1.5em;
}
.jigyoichiran .wrap article ul {
  padding: 0.75rem 1.5rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  .jigyoichiran .wrap article {
    width: 32%;
    display: flex;
    flex-direction: column;
  }
  .jigyoichiran .wrap article .primary-link {
    margin-top: auto;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  .jigyoichiran .wrap {
    flex-direction: column;
  }
  .jigyoichiran .wrap article {
    margin-bottom: 2rem;
  }
  .jigyoichiran .wrap article ul {
    padding: 0.25rem 0.5rem;
  }
}

/* ----------------------------------------------------------
 事業実績 single-works.php
---------------------------------------------------------- */
main.works section.post {
  padding-bottom: 4rem;
}
main.works article p.cat {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.works article p.cat .letter-space {
  letter-spacing: 1em;
  margin-left: 1em;
}
main.works article h1 {
  margin-bottom: 2rem;
  font-size: var(--fl);
  line-height: 1.75em;
  text-align: center;
}
main.works article .flex .slider .swiper-main {
  margin-bottom: 1rem;
}
main.works .swiper-button-next,
main.works .swiper-button-prev {
  color: var(--color-white) !important;
}
main.works article .flex .slider .swiper-thumb .swiper-slide {
  width: calc((100% - 3rem) / 4) !important;
  height: auto;
  margin-right: 1rem;
}
main.works article .flex .slider .swiper-thumb .swiper-slide:hover {
  cursor: pointer;
}
main.works article .flex .slider .swiper-thumb .swiper-slide figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
main.works article .flex .slider .swiper-thumb .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.works article .flex .slider .swiper-thumb .swiper-slide:hover figure img {
  transform: scale(1.1);
}
main.works article .flex .slider .swiper-thumb .swiper-slide:last-of-type {
  margin-right: 0;
}
main.works article .flex .right .subtitle {
  padding: 0.25em 1rem;
  color: var(--color-white);
  background-color: var(--color-black);
  font-size: var(--fm);
  line-height: 1.75em;
}
main.works article .flex .right ul {
  padding: 1rem;
}
main.works article .flex .right ul li {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.works article .flex .right p.des {
  padding: 1rem;
}
main.works article .flex .right ul + p.des {
  border-top: 1px solid var(--color-black);
}
main.works .postnav {
  display: flex;
  justify-content: center;
  position: relative;
  width: var(--pcinner);
  margin: 3rem auto 0 auto;
  font-size: var(--fm);
  line-height: 1em;
}
main.works .postnav .back {
  padding: 0.5em 1em;
  border-radius: 3em;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.works .postnav .prev,
main.works .postnav .next {
  padding: 0.5em 1em;
  border-radius: 3em;
  color: var(--color-white);
  background-color: #595757;
}
main.works .postnav .prev:before {
  content: "\0ab";
  margin-right: 0.5em;
  font-size: 1.75rem;
}
main.works .postnav .next:after {
  content: "\0bb";
  margin-left: 0.5em;
  font-size: 1.75rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.works article .flex {
    display: flex;
  }
  main.works article .flex .slider {
    width: calc(50% - 2rem);
  }
  main.works article .flex .right {
    width: calc(50% + 2rem);
    padding-left: 2rem;
  }
  main.works .postnav .prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  main.works .postnav .next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.works article h1 {
    text-align: left;
  }
  main.works article .flex .slider {
    margin-bottom: 2rem;
  }
  main.works article .flex .slider .swiper-main {
    margin-bottom: 0.5rem;
  }
  main.works article .flex .slider .swiper-thumb .swiper-slide {
    width: calc((100% - 1.5rem) / 4) !important;
    margin-right: 0.5rem;
  }
  main.works article .flex .right ul,
  main.works article .flex .right ul + p.des {
    padding: 1rem 0;
  }
  main.single.works section.post .postnav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main.single.works section.post .postnav .prev {
    order: 1;
  }
  main.single.works section.post .postnav .next {
    order: 2;
  }
  main.single.works section.post .postnav .back {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}

/* ----------------------------------------------------------
 事業実績 archive-works.php
---------------------------------------------------------- */
main.works section.archive {
  padding-bottom: 4rem;
}
main.works section.archive h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.works section.archive nav {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
main.works section.archive ul.nav-works {
  display: flex;
  border: 2px solid var(--color-blue);
}
main.works section.archive ul.nav-works li {
  width: 6em;
  border-right: 2px solid var(--color-blue);
  font-size: var(--fm);
  text-align: center;
}
main.works section.archive ul.nav-works li:last-child {
  border-right: 0;
}
main.works section.archive ul.nav-works li.letter-space a {
  letter-spacing: 1em;
  padding-left: 1em;
}
main.works section.archive ul.nav-works li a {
  padding: 0.25em 0;
}
main.works section.archive ul.nav-works li a:hover {
  background-color: var(--color-violet);
}
body.post-type-archive-works  main.works section.archive ul.nav-works li:nth-child(1) a,
body.post-type-archive-works  main.works section.archive ul.nav-works li:nth-child(1) a:hover,
body.term-construction-projects main.works section.archive ul.nav-works li:nth-child(2) a,
body.term-construction-projects main.works section.archive ul.nav-works li:nth-child(2) a:hover,
body.term-architecture-projects main.works section.archive ul.nav-works li:nth-child(3) a,
body.term-architecture-projects main.works section.archive ul.nav-works li:nth-child(3) a:hover,
body.term-equipment-projects main.works section.archive ul.nav-works li:nth-child(4) a,
body.term-equipment-projects main.works section.archive ul.nav-works li:nth-child(4) a:hover,
body.term-water-supply-projects main.works section.archive ul.nav-works li:nth-child(5) a,
body.term-water-supply-projects main.works section.archive ul.nav-works li:nth-child(5) a:hover,
body.term-disaster-recovery main.works section.archive ul.nav-works li:nth-child(6) a,
body.term-disaster-recovery main.works section.archive ul.nav-works li:nth-child(6) a:hover,
body.term-other main.works section.archive ul.nav-works li:nth-child(7) a,
body.term-other main.works section.archive ul.nav-works li:nth-child(7) a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.works section.archive ul.post {
  display: flex;
  flex-wrap: wrap;
}
main.works section.archive ul.post li {
  width: 32%;
  margin-bottom: 4rem;
  margin-right: 2%;
  text-align: center;
}
main.works section.archive ul.post li:nth-child(3n) {
  margin-right: 0;
}
main.works section.archive ul.post li p.cat {
  margin-bottom: 1rem;
  padding: 0.25em 0;
  color: var(--color-white);
  background-color: var(--color-black);
  font-weight: 700;
  font-size: var(--fm);
  text-align: center;
}
main.works section.archive ul.post li p.cat .letter-space {
  letter-spacing: 1em;
  margin-left: 1em;
}
main.works section.archive ul.post li figure {
  margin-bottom: 0.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
main.works section.archive ul.post li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.works section.archive ul.post li a:hover figure img {
  transform: scale(1.1);
}
main.works section.archive ul.post li p.subtitle {
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--color-black);
  text-align: center;
}
main.works section.archive ul.post li h2 {
  padding: 0 1em;
  text-align: left;
  font-size: var(--fm);
  line-height: 1.5em;
}
main.works section.archive ul.post li a:hover p.subtitle,
main.works section.archive ul.post li a:hover h2 {
  color: var(--color-blue);
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.works section.archive ul.nav-works {
    flex-wrap: wrap;
    border-bottom: 0;
  }
  main.works section.archive ul.nav-works li {
    width: calc(100% / 3);
    border-bottom: 2px solid var(--color-blue);
  }
  main.works section.archive ul.nav-works li:first-child {
    width: 100%;
    border-right: 0;
  }
  main.works section.archive ul.nav-works li:nth-child(4),
  main.works section.archive ul.nav-works li:nth-child(7) {
    border-right: 0;
  }
  main.works section.archive ul.post li {
    width: 100%;
  }
}


/* ----------------------------------------------------------
 公益事業 page-kouekijigyo.php
---------------------------------------------------------- */
/* 事業案内 */
main.kouekijigyo .jigyo ol > li {
  margin-bottom: 3rem;
}
main.kouekijigyo .jigyo h2 {
  margin-bottom: 1rem;
  padding: 0.5em 0;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: var(--fll);
  line-height: var(--fllh);
  text-align: center;
}
main.kouekijigyo .jigyo h3 {
  margin: 1rem auto;
  padding: 0.5rem 0;
  border: 1px solid var(--color-blue);
  font-size: var(--fl);
  line-height: var(--fmlh);
  text-align: center;
}
main.kouekijigyo .jigyo p + h3 {
  margin-top: 1.5rem;
}
main.kouekijigyo .jigyo h3 + p {
  font-size: var(--fm);
}
main.kouekijigyo .jigyo .example {
  margin: 1rem auto 2rem auto;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #dff2fc;
}
main.kouekijigyo .jigyo .example h4 {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
}
main.kouekijigyo .jigyo .primary-link a {
  display: block;
  margin: 1.5rem auto 1rem auto;
  padding: 1em 0;
  border-radius: 0.5rem;
  font-size: var(--fm);
}
main.kouekijigyo .jigyo .primary-link a:after {
  content: "\0bb";
  margin-left: 0.25em;
  font-size: 1.75rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kouekijigyo .jigyo h3 + p {
    text-align: center;
  }
  main.kouekijigyo .jigyo .example {
    width: calc(100% - 4rem);
  }
}

/* ③情報提供事業 */
main.kouekijigyo .jigyo .johoteikyo {
  display: flex;
  margin-bottom: 2rem;
}
main.kouekijigyo .jigyo .johoteikyo .left {
  display: flex;
  flex-direction: column;
  font-size: var(--fm);
  line-height: 1.75em;
  text-align: center;
}
main.kouekijigyo .jigyo .johoteikyo .left .primary-link a {
  margin: 1rem 0.5rem;
}
main.kouekijigyo .jigyo .johoteikyo .right {
  display: flex;
}
main.kouekijigyo .jigyo .johoteikyo .right figure {
  width: calc(50% - 1rem);
  margin: 0 0.5rem;
}
main.kouekijigyo .jigyo .johoteikyo .right figure img {
  border: 1px solid #cccccc;
}
main.kouekijigyo .jigyo h4 {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
  font-size: var(--fl);
}
main.kouekijigyo .jigyo .ul_johoteikyo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1rem auto;
}
main.kouekijigyo .jigyo .ul_johoteikyo li {
  position: relative;
  margin-bottom: 0.5rem;
  font-size: var(--fm);
}
main.kouekijigyo .jigyo .ul_johoteikyo li:after {
  content: "";
  display: block;
  width: calc(100% - 3rem);
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  bottom: 0;
}
main.kouekijigyo .jigyo .ul_johoteikyo li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.kouekijigyo .jigyo .ul_johoteikyo li a:hover {
  color: #e62d18;
}
main.kouekijigyo .jigyo .ul_johoteikyo li a:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/icon-pdf.svg) no-repeat center center / contain;
  transition: .2s;
}
main.kouekijigyo .jigyo .ul_johoteikyo li a:hover:after {
  opacity: .6;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kouekijigyo .jigyo .johoteikyo {
    padding: 1rem 2rem 0 2rem;
  }
  main.kouekijigyo .jigyo .johoteikyo .left {
    width: 60%;
    padding-top: 1rem;
    padding-right: 2rem;
  }
  main.kouekijigyo .jigyo .johoteikyo .left .primary-link {
    display: flex;
    margin-top: auto;
  }
  main.kouekijigyo .jigyo .primary-link a {
    width: 20em;
  }
  main.kouekijigyo .jigyo .johoteikyo .right {
    width: 40%;
  }
  main.kouekijigyo .jigyo ol > li:first-child {
    opacity: 1;
  }
  main.kouekijigyo .jigyo h4 {
    text-align: center;
  }
  main.kouekijigyo .jigyo .ul_johoteikyo {
    width: calc(100% - 4rem);
  }
  main.kouekijigyo .jigyo .ul_johoteikyo li {
    width: 49%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kouekijigyo .jigyo .johoteikyo {
    flex-direction: column;
  }
  main.kouekijigyo .jigyo .johoteikyo .right {
    order: 1;
    margin-bottom: 1rem;
  }
  main.kouekijigyo .jigyo .johoteikyo .left {
    order: 2;
  }
  main.kouekijigyo .jigyo .ul_johoteikyo {
    flex-direction: column;
  }
}


/* ----------------------------------------------------------
 研修事業 page-kenshujigyo.php
---------------------------------------------------------- */
main.kenshujigyo .subtitle figure {
  display: flex;
  align-items: flex-start;
  margin: 3rem auto;
}
main.kenshujigyo .subtitle figure img {
  width: 50%;
}

/* お知らせ */
main.kenshujigyo .info {
  padding: 0 0 4rem 0;
}
main.kenshujigyo .info .wrap {
  padding: 1rem 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
main.kenshujigyo .info .wrap h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: var(--fl);
}
main.kenshujigyo .info ul.postlist li {
  border-bottom: 1px solid #cccccc;
}
main.kenshujigyo .info ul.postlist li:last-child {
  border-bottom: 0;
}
main.kenshujigyo .info .wrap ul.postlist li a {
  display: flex;
  padding: 0.5rem 0;
}
main.kenshujigyo .info .wrap ul.postlist li a:hover {
  color: var(--color-blue);
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kenshujigyo .info .pcinner {
    display: flex;
  }
  main.kenshujigyo .info h2 {
    width: 10em;
    text-align: center;
  }
  main.kenshujigyo .info ul.postlist {
    width: calc(100% - 10em);
    padding-left: 2rem;
  }
  main.kenshujigyo .info .wrap ul.postlist li a time {
    width: 7em;
  }
  main.kenshujigyo .info .wrap ul.postlist li a p {
    width: calc(100% - 7em);
  }
  main.kenshujigyo .nopost {
    padding-left: 2rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kenshujigyo .info .wrap {
    padding-bottom: 0;
  }
  main.kenshujigyo .info .wrap ul.postlist li a {
    flex-direction: column;
  }
  main.kenshujigyo .info .wrap ul.postlist li a time {
    width: 100%;
  }
  main.kenshujigyo .info .wrap ul.postlist li a p {
    width: 100%;
  }
  main.kenshujigyo .nopost {
    margin: 1rem 0;
    text-align: center;
  }
}

/* 短期研修事業 */
main.kenshujigyo .tankikenshu {
  padding-bottom: 2rem;
}
main.kenshujigyo .tankikenshu h2 {
  margin-bottom: 2rem;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.kenshujigyo .tankikenshu h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kenshujigyo .tankikenshu h3 {
  margin: 3rem auto 1rem auto;
  color: var(--color-blue);
  font-size: var(--fl);
  text-align: center;
}
main.kenshujigyo .tankikenshu h3:before {
  content: "〈";
}
main.kenshujigyo .tankikenshu h3:after {
  content: "〉";
}
main.kenshujigyo .tankikenshu h4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: var(--fl);
  text-align: center;
}
main.kenshujigyo .tankikenshu .kouza {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
}
main.kenshujigyo .tankikenshu .kouza .flex {
  display: flex;
  flex-wrap: wrap;
}
main.kenshujigyo .tankikenshu .kouza .flex h4 .letter-space {
  letter-spacing: 2em;
  margin-left: 2em;
}
main.kenshujigyo .tankikenshu .kouza .flex h5:before {
  content: "■";
}
main.kenshujigyo .tankikenshu .kouza .tekiyo {
  margin: 1rem 0;
}
main.kenshujigyo .tankikenshu .kouza .file ul li a {
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  background-color: var(--color-violet);
  text-align: center;
}
main.kenshujigyo .tankikenshu .kouza .file ul li a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.kenshujigyo .chokikenshu {
  padding: 2rem 0;
  text-align: center;
}
main.kenshujigyo .chokikenshu h2 {
  margin-bottom: 2rem;
  font-size: var(--fll);
  line-height: 1.5em;
}
main.kenshujigyo .chokikenshu h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kenshujigyo .chokikenshu .pcinner {
  margin: 2rem auto;
}
main.kenshujigyo .chokikenshu h4 {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--color-white);
  font-size: var(--fl);
  line-height: 1.5em;
}
main.kenshujigyo .chokikenshu ul li {
  font-size: var(--fm);
  line-height: 1.75em;
  text-align: left;
}
main.kenshujigyo .chokikenshu ul li:before {
  content: "■";
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kenshujigyo .tankikenshu h2 + p {
    text-align: center;
  }
  main.kenshujigyo .tankikenshu .wrap {
    width: var(--pcinner);
    margin: 0 auto;
  }
  main.kenshujigyo .tankikenshu .kouza .flex h5 {
    width: 45%;
  }
  main.kenshujigyo .tankikenshu .kouza .flex .kikan {
    width: 10em;
  }
  main.kenshujigyo .tankikenshu .kouza .flex .nittei {
    width: 10em;
  }
  main.kenshujigyo .tankikenshu .kouza .flex .teiin {
    width: 5em;
  }
  main.kenshujigyo .tankikenshu .kouza .file {
    display: flex;
    align-items: center;
  }
  main.kenshujigyo .tankikenshu .kouza .file h6 {
    width: 4em;
    margin-right: 1em;
  }
  main.kenshujigyo .tankikenshu .kouza .file ul {
    display: flex;
    width: calc(100% - 5em);
  }
  main.kenshujigyo .tankikenshu .kouza .file ul li {
    width: calc((100% - 2rem) / 3);
    margin-right: 1rem;
  }
  main.kenshujigyo .tankikenshu .kouza .file ul li:last-child {
    margin-right: 0;
  }
  main.kenshujigyo .chokikenshu ul {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  main.kenshujigyo .chokikenshu ul li {
    width: 50%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kenshujigyo .subtitle figure {
    margin: 1rem auto;
  }
  main.kenshujigyo .tankikenshu h2,
  main.kenshujigyo .chokikenshu h2 {
    margin-bottom: 1rem;
  }
  main.kenshujigyo .tankikenshu .kouza .flex h5 {
    width: 100%;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #cccccc;
  }
  main.kenshujigyo .tankikenshu .kouza .flex .kikan {
    width: calc(100% / 3);
    text-align: center;
  }
  main.kenshujigyo .tankikenshu .kouza .flex .nittei {
    width: calc(100% / 3);
    text-align: center;
  }
  main.kenshujigyo .tankikenshu .kouza .flex .teiin {
    width: calc(100% / 3);
    text-align: center;
  }
  main.kenshujigyo .tankikenshu .kouza .tekiyo {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dotted #cccccc;
  }
  main.kenshujigyo .tankikenshu .kouza .file h6 {
    margin-bottom: 0.5rem;
  }
  main.kenshujigyo .tankikenshu .kouza .file h6:before {
    content: "〈";
  }
  main.kenshujigyo .tankikenshu .kouza .file h6:after {
    content: "〉";
  }
  main.kenshujigyo .tankikenshu .kouza .file ul li {
    margin-bottom: 0.5rem;
  }
  main.kenshujigyo .pagecontact h2 {
    text-align: center;
    line-height: 1.5em;
  }
}


/* ----------------------------------------------------------
 建設材料試験 page-kensetsuzairyoshiken.php
---------------------------------------------------------- */
main.kensetsuzairyo .subtitle p:nth-of-type(2) {
  margin-top: 2rem;
  font-size: var(--fm) !important;
  line-height: 1.75em !important;
}
main.kensetsuzairyo .subtitle figure {
  display: flex;
  align-items: flex-start;
  margin: 3rem auto;
}
main.kensetsuzairyo .subtitle figure img {
  width: 50%;
}
/* ページコンタクト */
main.kensetsuzairyo .subtitle .pagecontact div {
  text-align: center;
}
main.kensetsuzairyo .subtitle .pagecontact div h2 {
  display: block;
  margin-bottom: 2rem;
  font-size: var(--fll);
}
main.kensetsuzairyo .subtitle .pagecontact div h2 span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kensetsuzairyo .subtitle .pagecontact div p {
  font-size: var(--fm);
  line-height: 1.75em;
}


/* JNLA */
main.kensetsuzairyo .jnla .wrap {
  padding: 2rem 4rem;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}
main.kensetsuzairyo .jnla .wrap div h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kensetsuzairyo .jnla .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.kensetsuzairyo .jnla .wrap div {
    width: 75%;
  }
  main.kensetsuzairyo .jnla .wrap > p {
    width: 25%;
    padding-left: 2rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kensetsuzairyo .jnla .wrap {
    padding: 2rem 0;
  }
  main.kensetsuzairyo .jnla .wrap > p {
    width: 50%;
    margin: 1rem auto 0 auto;
  }
}


/* JNLA登録試験 自己適合宣言試験 公的・指定試験機関 */
main.kensetsuzairyo .shiken {
  padding: 2rem 0;
}
main.kensetsuzairyo .shiken .flex {
  margin-bottom: 2rem;
}
main.kensetsuzairyo .shiken .flex h2 {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5em 1em;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-weight: 700;
  font-size: var(--fll);
}
main.kensetsuzairyo .shiken table {
  width: 100%;
  font-size: 17px;
}
main.kensetsuzairyo .shiken table thead {
  font-weight: 700;
  background-color: var(--color-gray);
}
main.kensetsuzairyo .shiken table tr {
  border-bottom: 1px solid #cccccc;
}
main.kensetsuzairyo .shiken table th {
  width: 50%;
  padding: 0.25rem 1em;
  font-weight: normal;
}
main.kensetsuzairyo .shiken table td {
  width: 50%;
  padding: 0.25rem 1em;
}
main.kensetsuzairyo .shiken table td .ul_square {
  border-top: 1px solid #cccccc;
}
main.kensetsuzairyo .shiken table td .ul_square li {
  border-bottom: 1px solid #cccccc;
}
main.kensetsuzairyo .shiken table td .ul_square li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kensetsuzairyo .shiken .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kensetsuzairyo .shiken .flex h2 {
    display: block;
    text-align: center;
  }
}

/* 建設材料試験業務 */
main.kensetsuzairyo .kensetsuzairyo {
  padding-top: 2rem;
}
main.kensetsuzairyo .kensetsuzairyo .wrap {
  padding: 2rem 0;
  border-top: 1px solid var(--color-black);
}
main.kensetsuzairyo .kensetsuzairyo h2 {
  font-weight: 700;
  font-size: var(--fll);
  text-align: center;
}
main.kensetsuzairyo .kensetsuzairyo h2 + p {
  margin: 2rem auto;
  font-size: var(--fm);
  line-height: 1.5em;
}
main.kensetsuzairyo .kensetsuzairyo h3 {
  /* margin-bottom: 2rem; */
  margin-bottom: 1rem;
  padding: 0.25rem 0;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: var(--fm);
  line-height: 1.5em;
}
main.kensetsuzairyo .kensetsuzairyo h4 {
  padding: 0.25rem 0;
  margin-bottom: 1rem;
  border: 1px solid var(--color-blue);
  font-size: var(--fm);
  text-align: center;
}
main.kensetsuzairyo .kensetsuzairyo ul {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 4rem; */
  margin-bottom: 2rem;
  padding: 0 2rem;
}
main.kensetsuzairyo .kensetsuzairyo ul + h4 + ul {
  margin-bottom: 4rem;
}
main.kensetsuzairyo .kensetsuzairyo ul li {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
main.kensetsuzairyo .kensetsuzairyo ul li.dammy {
  width: 15.25em;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kensetsuzairyo .kensetsuzairyo h3 {
    text-align: center;
  }
  main.kensetsuzairyo .kensetsuzairyo ul {
    flex-direction: column;
    padding: 0 1rem;
  }
  main.kensetsuzairyo .kensetsuzairyo ul li {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  main.kensetsuzairyo .kensetsuzairyo ul li p.download {
    width: 100%;
  }
  main.kensetsuzairyo .kensetsuzairyo ul li p.download a img {
    margin-left: auto;
  }
}

/* お申し込み方法 */
main.kensetsuzairyo .moushikomi {
  padding: 4rem 0;
}
main.kensetsuzairyo .moushikomi h2 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-white);
  color: #f7e976;
  font-weight: 700;
  font-size: var(--fll);
  text-align: center;
}
main.kensetsuzairyo .moushikomi h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kensetsuzairyo .moushikomi h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0;
  border: 1px solid var(--color-white);
  font-weight: 700;
  font-size: var(--fm);
  text-align: center;
}
main.kensetsuzairyo .moushikomi h3 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kensetsuzairyo .moushikomi ol {
  margin-top: 2rem;
}
main.kensetsuzairyo .moushikomi ol li {
  position: relative;
}
main.kensetsuzairyo .moushikomi ol li:last-child:after {
  content: none;
}
main.kensetsuzairyo .moushikomi ol li h4 {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  color: var(--color-black);
  background-color: var(--color-white);
  text-align: center;
  font-weight: 700;
}
main.kensetsuzairyo .moushikomi ol li p {
  text-align: center;
}
main.kensetsuzairyo .moushikomi ol li p span {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--fs);
  line-height: 1.75em;
}
main.kensetsuzairyo .moushikomi ol li .ul_square {
  margin-top: 0.5rem;
}


@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kensetsuzairyo .kensetsuzairyo h2 + p {
    text-align: center;
  }
  main.kensetsuzairyo .kensetsuzairyo h3 {
    text-align: center;
  }
  main.kensetsuzairyo .subtitle .pagecontact {
    display: flex;
    align-items: center;
  }
  main.kensetsuzairyo .subtitle .pagecontact div {
    width: 50%;
  }
  main.kensetsuzairyo .subtitle .pagecontact iframe {
    aspect-ratio: 3 / 2;
    width: 50%;
    height: auto;
  }
  main.kensetsuzairyo .moushikomi h2 + p {
    text-align: center;
  }
  main.kensetsuzairyo .moushikomi h3 + p {
    text-align: center;
  }
  main.kensetsuzairyo .moushikomi ol {
    display: flex;
    justify-content: space-between;
  }
  main.kensetsuzairyo .moushikomi ol > li {
    width: calc(20% - 3rem);
  }
  main.kensetsuzairyo .moushikomi ol > li:after {
    content: "";
    display: block;
    width: 3.75rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: -3.75rem;
    background: url(../images/mark-arrow.svg) no-repeat center center / 80%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kensetsuzairyo .subtitle .pagecontact {
    padding-bottom: 2rem;
  }
  main.kensetsuzairyo .subtitle .pagecontact iframe {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  main.kensetsuzairyo .kensetsuzairyo ul li.dammy {
    display: none;
  }
  main.kensetsuzairyo .moushikomi ol > li {
    position: relative;
    padding-bottom: 4rem;
    margin-bottom: 1rem;
  }
  main.kensetsuzairyo .moushikomi ol > li:after {
    content: "";
    display: block;
    width: 3.75rem;
    height: 4rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1.875rem;
    transform: rotate(90deg);
    background: url(../images/mark-arrow.svg) no-repeat center center / 80%;
  }
}


/* ----------------------------------------------------------
 会議室貸出 page-kaigishitsu.php
---------------------------------------------------------- */
/* 概要 */
main.kaigishitsu .contents h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
}
main.kaigishitsu .contents h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kaigishitsu .contents h2 {
    text-align: center;
  }
}

/* お知らせ */
main.kaigishitsu .info {
  padding: 2rem 0;
}
main.kaigishitsu .info .wrap {
  padding: 1rem 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
main.kaigishitsu .info .wrap h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: var(--fl);
}
main.kaigishitsu .info ul.postlist li {
  border-bottom: 1px solid #cccccc;
}
main.kaigishitsu .info ul.postlist li:last-child {
  border-bottom: 0;
}
main.kaigishitsu .info .wrap ul.postlist li a {
  display: flex;
  padding: 0.5rem 0;
}
main.kaigishitsu .info .wrap ul.postlist li a:hover {
  color: var(--color-blue);
}
main.kaigishitsu .info .wrap ul.postlist li a time {
  width: 7em;
}
main.kaigishitsu .info .wrap ul.postlist li a p {
  width: calc(100% - 7em);
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kaigishitsu .info .wrap {
    padding-bottom: 0;
  }
  main.kaigishitsu .info .wrap ul.postlist li a {
    flex-direction: column;
  }
  main.kaigishitsu .info .wrap ul.postlist li a time {
    width: 100%;
  }
  main.kaigishitsu .info .wrap ul.postlist li a p {
    width: 100%;
  }
  main.kaigishitsu .nopost {
    margin: 1rem 0;
    text-align: center;
  }
}

/* 会議室一覧 */
main.kaigishitsu h2 {
  text-align: center;
}
main.kaigishitsu .room {
  padding: 2rem 0;
}
main.kaigishitsu h2 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
}
main.kaigishitsu article {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kaigishitsu article h3 {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5em;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.kaigishitsu article h3 + p {
  padding: 0 0.5rem;
}
main.kaigishitsu article dl {
  padding: 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
main.kaigishitsu article dl dt {
  width: 4em;
}
main.kaigishitsu article dl dd {
  width: calc(100% - 4em);
  display: flex;
}
main.kaigishitsu article dl dd span {
  width: 50%;
  text-align: center;
}
main.kaigishitsu article .bihin {
  display: flex;
  padding: 0 0.5em;
  font-size: 1rem;
  line-height: 1.75em;
}
main.kaigishitsu article .bihin p:nth-of-type(1) {
  width: 4em;
}
main.kaigishitsu article .bihin p:nth-of-type(1):before {
  content: "■";
}
main.kaigishitsu article .bihin p:nth-of-type(1):after {
  content: "／";
}
main.kaigishitsu article .bihin p:nth-of-type(2) {
  width: calc(100% - 4em);
}
main.kaigishitsu article .layout {
  margin-top: 2rem;
  padding: 0 0.5rem;
  font-size: 1rem;
}
main.kaigishitsu .ul_caution + p {
  text-align: right;
}
/* 使用可能時間 */
main.kaigishitsu .time {
  margin: 2rem auto;
  padding: 2rem 0;
}
main.kaigishitsu .time h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kaigishitsu .time dl {
  display: flex;
  flex-wrap: wrap;
}
/* 備品等について */
main.kaigishitsu .bihin {
  padding: 2rem 0;
}
main.kaigishitsu .bihin h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
}
main.kaigishitsu .bihin h2 + p + p {
  margin: 2rem auto;
}
/* 使用の流れ */
main.kaigishitsu .nagare {
  padding: 4rem 0;
}
main.kaigishitsu .nagare h2 {
  color: #f7e976;
  font-weight: 700;
  font-size: var(--fll);
  text-align: center;
}
main.kaigishitsu .nagare ol {
  width: 100%;
  margin: 2rem auto;
}
main.kaigishitsu .nagare ol li {
  position: relative;
}
main.kaigishitsu .nagare ol li:last-child:after {
  content: none;
}
main.kaigishitsu .nagare ol li h4 {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  color: var(--color-black);
  background-color: var(--color-white);
  text-align: center;
  font-weight: 700;
  font-size: var(--fm);
}
main.kaigishitsu .nagare ol li p {
  text-align: center;
}
main.kaigishitsu .nagare ol li p span {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--fs);
  line-height: 1.75em;
}
main.kaigishitsu .nagare ol li .ul_square {
  margin-top: 0.5rem;
}
main.kaigishitsu .nagare h3 {
  margin-bottom: 1rem;
}
/* 注意事項等 */
main.kaigishitsu .chuui {
  padding: 4rem 0;
}
/* 使用申請書 */
main.kaigishitsu .shinsei .wrap {
  padding: 2rem 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
main.kaigishitsu .shinsei .wrap .flex .download {
  margin-left: 4rem;
}
/* ページコンタクト */
main.kaigishitsu .pagecontact h2 {
  font-weight: normal;
  font-size: var(--fl);
}


@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.kaigishitsu .contents {
    text-align: center;
  }
  main.kaigishitsu .info .pcinner {
    display: flex;
  }
  main.kaigishitsu .info h2 {
    width: 10em;
    text-align: center;
  }
  main.kaigishitsu .info ul.postlist {
    width: calc(100% - 10em);
    padding-left: 2rem;
  }
  main.kaigishitsu .nopost {
    padding-left: 2rem;
  }
  main.kaigishitsu .room .wrap {
    width: var(--pcinner);
    margin: 0 auto;
  }
  main.kaigishitsu .room article {
    margin: 0 auto 3rem auto;
    display: flex;
  }
  main.kaigishitsu .room article figure {
    width: 50%;
  }
  main.kaigishitsu .room article > div {
    width: 50%;
    padding-left: 4rem;
  }
  main.kaigishitsu .time {
    text-align: center;
  }
  main.kaigishitsu .time dl {
    width: var(--pcinner);
    margin: 1rem auto;
  }
  main.kaigishitsu .time dl dt {
    width: 4em;
    padding: 0.25rem 0;
    border-bottom: 1px solid #cccccc;
  }
  main.kaigishitsu .time dl dt + dd {
    width: 20em;
    padding: 0.25rem 0;
    border-bottom: 1px solid #cccccc;
  }
  main.kaigishitsu .time dl dt + dd + dd {
    width: calc(100% - 24em);
    padding: 0.25rem 0;
    border-bottom: 1px solid #cccccc;
    text-align: left;
  }
  main.kaigishitsu .bihin .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  main.kaigishitsu .nagare .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main.kaigishitsu .nagare ol {
    display: flex;
    justify-content: space-between;
  }
  main.kaigishitsu .nagare ol > li {
    width: calc(25% - 3rem);
  }
  main.kaigishitsu .nagare ol > li:after {
    content: "";
    display: block;
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: -4rem;
    background: url(../images/mark-arrow.svg) no-repeat center center / 80%;
  }
  main.kaigishitsu .chuui dl {
    display: flex;
    flex-wrap: wrap;
  }
  main.kaigishitsu .chuui dl dt {
    width: 20rem;
    font-size: var(--fll);
    line-height: 1.5em;
  }
  main.kaigishitsu .chuui dl dd {
    width: calc(100% - 20rem);
    padding-bottom: 2rem;
  }
  main.kaigishitsu .shinsei .wrap .flex {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.kaigishitsu .info .wrap ul.postlist {
    margin: 0.5rem auto;
  }
  main.kaigishitsu .info .wrap ul.postlist li {
    font-size: 1rem;
  }
  main.kaigishitsu article {
    margin-bottom: 3rem;
  }
  main.kaigishitsu article h3 {
    text-align: center;
  }
  main.kaigishitsu article dl dt {
    width: 3em;
  }
  main.kaigishitsu article dl dd {
    width: calc(100% - 3em);
  }
  main.kaigishitsu article .layout {
    margin-top: 1rem;
  }
  main.kaigishitsu .time h2 + p {
    margin-bottom: 1rem;
    text-align: center;
  }
  main.kaigishitsu .time dl {
    margin-bottom: 1rem;
  }
  main.kaigishitsu .time dl dt {
    width: 3em;
    padding: 0.5rem 0;
    border-bottom: 1px solid #cccccc;
  }
  main.kaigishitsu .time dl dt+ dd {
    width: 9em;
    padding: 0.5rem 0;
    border-bottom: 1px solid #cccccc;
  }
  main.kaigishitsu .time dl dd + dd {
    width: calc(100% - 12em);
    padding: 0.5rem 0;
    border-bottom: 1px solid #cccccc;
  }
  main.kaigishitsu .nagare h3 {
    text-align: center;
  }
  main.kaigishitsu .nagare ol li {
    padding-bottom: 4rem;
    margin-bottom: 1rem;
  }
  main.kaigishitsu .nagare ol li:after {
    content: "";
    display: block;
    width: 3.75rem;
    height: 4rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1.875rem;
    transform: rotate(90deg);
    background: url(../images/mark-arrow.svg) no-repeat center center / 80%;
  }
  main.kaigishitsu .chuui dl dt {
    margin-bottom: 0.5rem;
    font-size: var(--fl);
  }
  main.kaigishitsu .chuui dl dd {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #cccccc;
  }
  main.kaigishitsu .shinsei .wrap .flex .download {
    margin: 2rem 0 1rem 0;
  }
}

/* ----------------------------------------------------------
 所在地・連絡先一覧 page-access.php
---------------------------------------------------------- */
main.access h1 {
  opacity: 0 !important;
}
main.access section .wrap h2 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.access section .wrap h2 + p {
  font-size: var(--fm);
  line-height: 1.75em;
  text-align: center;
}
main.access section .wrap a {
  display: inline;
}
main.access section .wrap iframe {
  width: 100% !important;
  height: 400px !important;
}
/* 本部 */
main.access .honbu {
  padding: 2rem 0 4rem 0;
}
main.access .honbu dl {
  width: var(--pcinner);
  margin: 2rem auto 0 auto;
  border-top: 1px solid var(--color-black);
  display: flex;
  flex-wrap: wrap;
}
main.access .honbu dl dt:not(.red) {
  width: 25%;
  padding: 1rem 1em;
  border-bottom: 1px solid var(--color-black);
}
main.access .honbu dl dt:before {
  content: "■";
}
main.access .honbu dl dd:not(.red) {
  width: 75%;
  padding: 1rem 1em;
  border-bottom: 1px solid var(--color-black);
  display: flex;
  flex-wrap: wrap;
}
main.access .honbu dl dd ul {
  width: 100%;
}
main.access .honbu dl dd ul li {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-black);
}
main.access .honbu dl dd ul li:first-child {
  padding-top: 0;
}
main.access .honbu dl dd ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
main.access .honbu dl dd .busho {
  width: 10em;
  display: flex;
  align-items: center;
}
main.access .honbu dl dd .tel {
  width: calc(100% - 14em);
}
main.access .honbu dl dd .floor {
  width: 4em;
  display: flex;
  align-items: center;
}
main.access .honbu dl dt.red {
  padding: 2rem 1em;
  color: #c30d23;
}
main.access .honbu dl dd.red {
  padding: 2rem 0;
  color: #c30d23;
}
main.access .honbu dl dd.red a {
  color: #c30d23;
}
@media screen and (max-width : 768px) { /* -- sp -- */
  body.access main.page section.title {
    padding: 0;
    margin-bottom: 0;
  }
  body.access main.page section.title figure {
    position: relative;
  }
  body.access main.page section.title figure img {
    width: 100%;
    height: auto;
    transform: initial;
  }
  main.access .honbu {
    padding-top: 0;
  }
  main.access .honbu dl dt:not(.red) {
    width: 100%;
    padding: 0.5rem 0 0 0;
    border-bottom: 0;
  }
  main.access .honbu dl dd:not(.red) {
    width: 100%;
    padding: 0.5rem 0 1rem 1em;
  }
  main.access .honbu dl dd ul li {
    flex-wrap: wrap;
  }
  main.access .honbu dl dd .busho {
    width: 35%;
    display: initial;
  }
  main.access .honbu dl dd .tel {
    width: 65%;
  }
  main.access .honbu dl dd .floor {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    text-align: center;
    background-color: #efefef;
  }
  main.access .honbu dl dt.red {
    padding: 1rem 0 2rem 0;
  }
  main.access .honbu dl dd.red {
    padding: 1rem 1em;
  }
}

/* 試験審査所 */
main.access .shinsa {
  padding: 4rem 0;
}
main.access .shinsa h2 {
  margin-top: 2rem;
  border-bottom: 1px solid var(--color-white) !important;
}
main.access .shinsa a {
  color: var(--color-white);
}
main.access .shinsa iframe {
  margin-top: 2rem;
}

/* 関連リンク */
main.access .related-links {
  padding: 4rem 0;
}
main.access .related-links h2 {
  border-bottom: 0 !important;
}
main.access .related-links .flex {
  border-bottom: 1px solid var(--color-black);
}
main.access .related-links .flex:last-of-type {
  border-bottom: 0;
}
main.access .related-links .flex > h3 {
  font-weight: 700;
  padding: 1rem 0 1rem 0.5rem;
}
main.access .related-links .flex ul > li a {
  display: flex;
  align-items: center;
}
main.access .related-links .flex ul > li a:hover {
  color: var(--color-blue);
}
main.access .related-links .flex ul > li a:before {
  content: "▷";
  margin-right: 0.25em;
}
main.access .related-links .flex > .flex ul li {
  width: 100%;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.access .related-links .flex {
    display: flex;
  }
  main.access .related-links .flex > h3 {
    width: 14em;
  }
  main.access .related-links .flex > ul {
    width: calc(100% - 14em);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 1rem 0;
  }
  main.access .related-links .flex ul > li {
    width: calc(100% / 3);
    margin-bottom: 0.25rem;
  }
  main.access .related-links .flex > .flex {
    width: calc(100% - 14em);
    border-bottom: 0;
  }
  main.access .related-links .flex > .flex ul {
    width: calc(100% / 3);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.access .related-links .flex {
    padding-bottom: 1rem;
  }
  main.access .related-links .flex > .flex {
    padding-bottom: 0;
  }
  main.access .related-links .flex > h3 {
    padding: 1rem 0 0.5rem 0;
  }
  main.access .related-links .flex > ul {
    width: calc(100% - 2rem);
  }
}


/* ----------------------------------------------------------
 各種相談及びお問合せ page-contact.php
---------------------------------------------------------- */
main.contactform {
  text-align: center;
}
main.contactform h1 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: var(--fll);
}
main.contactform h1 + p {
  font-size: var(--fm);
  line-height: 1.5em;
}
main.contactform h1 + p a {
  display: inline;
}
main.contactform .form {
  margin-top: 2rem;
  padding: 2rem 0 4rem 0;
  background-color: var(--color-violet);
}
main.contactform .form h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
  font-size: var(--fl);
}
body.contact-confirm main.contactform h2 + p,
body.contact-thanks main.contactform h2 + p {
  margin-bottom: 4rem;
  font-size: var(--fm);
  line-height: 1.5em;
}
body.contact-thanks main.contactform p.link a {
  color: var(--color-white);
  background-color: var(--color-blue);
  border: 0;
  font-size: var(--fm);
}
main.contactform .form dl {
  display: flex;
  flex-wrap: wrap;
  width: var(--pcinner);
  margin: 2rem auto;
}
main.contactform .form dt {
  width: 18rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
  padding-right: 4em;
  text-align: right;
  font-size: var(--fm);
}
body.contact main.contactform .form dt.req:after {
  content: "必須";
  padding: 0 0.5em;
  border-radius: 0.25rem;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: 1rem;
}
main.contactform .form dd {
  width: calc(100% - 18rem);
  margin-bottom: 1rem;
}
body.contact-confirm main.contactform .form dd {
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--color-black);
  font-size: var(--fm);
  text-align: left;
}
main.contactform .form input,
main.contactform .form textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
}
main.contactform .form textarea {
  resize: vertical;
}
main.contactform .annai {
  padding: 2rem 0 4rem 0;
}
main.contactform .annai .ul_caution a {
  display: inline;
  text-decoration: underline;
}
main.contactform .form .wpcf7 span.check {
    display: inline-flex;
    align-items: center;
    position: relative;
}
main.contactform .form input.wpcf7-submit,
main.contactform .form 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: var(--color-blue);
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
.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);
}
.wpcf7 form .button {
  position: relative;
}
.wpcf7 form .button .wpcf7-spinner {
  position: absolute !important;
  top: 150%;
  left: 50%;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  body.contact main.contactform .form dt.req:after {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  body.contact-confirm main.contactform .form dt {
    padding-bottom: 1rem;
    border-bottom: 1px dotted var(--color-black);
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.contactform h1 + p {
    text-align: center;
  }
  main.contactform .form dl {
    flex-direction: column;
  }
  main.contactform .form dt {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  body.contact main.contactform .form dt.req:after {
    margin-left: 0.5rem;
  }
  main.contactform .form dd {
    width: 100%;
  }
  body.contact-confirm main.contactform .form dd {
    padding-left: 1em;
  }
  main.contactform ul.ul_caution li {
    text-align: left;
  }
  main.contactform .button {
    position: relative;
  }
  main.contactform .form input.wpcf7-submit, main.contactform .form input.wpcf7-previous {
    padding: 1rem 2em;
  }
  body.contact-thanks .form p:last-of-type {
    text-align: center;
  }
  .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
  }
}

/* Turnstile */
.cfturnstile {
  margin-bottom: 2rem;
}



/* ----------------------------------------------------------
 個人情報保護方針 page-privacypolicy.php
---------------------------------------------------------- */
main.privacy h1 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.privacy p.date {
  margin-bottom: 2rem;
  text-align: right;
}
main.privacy p.date + p {
  margin-bottom: 2rem;
}
main.privacy h2 {
  font-size: var(--fm);
  line-height: 1.5em;
}
main.privacy h2:before {
  content: "■";
  color: var(--color-blue);
}
main.privacy .inner {
  width: 100%;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
}
main.privacy ol.type01 {
  counter-reset: section;
}
main.privacy ol.type01 > li {
  list-style-type: none;
}
main.privacy ol.type01 > li h3::before {
  counter-increment: section;
  content: "(" counter(section) ")";
}
main.privacy ol.type01 > li > ul {
  padding: 0 1em;
}
main.privacy ol.type01 > li > ul li:before {
  content: "・";
}
main.privacy ol.type02 {
  margin-left: 1.5em;
}
main.privacy ol.type02 li {
	list-style-type: none;
	counter-increment: cnt;
}
main.privacy ol.type02 li::before {
	content: "(" counter(cnt) ")";
	display:inline-block;
	margin-left:-1.5em;
	width: 1.5em;
}
main.privacy .pagecontact {
  padding-top: 0;
}
main.privacy .pagecontact p {
  font-weight: 700;
  font-size: var(--fm);
  line-height: 1.75em;
  text-align: center;
}


/* ----------------------------------------------------------
 お知らせ一覧 page-info.php
---------------------------------------------------------- */
main.archive section.post {
  padding-bottom: 4rem;
}
main.archive section.post h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.archive section.post nav {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
main.archive section.post ul.nav-info {
  display: flex;
  border: 2px solid var(--color-blue);
}
main.archive section.post ul.nav-info li {
  width: 8.5em;
  font-size: var(--fm);
  text-align: center;
}
main.archive section.post ul.nav-info li.letter-space {
  letter-spacing: 1em;
  margin-left: 1em;
}
main.archive section.post ul.nav-info li a {
  padding: 0.25em 0;
}
main.archive section.post ul.nav-info li a:hover {
  background-color: var(--color-violet);
}
body.page-template-page-info main.archive section.post ul.nav-info li:nth-child(1) a,
body.page-template-page-info main.archive section.post ul.nav-info li:nth-child(1) a:hover,
body.category-news main.archive section.post ul.nav-info li:nth-child(2) a,
body.category-news main.archive section.post ul.nav-info li:nth-child(2) a:hover,
body.post-type-archive-newsletter main.archive section.post ul.nav-info li:nth-child(3) a,
body.post-type-archive-newsletter main.archive section.post ul.nav-info li:nth-child(3) a:hover,
body.category-conference-room main.archive section.post ul.nav-info li:nth-child(4) a,
body.category-conference-room main.archive section.post ul.nav-info li:nth-child(4) a:hover,
body.category-training main.archive section.post ul.nav-info li:nth-child(5) a,
body.category-training main.archive section.post ul.nav-info li:nth-child(5) a:hover,
body.category-recruit main.archive section.post ul.nav-info li:nth-child(6) a,
body.category-recruit main.archive section.post ul.nav-info li:nth-child(6) a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.archive section.post ul.postlist {
  margin-bottom: 4rem;
  border-top: 1px solid #cccccc;
}
main.archive section.post ul.postlist li a {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #cccccc;
}
main.archive section.post ul.postlist li a:hover {
  color: var(--color-blue);
}
main.archive section.post ul.postlist li a time {
  width: 8em;
}
main.archive section.post ul.postlist li a .category {
  width: 10em;
  border: 1px solid var(--color-blue);
  text-align: center;
}
main.archive section.post ul.postlist li a .category.dayori {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.archive section.post ul.postlist li a p {
  width: calc(100% - 20em);
  padding-left: 2em;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.archive section.post ul.nav-info li {
    border-right: 2px solid var(--color-blue);
  }
  main.archive section.post ul.nav-info li:last-child {
    border-right: 0;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.archive section.post ul.nav-info {
    flex-wrap: wrap;
  }
  main.archive section.post ul.nav-info {
    border-bottom: 0;
  }
  main.archive section.post ul.nav-info li {
    width: 50%;
    border-bottom: 2px solid var(--color-blue);
  }
  main.archive section.post ul.nav-info li:nth-child(odd) {
    border-right: 2px solid var(--color-blue);
  }
  main.archive section.post ul.nav-info li a {
    padding: 0.5rem 0;
  }
  main.archive section.post ul.postlist li a {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main.archive section.post ul.postlist li a p {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}


/* ----------------------------------------------------------
 支援機構だよりアーカイブ archive-newsletter.php
---------------------------------------------------------- */
main.archive section.post ul.newsletterlist {
  display: flex;
  flex-wrap: wrap;
}
main.archive section.post ul.newsletterlist li {
  width: calc(25% - 2rem);
  margin: 0 1rem 2rem 1rem;
  text-align: center;
}
main.archive section.post ul.newsletterlist li figure {
  width: 90%;
  margin: 0.5rem auto;
}
main.archive section.post ul.newsletterlist li img {
  box-shadow: 0px 0px 5px #cccccc;
}
main.archive section.post ul.newsletterlist li a:hover img {
  opacity: .6;
}
main.archive section.post ul.newsletterlist li p {
  margin-bottom: 1rem;
  padding: 0.25rem 0;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.archive section.post ul.newsletterlist time {
  color: var(--color-blue);
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.archive section.post ul.newsletterlist li {
    width: 48%;
    margin: 0 0 1rem 0;
  }
  main.archive section.post ul.newsletterlist li:nth-child(odd) {
    margin-right: 4%;
  }
  main.archive section.post ul.newsletterlist li p {
    font-size: var(--fs);
    text-align: center;
  }
}


/* ----------------------------------------------------------
 お知らせ・会議室 single.php
---------------------------------------------------------- */
section.post .pagetitle {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
section.post article {
  padding-bottom: 4rem;
}
section.post article .subinfo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
section.post article .subinfo ul li {
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.info section.post article h1 {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray);
  font-weight: 700;
  font-size: var(--fl);
  line-height: 1.5em;
}
section.post article .content {
  padding-bottom: 2rem;
}
section.post article .content h2 {
  padding: 0.5em 1rem !important;
  border-bottom: 1px dotted var(--color-blue) !important;
  color: var(--color-white) !important;
  background-color: var(--color-blue) !important;
  font-size: var(--fm) !important;
  font-weight: 700 !important;
}
section.post article .content h3 {
  padding: 0 1rem 0.25em calc(1rem - 5px);
  border-left: 5px solid var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-size: var(--fm);
  font-weight: 700;
  line-height: 180%;
}
section.post article .content h4 {
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-blue);
  background-color: var(--color-violet);
}
section.post article .content h5 {
  padding: 0 1rem 0.25rem 0;
  border-bottom: 1px solid var(--color-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-blue);
}
section.post article .content h5:before {
  content: "■";
  margin-right: 0.25em;
}
section.post article .content h6 {
  padding: 0.25rem 0;
  border-bottom: 1px dotted var(--color-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 180%;
}
section.post article .content p {
  padding: 0 1em;
  margin: 1em 0;
}
section.post article .content a {
  display: inline;
  color: var(--color-blue);
  text-decoration: underline;
}
section.post article .content ul li {
  display: flex;
  margin-bottom: 0.25em;
}
section.post article .content ul li:before {
  content: "●";
  margin-right: 1em;
  font-size: 0.5em;
  color: var(--color-blue);
}
section.post article .content ol {
  list-style-type: decimal;
  list-style-position: inside;
}
section.post article .content ol li {
  margin-bottom: 0.25em;
}
section.post article .content h1,
section.post article .content h2,
section.post article .content h3,
section.post article .content h4,
section.post article .content h5,
section.post article .content h6 {
  margin-bottom: 1rem;
}
section.post article .content * + h1,
section.post article .content * + h2,
section.post article .content * + h3,
section.post article .content * + h4,
section.post article .content * + h5,
section.post article .content * + h6 {
  margin-top: 2rem;
}
section.post article .content h2 + h3,
section.post article .content h3 + h4,
section.post article .content h4 + h5,
section.post article .content h5 + h6 {
  margin-top: 1rem;
}

section.post article .content ul,
section.post article .content ol,
section.post article .content tbody,
section.post article .content dl {
  padding: 0 1em;
}
section.post article .content table {
  width: calc(100% - 2rem);
  margin: 0.5rem auto;
}
section.post article .content thead {
  border-bottom: 0;
  background-color: var(--color-violet);
}
section.post article .content .wp-block-file {
  font-size: 1rem;
}
section.post article .content .wp-block-file a.wp-block-file__button {
  color: var(--color-white);
  background-color: var(--color-blue);
  text-decoration: none;
}


main.single section.post .postnav {
  display: flex;
  justify-content: center;
  position: relative;
  width: var(--pcinner);
  margin: 3rem auto 0 auto;
  font-size: var(--fm);
  line-height: 1em;
}
main.single section.post .postnav .back {
  padding: 0.5em 1em;
  border-radius: 3em;
  color: var(--color-white);
  background-color: var(--color-blue);
}
main.single section.post .postnav .prev,
main.single section.post .postnav .next {
  padding: 0.5em 1em;
  border-radius: 3em;
  color: var(--color-white);
  background-color: #595757;
}
main.single section.post .postnav .prev:before {
  content: "\0ab";
  margin-right: 0.5em;
  font-size: 1.75rem;
}
main.single section.post .postnav .next:after {
  content: "\0bb";
  margin-left: 0.5em;
  font-size: 1.75rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.single section.post .postnav .prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  main.single section.post .postnav .next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  section.post .pagetitle {
    margin-bottom: 1rem;
  }
  main.single.info section.post .postnav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main.single.info section.post .postnav .prev {
    order: 1;
  }
  main.single.info section.post .postnav .next {
    order: 2;
  }
  main.single.info section.post .postnav .back {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}



/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer .contact {
  padding: 3rem 0;
  background-color: #c9caca;
}
footer .contact .wrap p {
  border-radius: 0.5rem;
  background-color: var(--color-white);
}
footer .contact .wrap p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  border-radius: 0.5rem;
  font-size: var(--fl);
  transition: .2s;
}
footer .contact .wrap p a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
footer .contact .wrap p a span.ja {
  font-weight: 700;
}
footer .contact .wrap p a span.en {
  font-size: var(--fs);
}
footer .address {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #ffffff;
  background-color: var(--color-blue);
}
footer .address figure {
  width: 100%;
  height: auto;
}
footer .address .wrap a {
  display: inline;
  color: var(--color-white);
}
footer .address ul li:first-child {
  margin-bottom: 1.5rem;
}
footer .address p.name {
  margin-bottom: 0.25rem;
  font-size: var(--fl);
  line-height: 1.5em;
}
footer .footernav {
  padding: 3rem 0;
  color: var(--color-white);
  background-color: var(--color-blue);
}
footer .footernav nav ul li {
  margin-bottom: 0.5rem;
}
footer .footernav nav ul li.sub {
  margin-bottom: 0;
  font-size: var(--fs);
}
footer .footernav nav ul li a {
  color: var(--color-white);
}
footer .footernav nav ul li a:hover {
  opacity: .6;
}
footer .copyright {
  padding-bottom: 1rem;
  background-color: var(--color-blue);
}
footer small {
  display: block;
  color: var(--color-white);
  background-color: var(--color-blue);
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  footer .contact .wrap {
    display: flex;
    justify-content: space-between;
  }
  footer .contact .wrap p {
    width: calc(50% - 1rem);
  }
  footer .address .wrap {
    position: absolute;
    margin-bottom: 2rem;
  }
  footer .footernav nav {
    display: flex;
  }
  footer .footernav nav ul {
    margin-right: 3rem;
  }
  footer .footernav nav ul.last {
    display: flex;
    flex-direction: column;
    margin-right: 0;
    margin-left: auto;
    padding-left: 2rem;
    border-left: 1px solid var(--color-white);
  }
  footer .footernav nav ul.last li:last-child {
    margin-top: auto;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  footer .contact .wrap p:nth-of-type(1) {
    margin-bottom: 1rem;
  }
  footer .contact .wrap p a {
    padding: 1.5rem 0 1rem 0;
  }
  footer .address figure {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
  }
  footer .address ul li:first-child {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.7);
  }
  footer .address p {
    text-align: center !important;
  }
  footer .address figure img {
    width: auto;
    max-width: initial;
    height: 100%;
    transform: translateX(100vw);
  }
  footer .address .wrap {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
  }
  footer .copyright {
    padding: 1rem 0;
    text-align: center;
    line-height: 1.5em;
  }
}