@charset "UTF-8";
/* Scss Document */
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,
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 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;
}

/* 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,
q:before,
q:after {
  content: "";
  content: none;
}

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

/* Scss Document */
.loader {
  align-items: center;
  background: #fff;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #009900;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 153, 0, 0.7);
  border-top: 1px solid rgba(0, 153, 0, 0.7);
  content: "";
  height: 30px;
  width: 30px;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*------------------------------- Common --------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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

a {
  color: #009900;
  text-decoration: none;
}
a:focus {
  outline: none;
}

@media screen and (min-width: 576px) {
  .alignleft {
    float: left;
    margin: 0 20px 20px 0;
  }
}

@media screen and (min-width: 576px) {
  .alignright {
    float: right;
    margin: 0 0 20px 20px;
  }
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 992px) {
  .br-sp {
    display: none;
  }
}

.text-attention {
  color: #009900;
  font-weight: bold;
}

.font-en {
  text-transform: uppercase;
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body:not(.home) {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

select,
input,
textarea {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

@media all and (-ms-high-contrast: none) {
  body:not(.home) {
    display: block;
    min-height: auto;
  }
}
/* Scss Document */
/* Scss Document */
/*-------------------------------------------main-menu-------------------------------------------*/
#main-menu {
  max-width: 100%;
  transition: 0.2s;
  display: none;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
}
@media screen and (min-width: 1280px) {
  #main-menu {
    width: auto;
    background: none;
    box-shadow: none;
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: 0;
  }
}
#main-menu li {
  white-space: nowrap;
  font-weight: bold;
  transition: 0.2s;
  position: relative;
  font-size: 1.146vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (min-width: 1920px) {
  #main-menu li {
    font-size: 22px;
  }
}
#main-menu li a {
  padding: 5px 10px 5px;
  color: #222;
  transition: 0.3s;
  width: 100%;
  display: block;
}
@media screen and (min-width: 1280px) {
  #main-menu li a {
    padding: 10px 12px 5px;
  }
}
#main-menu li a:hover {
  color: #009900;
}

#btn {
  width: 30px;
  height: 25px;
  z-index: 100001;
  transition: 0.4s;
  display: block;
  position: relative;
  margin: 15px 0 0 0;
}
@media screen and (min-width: 1280px) {
  #btn {
    margin-left: 0;
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #btn {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  #btn:hover {
    opacity: 0.3;
  }
}
#btn:before, #btn:after,
#btn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease-in-out;
}
#btn span {
  height: 4px;
  top: calc(50% - 2px);
  background-color: #009900;
}
#btn:before {
  content: "";
  top: calc(25% - 7px);
  border-top: 4px solid #009900;
}
#btn:after {
  content: "";
  bottom: calc(25% - 7px);
  border-bottom: 4px solid #009900;
}
.header-on #btn span {
  display: none;
}
.header-on #btn:before {
  top: calc(50% - 2px);
  transform: rotate(315deg);
}
.header-on #btn:after {
  bottom: calc(50% - 2px);
  transform: rotate(-315deg);
}

/*-------------------------------------------Pagination-------------------------------------------*/
#pagination {
  color: #333;
  padding: 20px 0;
  text-align: center;
  line-height: 40px;
}
#pagination .current {
  color: #333;
  font-weight: bold;
}
#pagination a {
  color: #333;
}
#pagination a:hover {
  background-color: #ddd;
}

#pagination a,
.page-numbers {
  background: #fff none repeat scroll 0 0;
  color: #aaa;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #b9baba;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 5px;
}

.navi-pre-next {
  margin: 40px 0 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .navi-pre-next {
    margin: 80px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }
}
.navi-pre-next .prev,
.navi-pre-next .next {
  text-align: left;
  width: 48%;
  float: left;
  padding: 10px;
  box-sizing: border-box;
}
.navi-pre-next .prev {
  text-align: right;
  margin-left: 4%;
}
.navi-pre-next a {
  text-decoration: none;
  color: #333;
}
.navi-pre-next a:hover {
  text-decoration: underline;
  color: #333;
}

