@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.dsp-pc {
  display: block;
}
@media (max-width: 768px) {
  .dsp-pc {
    display: none;
  }
}

.dsp-sp {
  display: none;
}
@media (max-width: 768px) {
  .dsp-sp {
    display: block;
  }
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  transition: all 0.15s ease-in-out;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.wrapper {
  margin: 0 auto;
  max-width: 1140px;
  width: 92%;
}

.section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-page {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-page {
    padding: 60px 0;
  }
}

.min-wrapper {
  margin: 0 auto;
  width: 940px;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

body {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.fadein {
  opacity: 1;
}

table.simpleGrayTable {
  width: 100%;
}
table.simpleGrayTable tr {
  width: 100%;
  border-bottom: 1px solid #C8C8C8;
  text-align: left;
}
table.simpleGrayTable tr th {
  white-space: nowrap;
  padding: 30px 0;
  font-weight: bold;
}
table.simpleGrayTable tr td {
  padding: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  table.simpleGrayTable tr th,
table.simpleGrayTable tr td {
    width: 100%;
    display: block;
  }
  table.simpleGrayTable tr th {
    padding: 10px 0 5px;
    font-weight: bold;
  }
  table.simpleGrayTable tr td {
    padding: 0 0 10px 0;
  }
}

table.boxStyleTable {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.7em;
}
table.boxStyleTable tr {
  width: 100%;
  background: #ffffff;
}
table.boxStyleTable tr th {
  background-color: #DEE4E2;
  border: 1px solid #cccccc;
  padding: 20px;
  font-weight: 500;
  text-align: left;
}
table.boxStyleTable tr td {
  border: 1px solid #cccccc;
  padding: 20px;
  font-weight: 500;
}
table.boxStyleTable tr td .emp {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
table.boxStyleTable tr td .emp:first-of-type {
  margin-top: 0;
}
@media (max-width: 768px) {
  table.boxStyleTable tr:last-child {
    border-bottom: 1px solid #cccccc;
  }
  table.boxStyleTable tr th,
table.boxStyleTable tr td {
    display: block;
    border-bottom: none;
    text-align: left;
  }
  table.boxStyleTable tr th {
    padding: 0.5em 4%;
  }
  table.boxStyleTable tr td {
    padding: 1em 4%;
  }
}

ul.dotsList li {
  padding: 0 0 0.1em 20px;
}
ul.dotsList li:before {
  content: "・";
  display: inline-block;
  text-indent: -20px;
}

ol.numList {
  counter-reset: item;
}
ol.numList li {
  padding: 0 0 0.1em 20px;
  list-style-type: none;
}
ol.numList li:before {
  counter-increment: item;
  content: counter(item) ".";
  display: inline-block;
  text-indent: -20px;
}

ol.numBraList {
  counter-reset: item;
}
ol.numBraList li {
  padding: 0 0 0.1em 30px;
  list-style-type: none;
}
ol.numBraList li:before {
  counter-increment: item;
  content: "(" counter(item) ") ";
  display: inline-block;
  text-indent: -30px;
}

a {
  color: #141414;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #141414;
  letter-spacing: 0.04em;
  line-height: 1.5em;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.5em;
  font-weight: bold;
}

p {
  line-height: 1.5em;
}

h1 {
  font-size: 28px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 36px;
  color: #134F38;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 28px;
  color: #141414;
  letter-spacing: 0.05em;
}

h4 {
  font-size: 16px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content p,
.article-content ol,
.article-content ul {
  margin-bottom: 1em;
}
.article-content strong {
  font-weight: bold;
}
.article-content ol {
  counter-reset: outer-counter;
}
.article-content ol li {
  list-style: none;
  counter-increment: outer-counter;
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: 0.5em;
  position: relative;
}
.article-content ol li:before {
  content: counter(outer-counter) ".";
  margin-right: 0.5em;
}
.article-content ol li ol {
  counter-reset: inner-counter;
}
.article-content ol li ol li {
  counter-increment: inner-counter;
}
.article-content ol li ol li:before {
  content: counter(inner-counter) ")";
}
.article-content ol li ol li ol {
  counter-reset: inner-inner-counter;
}
.article-content ol li ol li ol li {
  counter-increment: inner-inner-counter;
}
.article-content ol li ol li ol li:before {
  content: "(" counter(inner-inner-counter) ")";
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  transition: box-shadow 0.3s ease;
}
.header.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header .logo {
  margin-left: 45px;
  width: 174px;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header .logo a img {
  display: block;
  height: 100%;
}
.header .headernavwrap {
  display: flex;
  align-items: center;
}
.header .headernavwrap.open {
  display: flex;
}
.header .headernavwrap .navarea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 45px;
}
.header .headernavwrap .navarea .globalmenu .parentlist {
  display: flex;
  gap: 0 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header .headernavwrap .navarea .globalmenu .parentlist li {
  position: relative;
}
.header .headernavwrap .navarea .globalmenu .parentlist li a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  padding: 5px;
}
.header .headernavwrap .navarea .globalmenu .parentlist li a:hover {
  color: #134F38;
  opacity: 1;
}
.header .headernavwrap .navarea .globalmenu .parentlist li.header-contact a {
  padding: 12px 40px;
  background: #134F38;
  border-radius: 100px;
  color: #E4FF81;
}
.header .headernavwrap .navarea .globalmenu .parentlist li.header-contact a:hover {
  color: #134F38;
  background: #E4FF81;
}
.header .btn-gnavi {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #134F38;
  gap: 6px;
  width: 70px;
  height: 45px;
  border-radius: 100px;
  cursor: pointer;
  margin-right: 15px;
}
.header .btn-gnavi span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #E4FF81;
  border-radius: 1px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.header .btn-gnavi.open span:nth-child(1) {
  transform: rotate(30deg) translate(5px, 6px);
  width: 32px;
}
.header .btn-gnavi.open span:nth-child(2) {
  opacity: 0;
}
.header .btn-gnavi.open span:nth-child(3) {
  transform: rotate(-30deg) translate(5px, -6px);
  width: 32px;
}
@media (max-width: 1024px) {
  .header .logo {
    margin-left: 30px;
  }
  .header .logo a {
    width: 140px;
  }
  .header .headernavwrap .navarea {
    margin-right: 30px;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist {
    gap: 25px;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li.header-contact a {
    padding: 12px 20px;
  }
  .header .headernavwrap .contactbtn a {
    padding: 10px 13px;
    font-size: 13px;
    letter-spacing: -0.03em;
  }
}
@media (max-width: 768px) {
  .header {
    height: 70px;
    flex-direction: row;
    padding: 0;
  }
  .header .logo {
    margin-left: 15px;
  }
  .header .logo a {
    height: 35px;
  }
  .header .headernavwrap {
    flex-direction: column;
    background-color: #fff;
    display: none;
    padding: 110px 15px 30px;
    z-index: 100;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    margin: 0;
  }
  .header .headernavwrap .navarea {
    flex-direction: column;
    width: 300px;
    max-width: 100%;
    margin: 0;
  }
  .header .headernavwrap .navarea .subnav ul,
.header .headernavwrap .navarea .globalmenu ul {
    flex-direction: column;
    gap: 30px;
  }
  .header .headernavwrap .navarea .globalmenu {
    max-height: 100%;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist {
    gap: 30px;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 24px;
    letter-spacing: 0.02em;
    font-weight: bold;
    padding: 10px 0;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li.header-contact {
    margin-top: 10px;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li.header-contact a {
    padding: 15px 50px;
  }
  .header .btn-gnavi {
    display: flex;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.overlay.open {
  display: block;
}

.footer {
  color: #FFF;
  padding: 50px 0 100px;
  border-top: 0.5px solid #E4FF81;
  background: #134F38;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 50px;
  }
}
.footer .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding-bottom: 30px;
  border-bottom: 1px solid #E4FF81;
}
.footer-navi {
  display: flex;
  gap: 40px;
  flex-shrink: 1;
}
.footer-navi li a {
  white-space: nowrap;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-family: "Roboto", sans-serif;
  padding: 0 10px;
}
.footer-navi li a:hover {
  opacity: 1;
  color: #E4FF81;
}
.footer-navi li.footer-contact a {
  color: #134F38;
  background: #FFF;
  border-radius: 100px;
  padding: 12px 40px;
}
.footer-navi li.footer-contact a:hover {
  opacity: 1;
  background: #E4FF81;
  color: #134F38;
}
@media (max-width: 1024px) {
  .footer-navi {
    gap: 15px;
  }
  .footer-navi li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer-navi {
    display: none;
  }
}
.footer-logo {
  width: 100%;
}
.footer-logo img {
  display: block;
  width: 174px;
}
.footer-logo a {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}
.footer-logo a img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .footer-logo {
    display: flex;
    justify-content: center;
  }
}
.footer .copyright {
  font-size: 12px;
  color: #FFF;
  display: block;
  font-weight: 500;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .footer .copyright {
    margin-top: 40px;
    text-align: center;
  }
}

.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: calc((100vw - min(1140px, 92vw)) / 2);
  bottom: 30px;
  width: 60px;
  height: 60px;
  font-size: 16px;
  background: #134F38;
  border: 1px solid #E4FF81;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9;
}
.page-top img {
  position: absolute;
  top: 19px;
  left: 15px;
  width: 30px;
  height: 20px;
}
.page-top.show {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  opacity: 0.7;
}

.contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 100px 4%;
  position: relative;
  flex: 0 0 auto;
  background: url("../img/bg_contact.jpg") no-repeat center/cover;
  box-sizing: border-box;
}
.contact .inner {
  margin: 0 auto;
  background: #FFF;
  padding: 30px 100px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .contact .inner {
    padding: 30px 0;
    width: 100%;
  }
}
.contact h3 {
  margin-top: 40px;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.05rem;
  position: relative;
  font-weight: bold;
  color: #FFF;
}
.contact p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.75em;
}

.commonttl h2 {
  display: inline-block;
  font-size: 64px;
  letter-spacing: 0.08em;
  text-align: left;
  line-height: 1.2em;
  background: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .commonttl h2 {
    font-size: 40px;
  }
}
.commonttl.al-center {
  margin: 0 auto;
  text-align: center;
}
.commonttl.white h2 {
  background: none;
  -webkit-text-fill-color: #FFF;
  color: #FFF;
}

.underttl h2 {
  display: inline-block;
  font-size: 56px;
  letter-spacing: 0.02em;
  text-align: left;
  line-height: 1.2em;
  background: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.underttl h2 span {
  display: block;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  background: none;
  -webkit-text-fill-color: #000;
  color: #000;
  line-height: 1.45em;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .underttl h2 {
    font-size: 40px;
  }
}
.underttl.al-center {
  margin: 0 auto;
  text-align: center;
}
.underttl.al-center h2 {
  text-align: center;
}
.underttl.al-center h2 span {
  text-align: center;
}
.underttl.white h2 {
  background: none;
  -webkit-text-fill-color: #FFF;
  color: #FFF;
}
.underttl.white h2 span {
  -webkit-text-fill-color: #FFF;
  color: #FFF;
}

.bgppl {
  background-color: rgba(104, 82, 143, 0.07);
}

.btn {
  display: block;
  color: #E4FF81;
  background: #134F38;
  font-weight: bold;
  text-align: center;
  width: 235px;
  max-width: 100%;
  height: 62px;
  line-height: 60px;
  position: relative;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.btn:hover {
  opacity: 1;
  color: #134F38;
  background: #E4FF81;
}
.btn.white {
  color: #134F38;
  background: #FFF;
}
.btn.white:hover {
  opacity: 1;
  color: #FFF;
  background: #134F38;
}
@media (max-width: 768px) {
  .btn {
    margin: 0 auto;
  }
}

.btn-wrap {
  margin: 30px auto 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.breadcrumbs {
  margin: 20px auto 0;
  font-size: 12px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin: 10px auto 20px;
  }
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.breadcrumbs a::after {
  content: "";
  width: 6px;
  height: 12px;
  background: url("../img/icon-arrow-bc.svg") no-repeat center/contain;
  margin-left: 10px;
  margin-right: 7px;
}
.breadcrumbs .breadcrumb_last {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 4px 4%;
    font-size: 11px;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}

.pagettl {
  margin: 100px auto 0;
  padding: 100px 0 50px;
  position: relative;
  box-sizing: border-box;
}
.pagettl h2 {
  font-size: 80px;
  letter-spacing: 0.05em;
  color: #141414;
  text-align: left;
  font-weight: 900;
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
}
.pagettl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%);
}
@media (max-width: 768px) {
  .pagettl {
    margin: 70px auto 0;
    padding: 60px 0 30px;
  }
  .pagettl h2 {
    font-size: 40px;
    width: 92%;
  }
}

#TOPPAGE .kvwrapper {
  position: relative;
  width: 100%;
  margin-top: 100px;
  height: 778px;
  overflow: hidden;
}
#TOPPAGE .kvwrapper .kvimg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media (max-width: 768px) {
  #TOPPAGE .kvwrapper {
    height: auto;
    margin-top: 70px;
  }
  #TOPPAGE .kvwrapper::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
  }
  #TOPPAGE .kvwrapper .kvimg {
    height: 100%;
  }
}
#TOPPAGE .message-grid {
  display: flex;
  gap: 60px;
}
@media (max-width: 768px) {
  #TOPPAGE .message-grid {
    gap: 40px;
  }
}
#TOPPAGE .message-grid .image {
  flex: 1;
  position: relative;
}
#TOPPAGE .message-grid .image figure {
  position: relative;
  margin: 0;
  width: 100%;
}
#TOPPAGE .message-grid .image figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#TOPPAGE .message-grid .image figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#TOPPAGE .message-grid .image figure figcaption h3 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #TOPPAGE .message-grid .image figure figcaption h3 {
    font-size: 48px;
  }
}
#TOPPAGE .message-grid .text {
  flex: 1;
  min-width: 0;
}
#TOPPAGE .message-grid .text p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  #TOPPAGE .message-grid .text p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .message-grid {
    flex-direction: column;
  }
  #TOPPAGE .message-grid .image {
    width: 100%;
    order: 2;
  }
  #TOPPAGE .message-grid .text {
    width: 100%;
    order: 1;
  }
}
#TOPPAGE .aboutus {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  position: relative;
  flex: 0 0 auto;
  background: url("../img/bg_aboutus.jpg") no-repeat center/cover;
}
#TOPPAGE .aboutus h3 {
  margin-top: 40px;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  font-weight: bold;
  color: #FFF;
}
@media (max-width: 768px) {
  #TOPPAGE .aboutus h3 {
    margin-top: 20px;
  }
}
#TOPPAGE .aboutus p {
  margin-top: 20px;
  color: #FFF;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.75em;
}
#TOPPAGE .service {
  background: #EEE;
  position: relative;
}
#TOPPAGE .service-grid {
  display: flex;
  gap: 60px;
}
#TOPPAGE .service-grid .image {
  flex: 1;
  position: relative;
}
#TOPPAGE .service-grid .image figure {
  position: relative;
  margin: 0;
  width: 100%;
}
#TOPPAGE .service-grid .image figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#TOPPAGE .service-grid .image .image-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
#TOPPAGE .service-grid .text {
  flex: 1;
  min-width: 0;
}
#TOPPAGE .service-grid .text h3 {
  margin-top: 30px;
}
#TOPPAGE .service-grid .text p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  letter-spacing: 0.05em;
}
#TOPPAGE .service-grid .text .btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #TOPPAGE .service-grid {
    flex-direction: column;
  }
  #TOPPAGE .service-grid .image {
    width: 100%;
    order: 2;
  }
  #TOPPAGE .service-grid .text {
    width: 100%;
    order: 1;
  }
  #TOPPAGE .service-grid .text p {
    margin-top: 10px;
  }
  #TOPPAGE .service-grid .text .btn {
    margin-top: 30px;
  }
}
#TOPPAGE .member {
  background: #FFF;
  position: relative;
}
@media (max-width: 768px) {
  #TOPPAGE .member {
    padding: 60px 0;
  }
}
#TOPPAGE .member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 30px;
}
#TOPPAGE .member-item {
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
}
#TOPPAGE .member-item figure {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 0;
  position: relative;
}
#TOPPAGE .member-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#TOPPAGE .member-item .tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
#TOPPAGE .member-item .tag-wrap .member-tag {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  letter-spacing: 0;
  line-height: 1.4em;
}
#TOPPAGE .member-item .name {
  font-size: 24px;
  color: #000;
  margin-top: 10px;
  padding-bottom: 5px;
  position: relative;
  line-height: 1.45em;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%) 1/0 0 1px 0;
}
@media (max-width: 1024px) {
  #TOPPAGE .member .member-item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) {
  #TOPPAGE .member .member-item {
    width: 100%;
  }
  #TOPPAGE .member .btn-wrap {
    margin-top: 30px;
  }
}