/*----------------------------- Contactform7 ------------------------------*/
.wpcf7 {
  margin-top: 40px;
}
.wpcf7 p {
  margin: 20px 0;
  line-height: 22px;
}
.wpcf7 textarea {
  width: 100%;
}
.wpcf7 textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select {
  border-radius: 0;
  max-width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
}
.wpcf7 textarea _::-webkit-full-page-media,
.wpcf7 textarea _:future,
.wpcf7 textarea :root .css_selector,
.wpcf7 input[type=text] _::-webkit-full-page-media,
.wpcf7 input[type=text] _:future,
.wpcf7 input[type=text] :root .css_selector,
.wpcf7 input[type=email] _::-webkit-full-page-media,
.wpcf7 input[type=email] _:future,
.wpcf7 input[type=email] :root .css_selector,
.wpcf7 input[type=tel] _::-webkit-full-page-media,
.wpcf7 input[type=tel] _:future,
.wpcf7 input[type=tel] :root .css_selector,
.wpcf7 select _::-webkit-full-page-media,
.wpcf7 select _:future,
.wpcf7 select :root .css_selector {
  -webkit-appearance: none;
}
.wpcf7 textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  width: 100%;
}
.wpcf7 .wpcf7c-btn-back {
  margin-right: 20px;
}
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #222;
  font-size: 14px;
  margin: 5px 0;
  padding: 10px;
}
.wpcf7 textarea {
  height: 300px;
}
.wpcf7 .contact-submit {
  text-align: center;
  margin: 20px auto 40px;
  position: relative;
  width: 330px;
}
.wpcf7 .contact-submit input {
  color: #222;
  display: inline-block;
  border: solid 1px #222;
  padding: 14px 20px;
  width: 330px;
  transition: 0.3s;
  letter-spacing: 1em;
  box-sizing: border-box;
  position: relative;
  text-indent: 1em;
}
.wpcf7 .contact-submit input:hover {
  background: #222;
  color: #fff;
}
.wpcf7 .contact-submit svg {
  position: absolute;
  width: 25px;
  top: 17px;
  right: 15px;
  height: 25px;
}
.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.wpcf7c-conf {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-weight: bold;
}

.wpcf7-submit {
  -webkit-appearance: none;
  border-radius: 0;
  padding: 10px 40px;
  font-weight: bold;
  border: none;
}

.button-submit {
  text-align: center;
}

.wpcf7-form .button-submit input[type=submit],
.wpcf7-form .button-submit input[type=submit]:hover {
  border-radius: 5px;
  border: solid 2px #009900;
  font-size: 14px;
  padding-left: 2em;
}

/*------------------------------- Plugin --------------------------------*/
/* ギャラリー */
.wp-caption {
  max-width: 100%;
  clear: both;
}

.wp-caption-text {
  font-size: 12px;
  text-align: left;
  margin: 5px 0;
}

.gallery {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
@media screen and (min-width: 768px) {
  .gallery {
    margin: 40px 0;
  }
}

.gallery-item {
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  margin: 5px 1% 15px 0;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  margin-right: 0;
}

.gallery-columns-2 .gallery-item {
  width: 49%;
}

.gallery-columns-3 .gallery-item {
  width: 32%;
}

.gallery-columns-4 .gallery-item {
  width: 24%;
}

.gallery-columns-5 .gallery-item {
  width: 19%;
}

.gallery-columns-6 .gallery-item {
  width: 15.66%;
}

.gallery-columns-7 .gallery-item {
  width: 13.28%;
}

.gallery-columns-8 .gallery-item {
  width: 11.5%;
}

.gallery-columns-9 .gallery-item {
  width: 10.11%;
}

@media screen and (max-width: 768px) and (min-width: 481px) {
  .gallery-item,
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 49%;
    max-width: 49%;
  }
}
@media screen and (max-width: 480px) {
  .gallery-item,
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .x-scroll {
    overflow: auto;
  }
  .x-scroll table {
    width: 100%;
  }
  .x-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .x-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .x-scroll::-webkit-scrollbar-thumb {
    background: #d6d6d6;
  }
  .x-scroll td,
  .x-scroll th {
    white-space: nowrap;
  }
}
#header-box {
  z-index: 100;
  width: 100%;
  position: fixed;
  transition: 0.3s;
  background: #ffffff;
}

header {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 94%;
}

#site-title {
  z-index: 2;
  margin-top: 5px;
}
@media screen and (min-width: 1280px) {
  #site-title {
    margin: 1.563vw auto 0.521vw 0;
  }
}
@media screen and (min-width: 1920px) {
  #site-title {
    margin: 30px auto 10px 0;
  }
}
#site-title a {
  color: #222;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
#site-title a span {
  font-size: 2vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 576px) {
  #site-title a span {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  #site-title a span {
    margin-bottom: 10px;
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1920px) {
  #site-title a span {
    letter-spacing: 0.2em;
    font-size: 26px;
  }
}
#site-title a:hover {
  opacity: 0.7;
}
#site-title img {
  height: auto;
  transition: opacity 0.3s;
  vertical-align: bottom;
  width: 180px;
  margin-top: 10px;
  margin-right: 15px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1280px) {
  #site-title img {
    width: 18.229vw;
    margin-top: 0.781vw;
    margin-right: 2.083vw;
  }
}
@media screen and (min-width: 1920px) {
  #site-title img {
    width: 350px;
    margin-top: 15px;
    margin-right: 40px;
  }
}

#header-sdgs {
  display: none;
}
@media screen and (min-width: 1280px) {
  #header-sdgs {
    display: block;
  }
}
#header-sdgs img {
  width: 5.208vw;
  height: 2.708vw;
}
@media screen and (min-width: 1920px) {
  #header-sdgs img {
    width: 100px;
    height: 52px;
  }
}

#menu-box {
  margin-left: auto;
  display: flex;
  align-items: center;
}

#sns-box {
  display: none;
}
@media screen and (min-width: 1280px) {
  #sns-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 30px 0 20px;
    justify-content: flex-end;
  }
}
#sns-box img {
  vertical-align: bottom;
  padding: 0 2px;
  width: 42px;
}
#sns-box a {
  transition: opacity 0.3s;
}
#sns-box a:hover {
  opacity: 0.7;
}
#sns-box a:first-child img {
  padding-right: 6px;
}

#wrapper {
  margin: 0 auto 40px;
  width: 1080px;
  max-width: 94%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  #wrapper {
    margin: 0 auto 80px;
  }
}
body:not(.home) #wrapper {
  flex: 1;
}
body.page #wrapper .content-box {
  position: relative;
  padding-top: 20px;
}
body.home #wrapper {
  padding-top: 0;
}
#wrapper #main,
#wrapper #main-single {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #wrapper #main {
    width: 73.6%;
    padding-right: 20px;
  }
}
#wrapper #sub {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #wrapper #sub {
    width: 26.4%;
    padding-left: 20px;
  }
}
#wrapper .ul-archive {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#wrapper .ul-archive li {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  width: 48%;
  justify-content: space-between;
}
#wrapper .ul-archive li:nth-child(odd) {
  margin-right: 4%;
}
@media screen and (min-width: 768px) {
  #wrapper .ul-archive li {
    width: 31%;
    justify-content: space-between;
  }
  #wrapper .ul-archive li:nth-child(odd) {
    margin-right: 0;
  }
  #wrapper .ul-archive li:not(:nth-child(3n)) {
    margin-right: 3.5%;
  }
}
#wrapper .ul-archive li a {
  color: #222;
  display: block;
}
#wrapper .ul-archive li a .articles-thumb,
#wrapper .ul-archive li a .articles-title {
  position: relative;
}
#wrapper .ul-archive li a .articles-thumb p,
#wrapper .ul-archive li a .articles-title p {
  font-size: clamp(0.813rem, 0.779rem + 0.13vw, 0.875rem);
  line-height: 1.6;
}
#wrapper .ul-archive li a .articles-term {
  margin-bottom: 5px;
}
#wrapper .ul-archive li a .articles-term span {
  margin: 0 5px 2px 0;
  display: inline-block;
  color: #fff;
  padding: 2px 5px 3px;
  text-align: center;
  box-sizing: border-box;
  font-size: clamp(0.625rem, 0.558rem + 0.26vw, 0.75rem);
  background: #009900;
}
@media screen and (min-width: 768px) {
  #wrapper .ul-archive li a .articles-term span {
    min-width: 130px;
  }
}
#wrapper .ul-archive li a .articles-term span.event {
  background: #f6831e;
}
#wrapper .ul-archive li a .articles-term span.articles-date {
  background: none;
  color: #222;
  min-width: 0;
  padding: 2px 0 3px;
}
#wrapper .ul-archive li a .articles-thumb {
  text-align: center;
  margin-bottom: 10px;
}
#wrapper .ul-archive li a .articles-thumb:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: solid 0 rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  z-index: 2;
  box-sizing: border-box;
  transition: 0.15s;
}
#wrapper .ul-archive li a .articles-thumb img {
  box-sizing: border-box;
  vertical-align: bottom;
  position: relative;
  width: 100%;
}
#wrapper .ul-archive li a:hover {
  color: #009900;
}
#wrapper .ul-archive li a:hover .articles-thumb:before {
  border: solid 6px #009900;
}