.news-detail .news-ttl {
  text-align: left;
  color: #141414;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .news-detail .news-ttl {
    font-size: 24px;
  }
}
.news-detail .news .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  font-weight: bold;
  color: #777;
}
.news-detail .news .news-article {
  margin-top: 30px;
}
.news-detail .news .news-article .wp-block-image {
  margin-top: 30px;
}
.news-detail .news .news-article .wp-block-image:first-child {
  margin-top: 0;
}
.news-detail .news .news-article p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2em;
}
.news-detail .news .news-article ul {
  margin-top: 20px;
}
.news-detail .news .news-article ul li {
  font-size: 16px;
  line-height: 2em;
}
.news-detail .news .news-article h2 + p, .news-detail .news .news-article h2 + ul, .news-detail .news .news-article h3 + p, .news-detail .news .news-article h3 + ul, .news-detail .news .news-article h4 + p, .news-detail .news .news-article h4 + ul {
  margin-top: 15px;
}
.news-detail .news .news-article h2 {
  margin-top: 20px;
  font-size: 28px;
}
.news-detail .news .news-article h3 {
  margin-top: 20px;
  font-size: 24px;
}
.news-detail .news .news-article h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #134F38;
}
.news-detail .news .news-article strong {
  font-weight: bold;
}
@media (max-width: 768px) {
  .news-detail .news .news-article h2 + p, .news-detail .news .news-article h3 + p, .news-detail .news .news-article h4 + p {
    margin-top: 10px;
  }
  .news-detail .news .news-article h2 {
    font-size: 24px;
  }
  .news-detail .news .news-article h3 {
    font-size: 20px;
  }
}
.news-detail .btn-wrap {
  margin: 70px auto 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  flex-direction: column;
}