#footer-container {
  padding: 0 4% 50px;
  background-image: url(../img/slider-bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
@media screen and (min-width: 768px) {
  #footer-container {
    background-image: url(../img/body-bottom.png);
    padding: 30px 5% 80px;
  }
}
#footer-container footer {
  margin: 0 auto;
  width: 1080px;
  max-width: 100%;
  text-align: center;
}
#footer-container footer #footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner {
    margin-bottom: 0;
    align-items: self-start;
  }
}
#footer-container footer #footer-inner h2 {
  margin: 0 0 10px;
  padding-top: 3px;
  width: 100%;
  order: 0;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner h2 {
    order: 2;
    width: auto;
  }
}
#footer-container footer #footer-inner h2 a {
  transition: opacity 0.3s;
}
#footer-container footer #footer-inner h2 a:hover {
  opacity: 0.7;
}
#footer-container footer #footer-inner h2 img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner h2 img {
    width: 300px;
  }
}
#footer-container footer #footer-inner #footer-banner-left,
#footer-container footer #footer-inner #footer-banner-right {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner #footer-banner-left,
  #footer-container footer #footer-inner #footer-banner-right {
    width: 120px;
  }
}
#footer-container footer #footer-inner #footer-banner-left {
  order: 1;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner #footer-banner-left {
    order: 0;
  }
}
#footer-container footer #footer-inner #footer-banner-right {
  order: 2;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner #footer-banner-right {
    order: 2;
  }
}
#footer-container footer #footer-inner #footer-banner-sdgs {
  width: 20%;
  order: 3;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-inner #footer-banner-sdgs {
    display: none;
  }
}
#footer-container footer p,
#footer-container footer li {
  font-size: 12px;
}
@media screen and (min-width: 992px) {
  #footer-container footer p,
  #footer-container footer li {
    font-size: 13px;
  }
}
#footer-container footer #footer-menu {
  display: flex;
  margin: 10px auto;
  justify-content: center;
}
#footer-container footer #footer-menu li:not(:last-child)::after {
  content: "／";
}
#footer-container footer #footer-menu li a {
  margin: 0 15px;
  color: #222;
  font-size: 14px;
  font-weight: bold;
}
#footer-container footer #footer-menu li a:hover {
  color: #999;
}
#footer-container footer #copyright p {
  font-size: clamp(0.625rem, 0.558rem + 0.26vw, 0.75rem);
}

section {
  max-width: 100%;
}
.post-type-archive section {
  width: 100%;
}
section.section-center {
  margin: 50px auto 50px;
  width: 1280px;
}
@media screen and (min-width: 576px) {
  section.section-center {
    margin: 100px auto 150px;
  }
}
@media screen and (min-width: 576px) {
  .error404 section {
    min-height: 400px;
  }
}
section.section-narrow {
  width: 992px;
}
section#section-page {
  max-width: 94%;
}
section img {
  max-width: 100%;
  height: auto;
}
section iframe {
  max-width: 100%;
}

.page-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 5.4vw;
  line-height: 1.2;
  padding: 10px 0;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 576px) {
  .page-title {
    font-size: 35px;
  }
}
.page-title span {
  margin-left: 10px;
  letter-spacing: 0.2em;
  display: inline-block;
  font-size: 50%;
  font-weight: normal;
}
.page-title svg {
  margin-right: 10px;
}

article:not(:last-child) {
  margin-bottom: 100px;
}
article hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #222;
}
article h2,
article h3,
article h4,
article h5,
article h6 {
  margin: 20px 0;
  line-height: 1.2;
  font-weight: bold;
}
article p,
article li {
  line-height: 2;
  margin: 10px 0;
  font-size: clamp(0.875rem, 0.808rem + 0.26vw, 1rem);
}
article p.p-large {
  font-size: clamp(1rem, 0.865rem + 0.51vw, 1.25rem);
  font-weight: bold;
  line-height: 1.7;
}
article p.p-small {
  font-size: clamp(0.625rem, 0.558rem + 0.26vw, 0.75rem);
}
article h3 {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  article h3 {
    font-size: 25px;
  }
}
@media screen and (min-width: 576px) {
  article > h3:first-child {
    margin-top: 10px;
  }
}
article h4 {
  font-size: 16px;
}
@media screen and (min-width: 576px) {
  article h4 {
    font-size: 22px;
    margin: 20px 0;
    line-height: 1.6;
  }
}
article h5,
article h6 {
  margin: 10px auto;
}
article table {
  width: 100%;
  max-width: 100%;
  margin: 40px auto;
  background: #fff;
}
article table th,
article table td {
  border: solid 1px #ddd;
  padding: 10px;
  font-size: 14px;
  box-sizing: border-box;
  display: block;
}
@media screen and (min-width: 576px) {
  article table th,
  article table td {
    display: table-cell;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  article table th,
  article table td {
    min-width: 100px;
    font-size: 16px;
  }
}
article table th p,
article table td p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  article table th p,
  article table td p {
    font-size: 16px;
  }
}
article table th {
  font-weight: bold;
  vertical-align: middle;
  background-color: #009900;
  color: #fff;
}
article table td {
  text-align: left;
}
article table thead {
  color: #fff;
}
article ul,
article ol {
  list-style: disc;
  margin-left: 1em;
  margin: 40px 0 40px 1em;
}
article ol {
  list-style: decimal;
}

.ul-narrow {
  margin: 0 0 0 1em;
}
.ul-narrow li {
  margin: 0;
  line-height: 1.6;
}

div:not(.class-map) > .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 40px auto;
}
div:not(.class-map) > .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.wp-video,
.wp-video-shortcode {
  width: 100% !important;
}

nav#sub {
  display: flex;
  flex-direction: column;
}
nav#sub > .page-title {
  padding-top: 0;
}

@media all and (-ms-high-contrast: none) {
  nav#sub {
    display: block;
  }
}
#side-archive {
  margin-bottom: 30px;
}
#side-archive > .page-title {
  padding-top: 0;
}
#side-archive p {
  font-size: 12px;
}