.newslist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newslist li {
  padding: 20px;
  border-bottom: 1px solid #1272BA;
}
.newslist li .news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
}
.newslist li .news-item .date {
  font-size: 14px;
  color: #777;
  white-space: nowrap;
  letter-spacing: 0;
}
.newslist li .news-item .newsttl {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0;
}
.newslist li.no-posts {
  text-align: center;
  font-size: 16px;
  padding: 40px 0 0;
  font-weight: 500;
  border-bottom: none;
}

.pagenation {
  margin: 30px auto 0;
  text-align: center;
  font-size: 0;
}
.pagenation .page-numbers {
  display: inline-block;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  font-size: 18px;
  text-align: center;
  color: #141414;
  margin: 0 1px;
  border-radius: 3px;
  font-weight: 500;
  line-height: 30px;
}
.pagenation .page-numbers img {
  vertical-align: baseline;
}
.pagenation .page-numbers.next {
  margin-left: 10px;
}
.pagenation .page-numbers.next:hover {
  opacity: 0.7;
}
.pagenation .page-numbers.prev {
  margin-right: 10px;
}
.pagenation .page-numbers.prev:hover {
  opacity: 0.7;
}
.pagenation a.page-numbers:hover {
  opacity: 1;
}
.pagenation a.page-numbers:hover,
.pagenation .current {
  color: #1272BA;
}