.ul-side-archive a p,
.ul-side-archive a img {
  transition: 0.3s;
}
.ul-side-archive a:hover p {
  color: #009900;
}
.ul-side-archive a:hover img {
  opacity: 0.7;
}

.ul-side-archive li a {
  color: #222;
  display: flex;
  margin-bottom: 10px;
}
.ul-side-archive li a p:first-child {
  width: 45%;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .ul-side-archive li a p:first-child {
    width: 30%;
  }
}
.ul-side-archive li a p:first-child img {
  margin-top: 5px;
}
.ul-side-archive li a p:last-child {
  flex: 1;
}

.single-catch img {
  vertical-align: top;
  width: 100%;
}

.interviewer {
  font-size: 16px;
  color: #009900;
  font-weight: bold;
  margin-top: 40px;
}

#title-archive-people .page-title {
  padding: 0;
  margin-top: -5px;
}
#title-archive-people span span {
  margin-left: 15px;
  color: #222;
  font-size: 10px;
}
@media screen and (min-width: 576px) {
  #title-archive-people span span {
    margin-top: 4px;
    font-size: 63.7%;
  }
}

#title-box {
  width: 1080px;
  margin: 0 auto;
  max-width: 94%;
  padding: 50px 0 30px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #title-box {
    padding: 120px 0 30px;
  }
}

.img-line-box {
  width: 1080px;
  margin: 0 auto;
  max-width: 94%;
  padding: 30px 0 0;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .img-line-box {
    padding: 30px 0;
  }
}

#breadcrumb {
  width: 1080px;
  margin: 0 auto;
  max-width: 94%;
  padding: 75px 0 20px;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    padding-top: 8.854vw;
    display: block;
  }
}
@media screen and (min-width: 1920px) {
  #breadcrumb {
    padding-top: 170px;
  }
}
#breadcrumb .breadcrumb-lists {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
}
#breadcrumb .breadcrumb-lists li {
  margin: 0 5px;
  font-size: 13px;
}
#breadcrumb .breadcrumb-lists li a {
  color: #222;
}
#breadcrumb .breadcrumb-lists li a:hover {
  color: #009900;
}
#breadcrumb .breadcrumb-lists li strong {
  font-weight: normal;
}
#breadcrumb .breadcrumb-lists .breadcrumb-home,
#breadcrumb .breadcrumb-lists .breadcrumb-custompost,
#breadcrumb .breadcrumb-lists .breadcrumb-page {
  text-transform: uppercase;
}

body.archive .breadcrumb-lists {
  text-transform: uppercase;
}

#articles-title-box #people-interview p {
  font-size: 11px;
}

#people-heading {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #people-heading {
    font-size: 22px;
  }
}

#people-profile {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  #people-profile {
    flex-direction: row;
  }
  #people-profile > div {
    width: 48%;
  }
}

#people-photo {
  margin-top: 10px;
}

#people-profile-text h2,
#people-profile-text h3,
#people-profile-text h4,
#people-profile-text h5,
#people-profile-text h6,
#people-profile-text p {
  margin: 10px auto;
}
#people-profile-text p {
  font-size: 12px;
}
#people-profile-text a {
  color: #222;
}
#people-profile-text a:hover {
  color: #009900;
}
#people-profile-text h3 {
  font-weight: normal;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  #people-profile-text h3 {
    font-size: 25px;
  }
}
#people-profile-text h4 {
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #people-profile-text h4 {
    font-size: 22px;
  }
}

.sns-title {
  font-size: 15px;
  font-weight: bold;
  margin-top: 40px;
}

.sns-button {
  margin-top: 20px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .sns-button {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.sns-button a {
  transition: 0.3s;
}
.sns-button a:hover {
  opacity: 0.5;
}
.sns-button svg {
  margin-right: 15px;
}
.sns-button .cls-1,
.sns-button .cls-2 {
  stroke-width: 0px;
}
.sns-button .cls-2 {
  fill: #fff;
}

.ul-side-posts {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .ul-side-posts {
    display: block;
  }
}
.ul-side-posts li {
  margin-bottom: 30px;
  position: relative;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .ul-side-posts li {
    width: auto;
  }
}
.ul-side-posts li:nth-child(2n+1) {
  margin-right: 4%;
}
@media screen and (min-width: 768px) {
  .ul-side-posts li:nth-child(2n+1) {
    margin-right: 0;
  }
}
.ul-side-posts li p {
  font-size: 12px;
}
.ul-side-posts li img {
  width: 100%;
}
.ul-side-posts li a {
  color: #222;
  transition: 0.3s;
}
.ul-side-posts li a img {
  transition: 0.3s;
}
.ul-side-posts li a:hover {
  opacity: 0.7;
  color: #009900;
}

article #office-box {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  margin: 40px auto 0;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  article #office-box {
    margin: 40px auto;
    padding: 40px 9%;
  }
}
article #office-box .office-box-inner {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  article #office-box .office-box-inner {
    display: flex;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  article #office-box .office-box-inner-img {
    margin-right: 5%;
    width: 28.4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
article #office-box .office-box-inner-img img {
  width: 170px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  article #office-box .office-box-inner-img img {
    width: 240px;
    width: auto;
    margin-top: 10px;
    margin-bottom: 0;
  }
}
article #office-box .office-box-inner-text {
  flex: 1;
  margin-bottom: 20px;
}
article #office-box .office-box-inner-text p,
article #office-box .office-box-inner-text h4 {
  margin: 0 auto;
}
article #office-box .office-box-inner-text p {
  font-size: 14px;
}

.box-gray {
  background: #e6e6e6;
  padding: 30px;
  margin: 40px auto;
}

.box-flex {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 992px) {
  .box-flex {
    flex-direction: row;
  }
}
.box-flex .box-flex-text {
  flex: 1;
}
.box-flex p {
  font-size: 80%;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .box-flex .box-flex-img {
    width: 200px;
    margin-left: 20px;
  }
}
.box-flex .box-flex-img img {
  vertical-align: bottom;
}

@media screen and (min-width: 992px) {
  .single-event .box-flex-img {
    width: 250px;
  }
}

.button-two {
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .button-two {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.button-blue-l,
.button-lightblue-m,
.button-end {
  border-radius: 100px;
  padding: 10px 40px;
  background: #0071bc;
  color: #fff;
  display: block;
  border: solid 2px #0071bc;
  font-size: 17px;
  margin: 20px;
  line-height: 1.2;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button-blue-l,
  .button-lightblue-m,
  .button-end {
    margin: 0 10px;
  }
}
.button-blue-l:hover,
.button-lightblue-m:hover,
.button-end:hover {
  background: #fff;
  color: #0071bc;
}

.button-end {
  background: gray;
  border: gray;
}
.button-end:hover {
  background: gray;
  border: gray;
  color: #fff;
}

.button-lightblue-m {
  color: #222;
  background: #3ab5c4;
  border-color: #3ab5c4;
  font-size: 11px;
}
.button-lightblue-m:hover {
  color: #222;
}

@media screen and (min-width: 992px) {
  .subtitle-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.subtitle-box .subtitle {
  font-size: clamp(1.313rem, 1.01rem + 1.15vw, 1.875rem);
}
@media screen and (min-width: 992px) {
  .subtitle-box .subtitle {
    margin-top: 10px;
    margin-left: 20px;
  }
}

@media screen and (min-width: 992px) {
  .text-center-pc {
    text-align: center;
  }
}

.contact-submit {
  text-align: center;
}
.contact-submit input {
  -webkit-appearance: none;
  color: #222;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

#menu-box-sp-box {
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: #009900;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all 0.5s;
}
#menu-box-sp-box.open {
  transform: translate(0);
}
#menu-box-sp-box #main-menu-sp li {
  text-align: center;
  text-transform: uppercase;
}
#menu-box-sp-box #main-menu-sp li a {
  color: #fff;
  padding: 10px 0;
  display: block;
}
#menu-box-sp-box #main-menu-sp li a:hover {
  background: #fff;
  color: #009900;
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

#sns-box-sp {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#sns-box-sp a {
  display: block;
  margin: 0 5px;
}
#sns-box-sp a img {
  width: 40px;
}

#pagetop {
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 1080px) {
  #pagetop {
    display: block;
  }
}
#pagetop.show {
  visibility: visible;
  opacity: 1;
}
#pagetop.show:hover {
  opacity: 0.7;
}

.text-em {
  color: red;
}

#footer-banner {
  margin: 0 auto 20px;
  width: 1080px;
  max-width: 94%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 576px) {
  #footer-banner {
    margin: 0 auto 80px;
  }
}
#footer-banner img {
  width: 120px;
}
@media screen and (min-width: 576px) {
  #footer-banner img {
    width: 150px;
  }
}
#footer-banner a {
  display: block;
}
#footer-banner a img {
  vertical-align: bottom;
}
#footer-banner #footer-banner-right a:first-child {
  margin-bottom: 50px;
}