#ABOUT .introarea {
  position: relative;
  background: linear-gradient(135deg, #134F38 0%, #6A9C66 40%, #6A9C66 60%, #134F38 100%);
  overflow-x: hidden;
}
#ABOUT .introarea .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #ABOUT .introarea .inner {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
}
#ABOUT .introarea .inner .background-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 150px;
  line-height: 1.06em;
  z-index: 0;
}
@media (max-width: 1024px) {
  #ABOUT .introarea .inner .background-text {
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  #ABOUT .introarea .inner .background-text {
    font-size: 48px;
    letter-spacing: 0.02em;
    bottom: unset;
    left: unset;
    top: -28px;
    right: 0;
    text-align: right;
  }
}
#ABOUT .introarea .heading {
  width: 50%;
  padding-right: 30px;
}
#ABOUT .introarea .heading h2 {
  font-size: 64px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.4em;
  text-align: left;
}
@media (max-width: 1024px) {
  #ABOUT .introarea .heading h2 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  #ABOUT .introarea .heading h2 {
    font-size: 48px;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 768px) {
  #ABOUT .introarea .heading {
    width: 100%;
    margin: 0 auto;
  }
}
#ABOUT .introarea .text {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  #ABOUT .introarea .text {
    width: 100%;
  }
}
#ABOUT .introarea .text p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.7em;
  color: #FFF;
  font-weight: bold;
}
#ABOUT .introarea .text p:last-of-type {
  font-size: 28px;
  font-weight: 900;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #ABOUT .introarea .text p {
    font-size: 16px;
  }
  #ABOUT .introarea .text p:last-of-type {
    font-size: 24px;
  }
}
#ABOUT .greeting-grid {
  display: flex;
  gap: 60px;
}
#ABOUT .greeting-grid .image {
  position: relative;
  width: 500px;
  max-width: 50%;
}
#ABOUT .greeting-grid .image figure {
  position: relative;
  margin: 0;
  width: 100%;
}
#ABOUT .greeting-grid .image figure img {
  display: block;
  width: 100%;
  object-fit: contain;
}
#ABOUT .greeting-grid .text {
  flex: 1;
  min-width: 0;
}
#ABOUT .greeting-grid .text h3 {
  margin-top: 30px;
}
#ABOUT .greeting-grid .text p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  letter-spacing: 0.05em;
}
#ABOUT .greeting-grid .text .ceo {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#ABOUT .greeting-grid .text .ceo .ceo-title {
  font-size: 20px;
  font-weight: 500;
  margin-right: 20px;
}
#ABOUT .greeting-grid .text .ceo img.signature {
  width: 150px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  #ABOUT .greeting-grid {
    flex-direction: column;
    gap: 30px;
  }
  #ABOUT .greeting-grid .image {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
  #ABOUT .greeting-grid .image figure {
    margin-top: 30px;
  }
  #ABOUT .greeting-grid .text {
    width: 100%;
    order: 2;
  }
  #ABOUT .greeting-grid .text p {
    margin-top: 0;
  }
  #ABOUT .greeting-grid .text .ceo {
    font-size: 18px;
  }
  #ABOUT .greeting-grid .text .ceo .ceo-title {
    font-size: 18px;
  }
  #ABOUT .greeting-grid .text .ceo img.signature {
    width: 120px;
  }
}
#ABOUT .company {
  background: #F5F5F5;
}
#ABOUT .company-grid {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  #ABOUT .company-grid {
    flex-direction: column;
    gap: 30px;
  }
}
#ABOUT .company .underttl {
  display: inline-block;
  padding-right: 66px;
}
@media (max-width: 768px) {
  #ABOUT .company .underttl {
    display: block;
    padding-right: 0;
    width: 100%;
  }
}
#ABOUT .company table {
  margin-top: 30px;
}
#ABOUT .company table th {
  min-width: 115px;
}
#ABOUT .company table a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  #ABOUT .company table {
    margin-top: 0;
    width: 100%;
  }
  #ABOUT .company table th {
    min-width: 0;
  }
}

#SERVICE .introarea .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #SERVICE .introarea .inner {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
}
#SERVICE .introarea .inner .text {
  width: 50%;
}
#SERVICE .introarea .inner .text h3 {
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%) 1;
}
#SERVICE .introarea .inner .text p {
  line-height: 1.7em;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #SERVICE .introarea .inner .text {
    width: 100%;
  }
  #SERVICE .introarea .inner .text h3 {
    font-size: 28px;
  }
}
#SERVICE .introarea .inner .image {
  width: 50%;
}
@media (max-width: 768px) {
  #SERVICE .introarea .inner .image {
    width: 100%;
  }
}
#SERVICE .service {
  position: relative;
  background: linear-gradient(135deg, #134F38 0%, #6A9C66 40%, #6A9C66 60%, #134F38 100%);
}
#SERVICE .service .service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #SERVICE .service .service-grid {
    margin-top: 30px;
    gap: 20px;
  }
}
#SERVICE .service .service-item {
  width: 366px;
  max-width: 32.1%;
  border: 2px solid #fff;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
#SERVICE .service .service-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
#SERVICE .service .service-item .service-icon {
  margin: 20px auto 0;
  width: 100px;
  height: 100px;
}
#SERVICE .service .service-item .service-icon img {
  max-width: 100%;
  height: auto;
}
#SERVICE .service .service-item .tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}
#SERVICE .service .service-item .tag-wrap .tag {
  padding: 3px 5px;
  font-size: 14px;
  letter-spacing: 0;
  border: 1px solid #fff;
  color: #fff;
  white-space: nowrap;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  #SERVICE .service .service-item {
    max-width: 30%;
  }
  #SERVICE .service .service-item h3 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  #SERVICE .service .service-item {
    width: 100%;
    max-width: 400px;
    padding: 20px;
  }
}
#SERVICE .strengths-list .item {
  display: flex;
  align-items: flex-end;
  margin-top: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #134F38;
}
#SERVICE .strengths-list .item .num {
  font-size: 120px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #134F38;
  line-height: 1em;
  letter-spacing: -0.03em;
}
#SERVICE .strengths-list .item .title {
  margin-left: 20px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 2em;
}
@media (max-width: 768px) {
  #SERVICE .strengths-list .item {
    align-items: center;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  #SERVICE .strengths-list .item .num {
    font-size: 64px;
  }
  #SERVICE .strengths-list .item .title {
    margin-left: 10px;
    font-size: 24px;
    line-height: 1.375em;
  }
}