#section-articles,
#section-archive {
  position: relative;
  width: 100%;
}
#section-articles select,
#section-archive select {
  background: #fff;
  border: solid 1px #222;
  position: relative;
  padding: 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 45px;
}
#section-articles .select-wrap,
#section-archive .select-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  margin: 5px 0 20px auto;
}
@media screen and (min-width: 576px) {
  #section-articles .select-wrap,
  #section-archive .select-wrap {
    margin: 0 0 20px auto;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    width: auto;
  }
}
#section-articles .select-wrap:before, #section-articles .select-wrap:after,
#section-archive .select-wrap:before,
#section-archive .select-wrap:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  font-size: 20px;
  pointer-events: none;
}
@media screen and (min-width: 480px) {
  #section-articles .select-wrap:before, #section-articles .select-wrap:after,
  #section-archive .select-wrap:before,
  #section-archive .select-wrap:after {
    width: 7px;
    height: 7px;
  }
}
#section-articles .select-wrap:before,
#section-archive .select-wrap:before {
  border-top: 2px solid #009900;
  border-left: 2px solid #009900;
  transform: translateY(-50%) rotate(-135deg);
  z-index: 2;
  right: 18px;
  top: 50%;
}
#section-articles .select-wrap::after,
#section-archive .select-wrap::after {
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: #ccc;
  z-index: 1;
}
@media screen and (min-width: 480px) {
  #section-articles .select-wrap::after,
  #section-archive .select-wrap::after {
    width: 25px;
    height: 25px;
  }
}
#section-articles .select-wrap select,
#section-archive .select-wrap select {
  font-size: 11px;
}
@media screen and (min-width: 576px) {
  #section-articles .select-wrap select,
  #section-archive .select-wrap select {
    font-size: 14px;
  }
}

body.home {
  overflow-x: hidden;
  position: relative;
}

.bg-gray {
  background-color: #f0f0f0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  max-width: 100%;
}

#articles-title-box-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0 0;
}
#articles-title-box-inner #title-people {
  font-size: clamp(0.875rem, 0.639rem + 0.9vw, 1.313rem);
  margin: 0;
}
#articles-title-box-inner p#date-article {
  font-size: 12px;
  width: 100%;
  text-align: right;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #articles-title-box-inner p#date-article {
    margin: 10px 0;
    width: auto;
    text-align: left;
  }
}
#articles-title-box-inner #category-article {
  margin: 0 5px;
  display: flex;
  align-items: center;
}
#articles-title-box-inner #category-article span {
  margin: 0 5px;
  background: #009900;
  padding: 2px 12px;
  color: #fff;
  font-size: clamp(0.688rem, 0.587rem + 0.38vw, 0.875rem);
  font-weight: bold;
}

.side-category span {
  font-size: 10px;
  background: #009900;
  color: #fff;
  padding: 1px 10px 2px;
  margin: 0 5px 2px 0;
}
.side-category span.side-date {
  background: none;
  color: #808080;
  font-size: 11px;
  margin: 0;
  padding: 5px;
}

#side-banner {
  display: flex;
}
@media screen and (min-width: 768px) {
  #side-banner {
    display: block;
  }
}
#side-banner a {
  margin-bottom: 30px;
  transition: 0.3s;
  display: block;
}
#side-banner a:nth-child(odd) {
  margin-right: 4%;
}
@media screen and (min-width: 768px) {
  #side-banner a:nth-child(odd) {
    margin-right: 0;
  }
}
#side-banner a:hover {
  opacity: 0.6;
}

.button-andmore {
  text-align: center;
  margin: 20px auto 40px;
}
.button-andmore a {
  color: #222;
  display: inline-block;
  border: solid 1px #222;
  padding: 14px 20px;
  width: 200px;
  transition: 0.3s;
  letter-spacing: 0.2em;
  box-sizing: border-box;
  position: relative;
  font-size: clamp(0.75rem, 0.615rem + 0.51vw, 1rem);
}
@media screen and (min-width: 480px) {
  .button-andmore a {
    width: 330px;
  }
}
.button-andmore a:hover {
  background: #222;
  color: #fff;
}
.button-andmore a:before, .button-andmore a:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  font-size: 20px;
  pointer-events: none;
}
.button-andmore a:before {
  border-top: 2px solid #009900;
  border-left: 2px solid #009900;
  transform: translateY(-50%) rotate(-225deg);
  z-index: 2;
  right: 22px;
  top: 50%;
}
.button-andmore a::after {
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  background: #ccc;
  z-index: 1;
}

#top-slider #top-slider-box a {
  transition: 0.3s;
  display: block;
}
#top-slider #top-slider-box img {
  vertical-align: bottom;
}
#top-slider #top-slider-box .swiper-button-prev {
  left: 1.3vw;
}
@media screen and (min-width: 576px) {
  #top-slider #top-slider-box .swiper-button-prev {
    left: 2.4vw;
  }
}
@media screen and (min-width: 992px) {
  #top-slider #top-slider-box .swiper-button-prev {
    left: 23.6vw;
  }
}
@media screen and (min-width: 1280px) {
  #top-slider #top-slider-box .swiper-button-prev {
    left: 24.2vw;
  }
}
#top-slider #top-slider-box .swiper-button-next {
  right: 1.3vw;
}
@media screen and (min-width: 576px) {
  #top-slider #top-slider-box .swiper-button-next {
    right: 2.4vw;
  }
}
@media screen and (min-width: 992px) {
  #top-slider #top-slider-box .swiper-button-next {
    right: 23.6vw;
  }
}
@media screen and (min-width: 1280px) {
  #top-slider #top-slider-box .swiper-button-next {
    right: 24.2vw;
  }
}
#top-slider #top-slider-box .swiper-button-next:focus,
#top-slider #top-slider-box .swiper-button-prev:focus {
  outline: none;
}
#top-slider #top-slider-box .swiper-button-next::after,
#top-slider #top-slider-box .swiper-button-prev::after {
  font-weight: bold;
  z-index: 2;
  color: #009900;
  font-size: 1.815vw;
}
@media screen and (min-width: 992px) {
  #top-slider #top-slider-box .swiper-button-next::after,
  #top-slider #top-slider-box .swiper-button-prev::after {
    font-size: 18px;
  }
}
#top-slider #top-slider-box .swiper-button-next:before,
#top-slider #top-slider-box .swiper-button-prev:before {
  border-radius: 100px;
  content: "";
  background: #ccc;
  display: block;
  position: absolute;
  z-index: 0;
  width: 3.427vw;
  height: 3.427vw;
}
@media screen and (min-width: 992px) {
  #top-slider #top-slider-box .swiper-button-next:before,
  #top-slider #top-slider-box .swiper-button-prev:before {
    width: 34px;
    height: 34px;
  }
}
#top-slider .swiper-slide {
  transform: scale(0.6);
  transition: 0.7s; /* ゆっくり小さくさせる */
}
#top-slider .swiper-slide img {
  height: auto;
  width: 100%;
}
#top-slider .swiper-slide-active {
  transform: scale(1); /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
}
#top-slider .swiper-pagination {
  position: relative;
  margin: 0 auto 15px;
}
@media screen and (min-width: 576px) {
  #top-slider .swiper-pagination {
    margin: 30px auto;
  }
}
#top-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
}
#top-slider .swiper-pagination-bullet-active {
  background: #009900;
}

#catch-box {
  margin: 0 auto 6.25vw;
  padding-top: 58px;
}
@media screen and (min-width: 1280px) {
  #catch-box {
    margin: 0 auto 80px;
    padding-top: 8.854vw;
  }
}
@media screen and (min-width: 1920px) {
  #catch-box {
    padding-top: 170px;
  }
}
#catch-box #catch-box-slider img {
  vertical-align: top;
}
#catch-box #catch-box-banner {
  margin-top: 20px;
  padding: 0 3%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  #catch-box #catch-box-banner {
    margin-top: 0;
  }
}
#catch-box #catch-box-banner a {
  display: block;
  margin-bottom: 20px;
  transition: 0.3s;
}
#catch-box #catch-box-banner a:nth-child(odd) {
  margin-right: 4%;
}
@media screen and (min-width: 1280px) {
  #catch-box #catch-box-banner a:nth-child(odd) {
    margin-right: 40px;
  }
}
#catch-box #catch-box-banner a:hover {
  opacity: 0.7;
}
#catch-box #catch-box-banner a img {
  vertical-align: bottom;
}
#catch-box #catch-logo {
  display: block;
  margin: 0 auto 5vw;
  width: 32vw;
}
@media screen and (min-width: 1280px) {
  #catch-box #catch-logo {
    margin: 0 auto 40px;
    width: 330px;
  }
}

#section-about {
  margin-top: 30px;
  width: 100%;
}
#section-about #section-about-inner {
  padding: 80px 0;
  width: 1080px;
  max-width: 94%;
  margin: 0 auto;
}
#section-about #section-about-inner > img {
  display: block;
  margin: 0 auto;
}
#section-about #section-about-inner #about-desc {
  padding: 40px 0;
}
@media screen and (min-width: 576px) {
  #section-about #section-about-inner #about-desc {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#section-about #section-about-inner #about-desc #about-desc-img {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  #section-about #section-about-inner #about-desc #about-desc-img {
    margin-bottom: 0;
    width: 41%;
    flex-shrink: 0;
  }
}
#section-about #section-about-inner #about-desc #about-desc-img img {
  width: 60%;
}
@media screen and (min-width: 576px) {
  #section-about #section-about-inner #about-desc #about-desc-img img {
    width: auto;
  }
}
@media screen and (min-width: 576px) {
  #section-about #section-about-inner #about-desc #about-desc-text {
    flex-shrink: 0;
    width: 50%;
  }
}
#section-about #section-about-inner #about-desc #about-desc-text p {
  text-align: justify;
  font-size: clamp(0.875rem, 0.808rem + 0.26vw, 1rem);
}
#section-about #section-about-inner #about-banner {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section-about #section-about-inner #about-banner .about-banner-inner {
  width: 46.55%;
  color: #222;
}
#section-about #section-about-inner #about-banner .about-banner-inner img {
  border: solid 1px #222;
  vertical-align: bottom;
}
#section-about #section-about-inner #about-banner .about-banner-inner p {
  margin: 10px 0;
  font-size: 14px;
}

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

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