#MEMBER .introarea {
  padding-bottom: 0;
}
#MEMBER .introarea .inner {
  margin-top: 60px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  #MEMBER .introarea .inner {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  #MEMBER .introarea .inner {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
}
#MEMBER .introarea .inner:first-of-type {
  margin-top: 0;
}
#MEMBER .introarea .inner .text {
  width: 50%;
}
#MEMBER .introarea .inner .text h3 {
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%) 1;
}
#MEMBER .introarea .inner .text p {
  line-height: 1.7em;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  #MEMBER .introarea .inner .text h3 {
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  #MEMBER .introarea .inner .text h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  #MEMBER .introarea .inner .text {
    width: 100%;
  }
  #MEMBER .introarea .inner .text h3 {
    font-size: 28px;
  }
}
#MEMBER .introarea .inner .image {
  width: 50%;
}
@media (max-width: 768px) {
  #MEMBER .introarea .inner .image {
    width: 100%;
  }
}
#MEMBER .member {
  background: #FFF;
  position: relative;
}
@media (max-width: 768px) {
  #MEMBER .member {
    padding: 60px 0;
  }
}
#MEMBER .member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  margin-top: 30px;
}
#MEMBER .member-item {
  width: calc((100% - 80px) / 3);
}
#MEMBER .member-item figure {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 0;
  position: relative;
}
#MEMBER .member-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#MEMBER .member-item .tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
#MEMBER .member-item .tag-wrap .member-tag {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  letter-spacing: 0;
  line-height: 1.4em;
}
#MEMBER .member-item .name {
  font-size: 24px;
  color: #000;
  margin-top: 10px;
  padding-bottom: 5px;
  position: relative;
  line-height: 1.45em;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #134F38 0%, #6A9C66 40%, #6A9C66 50%, #6A9C66 60%, #134F38 100%) 1/0 0 1px 0;
}
@media (max-width: 1024px) {
  #MEMBER .member .member-item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) {
  #MEMBER .member .member-item {
    width: 100%;
  }
  #MEMBER .member .btn-wrap {
    margin-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */