@charset "UTF-8";
@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}

.bottom_to_top.active {
  animation: bottom_to_top 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
.bottom_to_tops > * {
  opacity: 0;
}

.bottom_to_tops.active > * {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.2s;
}
.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.4s;
}
.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.6s;
}
.bottom_to_tops.active > *:nth-child(5) {
  animation-delay: 0.7s;
}
.bottom_to_tops.active > *:nth-child(6) {
  animation-delay: 0.8s;
}
.bottom_to_tops.active > *:nth-child(7) {
  animation-delay: 0.9s;
}
.bottom_to_tops.active > *:nth-child(8) {
  animation-delay: 1s;
}
.bottom_to_tops.active > *:nth-child(9) {
  animation-delay: 1.1s;
}
.bottom_to_tops.active > *:nth-child(10) {
  animation-delay: 1.2s;
}

@keyframes left_to_right {
  0% {
    transform: translate3d(-3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_right {
  opacity: 0;
}

.left_to_right.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes right_to_left {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.right_to_left {
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes top_to_bottom {
  0% {
    transform: translate3d(0, -3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.top_to_bottom {
  opacity: 0;
}

.top_to_bottom.active {
  animation: top_to_bottom 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:before {
  background: #a0a0a0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition: all 0.8s 0s ease;
  width: 100%;
  z-index: 1;
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:before {
  transform: translateX(100%);
}

.show_text {
  position: relative;
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition-delay: 0.3s;
}

.role_to {
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.8s 0s ease;
}

.role_to.active {
  opacity: 1;
  transform: rotate(0deg);
}

.big_to {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s 0s ease;
}
.big_to.active {
  opacity: 1;
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  transition: all 0.8s 0s ease;
  transition-delay: 0.3s;
}
.fadeIn.active {
  opacity: 1;
}

.showvis span:nth-child(1):after {
  top: 48%;
}

.showvis span:nth-child(2):after {
  top: 80%;
}

.showvis span:nth-child(3):after {
  top: 54%;
}

.showvis span:nth-child(1):before {
  top: -5px;
  left: -5px;
}

.showvis span:nth-child(2):before {
  top: -3px;
  left: 1px;
}

.showvis span:nth-child(3):before {
  top: 2px;
  left: -2px;
}

.showvis.showvisDelay span:nth-child(1):before {
  top: 20px;
}

.showvis.active span:nth-child(1):after {
  animation: leftin 0.5s ease 0.2s forwards;
}

.showvis.active span:nth-child(2):after {
  animation: leftin 0.5s ease 0.4s forwards;
}

.showvis.active span:after {
  animation: leftin 0.5s ease 0s forwards;
}

.showvis.active span:before {
  animation: chikachika 0.1s ease 0.7s infinite, chikachika2 0.1s ease 1.2s forwards;
}

.showvis.active span {
  animation: fadeIn 1s ease 0.7s forwards;
}

.showvis.showvisDelay.active span:after {
  animation: leftin 0.4s ease 0.2s forwards;
}

.showvis.showvisDelay.active span:before {
  animation: chikachika 0.1s ease 0.8s infinite, chikachika2 0.1s ease 1.4s forwards;
}

.showvis.showvisDelay.active span {
  animation: fadeIn 1s ease 0.9s forwards;
}

@keyframes fadeIn {
  from {
    color: transparent !important;
    text-shadow: 0px 0px 3px #fff, 0px 0px 5px #fff, 0px 0px 8px #fff, 0px 0px 10px #fff, 0px 0px 15px #fff, 0px 0px 20px #fff;
  }
  to {
    text-shadow: none;
    color: #fff !important;
  }
}
@keyframes chikachika {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0;
  }
}
@keyframes chikachika2 {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0;
    transform: scaleX(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(1000px) scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    transform: scale(1);
  }
  90% {
    transform: scale(20);
  }
  100% {
    transform: translateX(0px) scale(20);
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt" 1;
  font-size: 16px;
  line-height: 1.7;
}

.scroll_fixed {
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  html, body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 640px) {
  html, body {
    font-size: 2.5vw;
    font-size: 3.3vw;
  }
}
img {
  vertical-align: bottom;
  width: 100%;
}

main {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 5.5rem;
}

figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
}

.fcg {
  color: #45B035;
}

.fcr {
  color: #BC0000;
}

.rwd_show {
  display: none;
}

.sp_show {
  display: none;
}

@media screen and (max-width: 640px) {
  .rwd_hide {
    display: none;
  }
  .rwd_show {
    display: inline;
  }
  main {
    padding-top: 5.5rem;
  }
  .sp_show {
    display: block;
  }
}
.wrap {
  max-width: 67.5rem;
  padding: 0 5vw;
  margin: 0 auto;
}

.swrap {
  max-width: 60.9375rem;
  padding: 0 5vw;
  margin: 0 auto;
}

.over_wrap {
  position: relative;
}
.over_wrap:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translate3d(-50%, 0, 0);
  background-color: #F3F8F3;
  z-index: 1;
  position: absolute;
}
.over_wrap > * {
  position: relative;
  z-index: 2;
}

.indent1 {
  text-indent: -0.5em;
  margin-left: 0.7rem;
}

.indent2 {
  text-indent: -1.7em;
  margin-left: 1.7rem;
}

.indent3 {
  text-indent: -1.2em;
  margin-left: 1.2rem;
}

.indent4 {
  text-indent: -1em;
  margin-left: 1rem;
}

@media screen and (max-width: 1000px) {
  .wrap {
    width: auto;
  }
}
.site_header .wrap {
  display: flex;
  justify-content: space-between;
}
.site_header h1 a {
  width: 15.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.3rem;
}
.site_header .site_nav .lnav {
  display: flex;
  justify-content: flex-end;
  font-size: 0.875rem;
  padding-top: 0.7rem;
  align-items: center;
}
.site_header .site_nav .lnav a {
  display: block;
  color: #000;
}
.site_header .site_nav .lnav .ja {
  color: #8B8B8B;
}
.site_header .site_nav .lnav .ja.current {
  color: #45B035;
}
.site_header .site_nav .lnav .en {
  color: #8B8B8B;
}
.site_header .site_nav .lnav .en.current {
  color: #45B035;
}
.site_header .site_nav .lnav .recruit {
  display: block;
  border: 1px solid #45B035;
  padding: 0.1rem;
  width: 8.8125rem;
  text-align: center;
  color: #45B035;
  margin-left: 1rem;
}
.site_header .site_nav .gnav {
  display: flex;
}
.site_header .site_nav .gnav > li > a {
  font-size: 0.875rem;
  color: #000;
  display: block;
  padding-top: 0.2rem;
  padding: 1rem 2.2rem;
  position: relative;
  transition: all ease 0.3s;
}
.site_header .site_nav .gnav > li > a:after {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #000;
}
.site_header .site_nav .gnav > li > a span {
  display: block;
}
.site_header .site_nav .gnav > li > a span:before {
  content: "▲";
  display: block;
  color: #45B035;
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  opacity: 0;
  transition: all ease 0.3s;
}
.site_header .site_nav .gnav > li:hover > a {
  color: #45B035;
}
.site_header .site_nav .gnav > li:hover > a span:before {
  opacity: 1;
}
.site_header .site_nav .gnav > li:first-child > a:before {
  content: "";
  display: block;
  width: 1px;
  bottom: 0;
  height: 1rem;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
}
.site_header .site_nav .gnav > li:last-child a:after {
  display: none;
}
.site_header .site_nav .gnav > li:nth-child(4) a:after {
  display: none;
}
.site_header .site_nav .gnav > li.current > a {
  color: #45B035;
}
.site_header .site_nav .gnav > li.current > a span {
  display: block;
}
.site_header .site_nav .gnav > li.current > a span:before {
  content: "▲";
  display: block;
  color: #45B035;
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  opacity: 1;
}
.site_header .site_nav .gnav > li > ul, .site_header .site_nav .gnav > li > div {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 10;
}
.site_header .site_nav .gnav > li.business {
  display: flex;
}
.site_header .site_nav .gnav > li.business:hover > div {
  opacity: 1;
  visibility: visible;
}
.site_header .site_nav .gnav > li.business > div {
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}
.site_header .site_nav .gnav > li.business > div > ul {
  display: flex;
  justify-content: center;
  background-color: #fff;
  background-color: rgba(69, 176, 53, 0.7294117647);
}
.site_header .site_nav .gnav > li.business > div > ul > li {
  width: 15.9375rem;
  text-align: center;
}
.site_header .site_nav .gnav > li.business > div > ul > li > a {
  display: block;
  padding: 2rem;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
.site_header .site_nav .gnav > li.business > div > ul > li > a:before {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  margin: auto;
}
.site_header .site_nav .gnav > li.business > div > ul > li > a figure {
  border: 3px solid #319123;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}
.site_header .site_nav .gnav > li.business > div > ul > li > a p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.5;
}
.site_header .site_nav .gnav > li.business > div > ul > li > a p small {
  font-size: 0.875rem;
  display: block;
}
.site_header .site_nav .gnav > li.business > div > ul > li > a {
  transition: all ease 0.3s;
}
.site_header .site_nav .gnav > li.business > div > ul > li > a:hover {
  opacity: 0.5;
}
.site_header .site_nav .gnav > li.business > div > ul > li > ul {
  margin-top: 0.5rem;
  margin-left: 2.5rem;
  margin-bottom: 0.5rem;
}
.site_header .site_nav .gnav > li.business > div > ul > li > ul > li > a {
  color: #fff;
  padding: 0.4rem 2.2rem;
  display: block;
  font-size: 1.125rem;
  display: flex;
}
.site_header .site_nav .gnav > li.business > div > ul > li > ul > li > a:before {
  content: "▶︎";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding-left: 0rem;
}
.site_header .site_nav .gnav > li.business > div > ul > li > ul > li ul {
  margin-top: 0.5rem;
}
.site_header .site_nav .gnav > li.business > div > ul > li > ul > li ul li {
  margin-bottom: 0.5rem;
}
.site_header .site_nav .gnav > li.business > div > ul > li > ul > li ul li a {
  content: "";
  padding: 0.4rem 1rem;
  border: 1px solid #fff;
  display: block;
  font-size: 1.125rem;
  padding-left: 3.5rem;
  color: #fff;
}
.site_header .site_nav .gnav > li.saidan {
  display: flex;
}
.site_header .site_nav .gnav > li.saidan:hover > div {
  opacity: 1;
  visibility: visible;
}
.site_header .site_nav .gnav > li.saidan.current > div {
  visibility: visible;
  opacity: 1;
}
.site_header .site_nav .gnav > li.saidan > div {
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  background-color: rgba(69, 176, 53, 0.7294117647);
  background-color: #F3F8F3;
}
.site_header .site_nav .gnav > li.saidan > div > ul {
  max-width: 67.5rem;
  padding: 2rem 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 0.5rem;
}
.site_header .site_nav .gnav > li.saidan > div > ul li {
  flex: 0 1 calc((100% - 3rem) / 4);
  text-align: center;
  font-weight: 600;
}
.site_header .site_nav .gnav > li.saidan > div > ul li a {
  display: block;
  padding: 0.5rem 2rem;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  border-radius: 100rem;
  border: 3px solid #45B035;
  background-color: #fff;
}
.site_header .site_nav .gnav > li.saidan > div > ul li a p {
  font-size: 1.125rem;
  color: #45B035;
  line-height: 1.5;
}
.site_header .site_nav .gnav > li.saidan > div > ul li a {
  transition: all ease 0.3s;
}
.site_header .site_nav .gnav > li.saidan > div > ul li a:hover {
  background-color: #45B035;
}
.site_header .site_nav .gnav > li.saidan > div > ul li a:hover p {
  color: #fff;
}
.site_header .site_nav .gnav > li.contact {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
}
.site_header .site_nav .gnav > li.contact > a {
  border: 1px solid #45B035;
  color: #fff;
  background-color: #45B035;
  padding: 0.1rem;
  width: 8.8125rem;
  text-align: center;
  transition: all ease 0.3s;
}
.site_header .site_nav .gnav > li.contact > a:hover {
  background-color: #fff;
  color: #45B035;
}
.site_header .site_nav .gnav > li.contact > a span:before {
  display: none;
}

.site_header .site_nav .gnav > li.saidan.current > div {
  transition: none;
}
.site_header .site_nav .gnav > li.saidan.current > div.fixed {
  position: fixed;
  top: 0;
}

.page_publications_single .publications_nav.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 640px) {
  .page_publications_single .publications_nav.fixed {
    position: unset;
  }
  .page_publications_single .publications_nav {
    padding: 5vw;
  }
  .page_publications_single .publications_nav {
    position: relative !important;
    box-sizing: border-box;
  }
}
.subbt {
  display: none;
}

.sp_button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background-color: #45B035;
  width: 3.75rem;
  height: 3.75rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  top: 1rem;
  z-index: 100;
}
.sp_button span {
  transition: all ease 0.3s;
  transform: translate3d(0, 0px, 0);
  display: block;
}
.sp_button i {
  font-size: normal;
  position: absolute;
  width: 70%;
  left: 15%;
  top: 50%;
}
.sp_button i:before {
  content: "";
  display: block;
  height: 3px;
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
.sp_button i:after {
  content: "";
  display: block;
  height: 3px;
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
}
.sp_button i {
  opacity: 0;
  transform: rotate(15deg) translate3d(0, 10px, 0);
  transition: all ease 0.3s;
}
.sp_button.open > span {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}
.sp_button.open > i {
  transform: rotate(0deg) translate3d(0, 0px, 0);
  opacity: 1;
}

:root {
  interpolate-size: allow-keywords;
}

@media screen and (max-width: 640px) {
  .subnav {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
  }
  .subnav.open {
    height: auto;
  }
  .subnav {
    display: block;
  }
  .subbt {
    display: block;
    position: absolute;
    right: 0rem;
    width: 5rem;
    height: 100%;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 2rem;
    top: 0;
  }
  .subbt:after {
    content: "×";
    color: #fff;
    position: absolute;
    right: 1rem;
    top: 0;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    z-index: 100;
    border: 0;
    background-color: transparent;
    transition: all ease 0.3s;
    transform: rotate(45deg);
  }
  .subbt.open:after {
    transform: rotate(0);
  }
  .sp_button {
    display: block;
  }
  .site_nav {
    background-color: rgba(69, 176, 53, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    transition: all ease 0.3s;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
  .site_nav.open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  .site_header h1 a {
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
    width: 19.375rem;
  }
  .site_header .wrap {
    justify-content: center;
  }
  .site_header {
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    background-color: #fff;
    height: 5.5rem;
  }
  .site_header .site_nav .gnav {
    flex-direction: column;
    padding: 5vw;
    padding-top: 5.5rem;
    order: 1;
    width: 100%;
  }
  .site_header .site_nav .gnav > li {
    margin-bottom: 0.5rem;
  }
  .site_header .site_nav .gnav > li:first-child > a:before {
    display: none;
  }
  .site_header .site_nav .gnav > li > a:after {
    display: none;
  }
  .site_header .site_nav .gnav > li.business > div {
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    position: unset;
  }
  .site_header .site_nav .gnav > li.business > div > ul {
    flex-direction: column;
    background: transparent;
  }
  .site_header .site_nav .gnav > li.business > div > ul li a:before {
    display: none;
  }
  .site_header .site_nav .gnav > li.business > div > ul li a figure {
    display: none;
  }
  .site_header .site_nav .gnav > li.business > div > ul {
    position: unset;
  }
  .site_header .site_nav .gnav > li.business {
    flex-direction: column;
  }
  .site_header .site_nav .gnav > li.business > div > ul li a p small {
    display: inline;
    font-size: 100%;
  }
  .site_header .site_nav .gnav > li.business > div > ul li {
    width: auto;
    text-align: left;
  }
  .site_header .site_nav .gnav > li > a {
    color: #fff;
    border-bottom: 1px solid #fff;
    background-color: rgba(69, 176, 53, 0.7294117647);
    font-size: 1.25rem;
    padding-left: 1rem;
  }
  .site_header .site_nav .gnav > li.saidan {
    flex-direction: column;
  }
  .site_header .site_nav .gnav > li.saidan > div {
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    position: unset;
  }
  .site_header .site_nav .gnav > li.saidan > div > ul {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .site_header .site_nav .gnav > li.saidan > div > ul li {
    text-align: left;
    flex: 1;
    font-weight: normal;
  }
  .site_header .site_nav .gnav > li.saidan > div > ul li a {
    padding: 1rem 2.2rem;
    border: 0;
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    position: relative;
    padding-left: 3.5rem;
  }
  .site_header .site_nav .gnav > li.saidan > div > ul li a:before {
    content: "";
    display: block;
    width: 1.5625rem;
    height: 1.5625rem;
    background-image: url(../img/arrow_outer_w.png);
    position: absolute;
    left: 1.5rem;
    top: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .site_header .site_nav .gnav > li.saidan > div > ul li a p {
    color: inherit;
  }
  .site_header .site_nav .gnav > li.current > a {
    color: #fff;
  }
  .site_header .site_nav .gnav > li > a span {
    position: relative;
  }
  .site_header .site_nav .gnav > li > a span:before {
    opacity: 1;
    content: "";
    color: #fff;
    position: unset;
    display: inline;
    margin-right: 0.7rem;
    width: 0.6rem;
    height: 0.6rem;
    display: inline-block;
    transform: rotate(-45deg);
    border: 1px solid #fff;
    border-top: 0;
    border-left: 0;
  }
  .site_header .site_nav .gnav > li.business > div > ul > li > a {
    padding: 1rem 2.2rem;
    border: 0;
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    position: relative;
    padding-left: 3.5rem;
  }
  .site_header .site_nav .gnav > li.business > div > ul > li > a:before {
    content: "";
    display: block;
    width: 1.5625rem;
    height: 1.5625rem;
    background-image: url(../img/arrow_outer_w.png);
    position: absolute;
    left: 1.5rem;
    top: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .site_header .site_nav .gnav > li.business > div > ul > li.innerLink > a:before {
    content: "▶︎";
    width: auto;
    height: auto;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site_header .site_nav .gnav > li.business > div > ul > li > a:before {
    background-color: transparent;
  }
  .site_header .site_nav .gnav > li.business > div > ul > li > ul > li > a {
    padding-left: 0;
  }
  .site_header .site_nav .gnav > li:hover > a {
    color: #fff;
  }
  .site_header .site_nav .gnav > li.current > a span:before {
    color: #fff;
    position: unset;
    display: inline-block;
    content: "";
    margin-right: 0.5rem;
  }
  .site_header .site_nav .gnav > li.contact {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
  }
  .site_header .site_nav .gnav > li.contact > a {
    background-color: #fff;
    color: #45B035;
    margin: 0 auto;
    padding: 0.5rem 1rem;
  }
  .site_header .site_nav .gnav > li.contact > a span:before {
    display: none;
  }
  .site_header .site_nav .lnav {
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-wrap: wrap;
    order: 2;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 5rem;
  }
  .site_header .site_nav .lnav > div {
    flex: 0 1 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .site_header .site_nav .lnav .recruit {
    margin-left: 0;
    background-color: #fff;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
  }
  .site_header .site_nav .lnav a {
    color: #fff;
    font-size: 1.25rem;
  }
  .site_header .site_nav .lnav .ja.current {
    color: #EBFF00;
  }
  .site_header .site_nav .lnav .en {
    color: #fff;
  }
}
.catch .catchTop {
  padding: 3.2rem 0;
  padding-bottom: 2.5rem;
}
.catch .catchTop figure {
  width: 5.25rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.catch .catchTop p {
  max-width: 48.125rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.catch .catchSlide {
  padding: 3.2rem 0;
}
.catch .catchSlide .swiper-slide {
  padding: 1rem;
  padding-bottom: 2rem;
  height: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  box-sizing: border-box;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
}
.catch .catchSlide .swiper-slide figure {
  margin-bottom: 1rem;
}
.catch .catchSlide .swiper-slide h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.catch .catchSlide .swiper-slide p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.catch .catchSlide .swiper-button-next, .catch .catchSlide .swiper-rtl .swiper-button-prev {
  right: -7vw;
  color: #45B035;
}
.catch .catchSlide .swiper-button-prev, .catch .catchSlide .swiper-rtl .swiper-button-prev {
  left: -7vw;
  color: #45B035;
}

.kv_swiper .swiper-button-next, .kv_swiper .swiper-rtl .swiper-button-prev {
  right: 3vw;
}
.kv_swiper .swiper-button-next, .kv_swiper .swiper-button-prev {
  color: #fff;
}
.kv_swiper .swiper-button-prev, .kv_swiper .swiper-rtl .swiper-button-next {
  left: 3vw;
}

@media screen and (max-width: 640px) {
  .catch .catchSlide .swiper-button-prev, .catch .catchSlide .swiper-rtl .swiper-button-prev {
    bottom: -21vw;
    top: auto;
    right: auto;
    left: 33vw;
  }
  .catch .catchSlide .swiper-button-next, .catch .catchSlide .swiper-rtl .swiper-button-prev {
    bottom: -21vw;
    top: auto;
    left: auto;
    right: 33vw;
  }
  .catch .catchSlide {
    padding-bottom: 9rem;
  }
  .catch .catchSlide .swiper-slide p br {
    display: none;
  }
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.buttons.buttonsColmn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.ucbt {
  background-color: #45B035;
  color: #fff;
  border-radius: 100rem;
  width: 14.6875rem;
  box-sizing: border-box;
  padding: 0.3rem 0;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  border: 1px solid #45B035;
  transition: all ease 0.3s;
  cursor: pointer;
}
.ucbt:hover {
  background-color: #fff;
  color: #45B035;
}
.ucbt.ucbtsq {
  border-radius: 0;
  width: 12.5rem;
}
.ucbt.ucbtl {
  background-color: #81CC60;
  border-color: #81CC60;
}
.ucbt.ucbtl:hover {
  background-color: #fff;
}

p.ucbt {
  background-color: transparent;
  padding: 0;
  border: 0;
}
p.ucbt a {
  background-color: #45B035;
  color: #fff !important;
  border-radius: 100rem;
  width: auto;
  box-sizing: border-box;
  padding: 0.3rem 0;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  border: 1px solid #45B035;
  transition: all ease 0.3s;
}
p.ucbt a:hover {
  background-color: #fff;
  color: #45B035 !important;
}
p.ucbt a.ucbtsq {
  border-radius: 0;
  width: 12.5rem;
}
p.ucbt a.ucbtl {
  background-color: #81CC60;
  border-color: #81CC60;
}
p.ucbt a.ucbtl:hover {
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .ucbt {
    font-size: 125%;
  }
}
.catch_swiper {
  overflow: visible !important;
}

.sb {
  padding: 5.5rem 0;
  padding-bottom: 0;
}
.sb .sbh {
  margin-bottom: 3rem;
}
.sb .sbh h2 {
  color: #45B035;
  text-align: center;
  font-size: 1.875rem;
  border-bottom: 1px solid #45B035;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.sb .sbh p {
  text-align: center;
  color: #C1C1C1;
  font-size: 1.25rem;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  .sb .sbh h2 {
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 150%;
  }
  .sb .sbh p {
    font-size: 1rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sbNews .sbc ul {
  margin-bottom: 2rem;
}
.sbNews .sbc ul li {
  margin-bottom: 1.3rem;
}
.sbNews .sbc ul li:last-child {
  margin-bottom: 0;
}
.sbNews .sbc ul li a {
  display: flex;
  border-radius: 0.5rem;
  border: 1px solid #45B035;
  font-size: 1.125rem;
}
.sbNews .sbc ul li a time {
  padding: 0 2rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbNews .sbc ul li a .cat {
  color: #fff;
  padding: 0.5rem 0;
  width: 9.5rem;
  line-height: 1.3;
  text-align: center;
  background-color: #45B035;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbNews .sbc ul li a .title {
  font-size: 1.0625rem;
  color: #45B035;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}
.sbNews .sbc ul li a {
  transition: all ease 0.3s;
}
.sbNews .sbc ul li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 640px) {
  .sbNews .sbc ul li a .cat {
    display: none;
  }
  .sbNews .sbc ul li a {
    font-size: 1.125rem;
  }
  .sbNews .sbc ul li a .title {
    padding-left: 0;
  }
}
.sbBusiness .sbc ul li {
  margin-bottom: 1.5rem;
}
.sbBusiness .sbc ul li:last-child {
  margin-bottom: 0;
}
.sbBusiness .sbc ul li a {
  gap: 1.5rem;
  display: flex;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
}
.sbBusiness .sbc ul li a > figure {
  flex: 0 1 30rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sbBusiness .sbc ul li a > div h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
}
.sbBusiness .sbc ul li a > div h3:after {
  content: "";
  display: block;
  background-image: url(../img/arrow_outer.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.875rem;
  height: 1.875rem;
  margin-left: 1rem;
}
.sbBusiness .sbc ul li a > div {
  flex: 1;
}
.sbBusiness .sbc ul li a > div p {
  font-size: 1.125rem;
}
.sbBusiness .sbc ul li a {
  transition: all ease 0.3s;
}
.sbBusiness .sbc ul li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 640px) {
  .sbBusiness .sbc ul li a {
    flex-direction: column;
  }
  .sbBusiness .sbc ul li a > figure {
    flex: 1;
  }
  .sbBusiness .sbc ul li a > div h3 {
    justify-content: center;
  }
}
.sbSupporting .over_wrap {
  padding: 2rem 0;
}
.sbSupporting .over_wrap_in {
  display: flex;
  gap: 2rem;
}
.sbSupporting .over_wrap_in > figure {
  flex: 0 1 31.25rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.sbSupporting .over_wrap_in > div {
  padding-top: 1.5rem;
  padding-right: 2.4rem;
  flex: 1;
}
.sbSupporting .over_wrap_in > div p {
  margin-bottom: 2.9rem;
  font-size: 1.125rem;
  line-height: 1.9;
}
.sbSupporting .over_wrap_in > div .ucbt {
  margin-left: 0;
}

@media screen and (max-width: 640px) {
  .sbSupporting .over_wrap_in {
    flex-direction: column;
    gap: 1rem;
  }
  .sbSupporting .over_wrap_in > figure {
    flex: 1;
  }
  .ucbt {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sbSupporting .over_wrap_in > div {
    padding-right: 0;
  }
  .sbSupporting .over_wrap_in > div .ucbt {
    margin-left: auto;
  }
}
.sbRecruit {
  padding-bottom: 5.5rem;
}
.sbRecruit .sbc ul {
  border: 3px solid #319123;
  padding: 2.3rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}
.sbRecruit .sbc ul li {
  margin-bottom: 1rem;
}
.sbRecruit .sbc ul li:last-child {
  margin-bottom: 0;
}
.sbRecruit .sbc ul li > * {
  display: flex;
  font-size: 1.125rem;
}
.sbRecruit .sbc ul li > * .cat {
  background-color: #45B035;
  color: #fff;
  font-size: 1.25rem;
  flex: 0 1 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbRecruit .sbc ul li > * .text {
  flex: 1;
  display: flex;
  align-items: center;
  color: #45B035;
  padding-left: 1rem;
}
.sbRecruit .sbc ul li > * {
  transition: all ease 0.3s;
}
.sbRecruit .sbc ul li > *:hover {
  opacity: 0.5;
}
.sbRecruit .sbc ul li.none > * .text {
  color: #000;
}
.sbRecruit .sbc ul li.none > *:hover {
  opacity: 1;
}

@media screen and (max-width: 640px) {
  .sbRecruit .sbc ul li > * {
    flex-direction: column;
    align-items: flex-start;
  }
  .sbRecruit .sbc ul li > * .cat {
    padding-left: 1rem;
    padding-right: 1rem;
    flex: 1;
    margin-bottom: 0.5rem;
  }
  .sbRecruit .sbc ul li > * .text {
    padding-left: 0;
  }
}
.site_footer {
  overflow: hidden;
}
.site_footer .over_wrap {
  padding: 3rem 0;
}
.site_footer .over_wrap:before {
  border-top: 3px solid #45B035;
  border-bottom: 3px solid #45B035;
  box-sizing: border-box;
}
.site_footer .site_footer_nav {
  display: flex;
  gap: 2rem;
  row-gap: 0;
}
.site_footer .site_footer_nav a {
  transition: all ease 0.3s;
}
.site_footer .site_footer_nav a:hover {
  opacity: 0.5;
}
.site_footer .site_footer_nav > ul {
  flex: 1;
}
.site_footer .site_footer_nav > ul > li > a {
  color: #45B035;
  display: block;
  border-top: 1px solid #45B035;
  border-bottom: 1px solid #45B035;
  padding: 0.7rem 0;
  margin-bottom: 0.5rem;
}
.site_footer .site_footer_nav > ul > li > ul > li a {
  display: block;
  margin-right: -2rem;
}
.site_footer .site_footer_nav > ul > li > ul > li a::before {
  content: "-";
  margin-right: 0.5rem;
}
.site_footer .site_footer_nav > ul > li > ul > li:last-child a {
  margin-bottom: 0.5rem;
}
.site_footer .site_footer_nav > ul:nth-child(3) > li > a {
  margin-top: -1px;
  margin-bottom: 0;
}
.site_footer .site_footer_nav > ul:nth-child(3) > li:first-child {
  margin-top: 0;
}
.site_footer .site_footer_nav > ul:nth-child(3) > li:last-child > a {
  margin-bottom: 0.5rem;
}
.site_footer .site_footer_bottom {
  padding-top: 3rem;
  text-align: center;
}
.site_footer .site_footer_bottom figure img {
  width: 7.0625rem;
  margin: 0 auto;
  margin-bottom: 0.7rem;
}
.site_footer .site_footer_bottom figure {
  margin-bottom: 2rem;
}
.site_footer .site_footer_bottom figure figcaption {
  font-size: 0.875rem;
}
.site_footer .site_footer_bottom address {
  font-style: normal;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.site_footer .site_footer_bottom .ucbt {
  border-radius: 0;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  width: 9.375rem;
}
.site_footer .copy {
  text-align: center;
  color: #8B8B8B;
  border-top: 3px solid #45B035;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

@media screen and (max-width: 640px) {
  .site_footer .site_footer_nav {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .site_footer .site_footer_nav > ul > li > ul > li a img {
    height: 1.4rem !important;
    transform: translate3d(0, -0.6vw, 0);
  }
  .site_footer .site_footer_nav > ul:nth-child(3) > li > a img {
    height: 1.4rem !important;
    transform: translate3d(0, -0.6vw, 0);
  }
}
/*page*/
.pkv {
  background-color: #45B035;
  text-align: center;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkv h2 {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.75rem;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  .pkv h2 {
    font-size: 1.5rem;
  }
}
.page_recruit .rec_top {
  padding-top: 0;
}
.page_recruit .rec_top .over_wrap {
  padding: 3rem 0;
  color: #45B035;
  font-size: 1.5rem;
}
.page_recruit .rec_top .rec_item .rec_head {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.page_recruit .rec_top .rec_item .rec_head b {
  text-decoration: none;
  background-color: #45B035;
  color: #fff;
  padding: 0.2rem 2rem;
  font-weight: normal;
  font-size: 1.25rem;
}
.page_recruit .rec_top .rec_item .rec_head span {
  padding-left: 1rem;
}
.page_recruit .rec_top .rec_item {
  padding: 3rem 0;
  line-height: 1.8;
  font-size: 1.125rem;
}
.page_recruit .rec_top .rec_item a {
  color: #45B035;
  text-decoration: underline;
  font-size: 1.5rem;
  transition: all ease 0.3s;
}
.page_recruit .rec_top .rec_item a:hover {
  opacity: 0.5;
}

.page_publications .pkv {
  background-image: url(../img/publications/bg.png);
  background-size: cover;
}
.page_publications .sbPublications {
  padding-bottom: 5.5rem;
  background-color: #E8F3E5;
}
.page_publications .sbPublications header {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  background-color: #45B035;
  background-image: url(../img/publications/top.png);
  background-size: cover;
}
.page_publications .sbPublications header h3 {
  padding: 1rem 0;
  color: #fff;
  font-size: 1.5625rem;
  background-color: transparent;
  border: 0;
}
.page_publications .sbPublications header > div > div {
  background-color: rgba(69, 176, 53, 0.7019607843);
  padding: 1rem;
}
.page_publications .sbPublications header > div > div a {
  background-color: #fff;
  border-color: #fff;
  color: #45B035;
  font-size: 100%;
}
.page_publications .sbPublications header > div > div a:hover {
  background-color: #45B035;
  color: #fff;
}
.page_publications .sbPublications .sbc .publications_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: row;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item {
  flex: 0 1 calc((100% - 1rem) / 2);
  border: 3px solid #45B035;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  background-color: #fff;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item h3 {
  color: #45B035;
  text-align: center;
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex {
  display: flex;
  gap: 1.5rem;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex figure {
  flex: 0 1 32%;
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex div {
  flex: 1;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex div .date {
  margin-bottom: 0.5rem;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex div .title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  height: 3em;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex div .desc {
  color: red;
  line-height: 1.5;
  font-size: 1.125rem;
  height: 3em;
}
.page_publications .sbPublications .sbc .publications_nav .publications_nav_item .flex div .ucbt {
  margin-top: 1rem;
  margin-left: 0;
}
.page_publications .sbPublication_info .sbc ul {
  margin-bottom: 2rem;
}
.page_publications .sbPublication_info .sbc ul li {
  margin-bottom: 1.3rem;
}
.page_publications .sbPublication_info .sbc ul li:last-child {
  margin-bottom: 0;
}
.page_publications .sbPublication_info .sbc ul li a {
  display: flex;
  border-radius: 0.5rem;
  border: 1px solid #C1C1C1;
  font-size: 1.125rem;
}
.page_publications .sbPublication_info .sbc ul li a time {
  padding: 0 2rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_publications .sbPublication_info .sbc ul li a .title {
  font-size: 1.0625rem;
  color: #45B035;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}
.page_publications .sbPublication_info .sbc ul li a {
  transition: all ease 0.3s;
}
.page_publications .sbPublication_info .sbc ul li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 640px) {
  .page_publications .sbPublications .sbc .publications_nav {
    flex-direction: column;
    align-items: normal;
  }
  .page_publications .sbPublications .sbc .publications_nav p.ucbt {
    font-size: 110%;
  }
  .page_publications .sbPublications {
    padding-top: 2.5rem;
  }
  .page_publications .sbPublications .sbc .publications_nav .publications_nav_item {
    flex: 1;
  }
  .page_publications .sbPublication_info .sbc ul li a time {
    padding-right: 1rem;
  }
}
.page_publications_single .pkv {
  background-image: url(../img/publications/bg.png);
  background-size: cover;
}
.page_publications_single .publications_nav {
  background-color: rgba(69, 176, 53, 0.7294117647);
  background-color: #F3F8F3;
  left: 0;
  width: 100%;
  position: absolute;
}
.page_publications_single .publications_nav > ul {
  background-color: #F3F8F3;
  max-width: 67.5rem;
  padding: 2rem 0vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 0.5rem;
}
.page_publications_single .publications_nav > ul li {
  flex: 0 1 calc((100% - 2rem) / 3);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}
.page_publications_single .publications_nav > ul li a {
  display: block;
  padding: 0.5rem 0rem;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  border-radius: 100rem;
  border: 3px solid #45B035;
  background-color: #fff;
}
.page_publications_single .publications_nav > ul li a p {
  font-size: 1.125rem;
  color: #45B035;
  line-height: 1.5;
}
.page_publications_single .publications_nav > ul li a {
  transition: all ease 0.3s;
}
.page_publications_single .publications_nav > ul li a:hover {
  background-color: #45B035;
}
.page_publications_single .publications_nav > ul li a:hover p {
  color: #fff;
}
.page_publications_single .publications_nav > ul li.current a {
  background-color: #45B035;
  color: #fff;
}
.page_publications_single .publications_nav > ul li.current a p {
  color: #fff;
}
.page_publications_single .sbPublications_single.sbPublications_singlePnav {
  padding-top: 16.125rem;
}
.page_publications_single .sbPublications_single .sbc .flex {
  display: flex;
  gap: 1rem;
}
.page_publications_single .sbPublications_single .sbc .flex {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
.page_publications_single .sbPublications_single .sbc .flex > figure {
  flex: 0 1 28%;
}
.page_publications_single .sbPublications_single .sbc .flex div {
  box-sizing: border-box;
  position: relative;
  padding-bottom: 2rem;
  flex: 1;
}
.page_publications_single .sbPublications_single .sbc .flex div h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.page_publications_single .sbPublications_single .sbc .flex div p {
  line-height: 1.7;
}
.page_publications_single .sbPublications_single .sbc .flex div .date {
  position: absolute;
  left: 0;
  bottom: 0;
}
.page_publications_single .sbPublications_single .bgg {
  padding: 2rem 2rem;
  background-color: #EDEDED;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.page_publications_single .sbPublications_single .bgg.bggf {
  display: flex;
}
.page_publications_single .sbPublications_single .bgg.bggf > * {
  flex: 1;
}
.page_publications_single .sbPublications_single .bgg.bggf > *:first-child {
  position: relative;
  padding-right: 1rem;
}
.page_publications_single .sbPublications_single .bgg.bggf > *:first-child:after {
  content: "";
  width: 1px;
  background-color: #D9D9D9;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.page_publications_single .sbPublications_single .bgg.bggf h3 {
  font-size: 1.25rem;
  margin-top: 0;
}
.page_publications_single .sbPublications_single .bgg.bggM {
  text-align: center;
  padding-top: 3rem;
}
.page_publications_single .sbPublications_single .bgg.bggM .iframe_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 741/377;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.page_publications_single .sbPublications_single .bgg.bggM .iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item {
  margin-bottom: 1rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > h3 {
  background-color: #F3F8F3;
  padding: 1rem 2rem;
  font-weight: 600;
  position: relative;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > h3:after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 3px solid #45B035;
  border-left: 0;
  border-top: 0;
  transform-origin: center;
  transform: rotate(45deg);
  transform: translate3d(0, 0rem, 0) rotate(45deg);
  position: absolute;
  right: 2rem;
  top: 1.1rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div {
  padding-left: 2rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div a {
  color: #45B035;
  transition: all ease 0.3s;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div a:hover {
  opacity: 0.5;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .ucbt {
  color: #fff;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .ucbt:hover {
  color: #45B035;
  opacity: 1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div h4 {
  margin: 0;
  margin-top: 2rem;
  font-size: 1rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div h4 a {
  color: #45B035;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div h5 {
  margin: 0;
  font-size: 1rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div h5 a {
  color: #45B035;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > p a {
  color: #45B035;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li {
  display: flex;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li > p {
  flex: 1;
  border-bottom: 1px solid #d1d1d1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li > .tname {
  flex: 0 1 3rem;
  color: #939393;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li > .name {
  flex: 0 1 6rem;
  border-bottom: 1px solid #d1d1d1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li > .page {
  flex: 0 1 3rem;
  border-bottom: 1px solid #d1d1d1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li > .tpage {
  flex: 0 1 1rem;
  color: #939393;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div > ul li a {
  color: #45B035;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list {
  border-spacing: 0.5rem 0.5rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.5rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list li p:nth-child(2) {
  flex: 0 1 15rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list td {
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid #d1d1d1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list td:last-child {
  width: 15rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  width: calc(100% + 1rem);
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table {
  border-collapse: separate; /* border-spacingを有効にするために必要 */
  border-spacing: 0.5rem;
  margin-top: -0.5rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj td:nth-child(2) {
  width: 3rem;
  color: #939393;
  text-align: center;
  border-bottom: 0;
  vertical-align: bottom;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj td:nth-child(3) {
  width: 6rem;
  border-bottom: 1px solid #d1d1d1;
  vertical-align: bottom;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj td:nth-child(4) {
  width: 3rem;
  border-bottom: 1px solid #d1d1d1;
  vertical-align: bottom;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj td:nth-child(5) {
  width: 1rem;
  border-bottom: 0;
  color: #939393;
  vertical-align: bottom;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj.kenkyu_listPmrjU {
  margin-top: -0.5rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book {
  display: flex;
  margin-top: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > figure {
  flex: 0 1 18.75rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div {
  flex: 1;
  padding-bottom: 4rem;
  box-sizing: border-box;
  position: relative;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div h4 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div .book_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div .book_bottom a {
  color: #45B035;
  transition: all ease 0.3s;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div .book_bottom a:hover {
  opacity: 0.5;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .book_item {
  margin-bottom: 5rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph {
  display: flex;
  gap: 2rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph > div {
  flex: 1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph > figure {
  flex: 0 1 20%;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph > figure img {
  margin-bottom: 1rem;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph > figure figcaption {
  text-align: center;
  font-weight: 600;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_half {
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
  border-bottom: 0;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_half > * {
  flex: 0 1 calc((100% - 1rem) / 2);
  display: block;
  margin-bottom: 0;
  border-bottom: 1px solid #C1C1C1;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_half > * p {
  border-bottom: 0;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .h4list h4 {
  color: #45B035;
  margin-top: 0;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .linklist li {
  border-bottom: 0;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .linklist a {
  display: block;
  color: #45B035;
  border: 1px solid #45B035;
  transition: all ease 0.3s;
  text-align: center;
  padding: 0.5rem;
  position: relative;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .linklist a:after {
  content: "";
  display: block;
  width: 1.5625rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0.3rem;
  background-image: url(../img/arrow_outer.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .linklist a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1080px) {
  .page_publications_single .publications_nav > ul li a p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 640px) {
  .page_publications_single .publications_nav > ul li a p {
    font-size: 1.25rem;
  }
  .page_publications_single .publications_nav > ul {
    flex-direction: column;
  }
  .page_publications_single .pkv {
    padding: 0 5vw;
  }
  .page_publications_single .sbPublications_single.sbPublications_singlePnav {
    padding-top: 3rem;
  }
  .page_publications_single .sbPublications_single .sbc .flex {
    flex-direction: column;
    gap: 0;
  }
  .page_publications_single .sbPublications_single .sbc .flex div {
    padding-bottom: 0;
  }
  .page_publications_single .sbPublications_single .sbc .flex > figure {
    width: 100%;
    text-align: center;
  }
  .page_publications_single .sbPublications_single .sbc .flex > figure img {
    width: 40%;
    margin: 0 auto;
  }
  .single_bottoms.acc .single_bottoms_item.is-open > div > div {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .buttons {
    flex-direction: column;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .buttons .ucbt {
    width: 20rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_half {
    flex-direction: column;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .linklist a {
    padding: 0.5rem 1rem;
    text-align: left;
    padding-right: 2rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph {
    flex-direction: column-reverse;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph > figure {
    text-align: center;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_ph > figure img {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5vw;
    margin-top: 0;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table tbody {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table tr {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    border-bottom: 1px solid #d1d1d1;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 0;
    padding: 0.5rem 0;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table td:nth-child(2) {
    padding-top: 0;
    text-align: left;
    margin-top: -0.5rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table td:nth-child(3) {
    padding-top: 0;
    flex: 1;
    border-bottom: 0;
    margin-top: -0.5rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table td:nth-child(4) {
    padding-top: 0;
    border-bottom: 0;
    margin-top: -0.5rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div .kenkyu_list.kenkyu_listPmrj table td:nth-child(5) {
    padding-top: 0;
    border-bottom: 0;
    margin-top: -0.5rem;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book {
    flex-direction: column;
    padding: 0;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > figure {
    width: 40%;
    flex: 1;
    margin-left: auto;
    margin-right: auto;
  }
  .page_publications_single .sbPublications_single .bgg.bggf {
    flex-direction: column;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 1rem !important;
  }
  .page_publications_single .sbPublications_single .bgg.bggf > *:first-child {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .page_publications_single .sbPublications_single .bgg.bggf > *:first-child:after {
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    top: auto;
  }
  .single_bottoms.acc .single_bottoms_item.is-open > div > div {
    padding: 0;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div {
    padding-bottom: 0;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item .flex_book > div .book_bottom {
    position: unset;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > div {
    padding-left: 0;
    padding-right: 0;
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > h3 {
    padding-right: 4rem;
  }
}
.book_catch {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2;
}

.kenkyu_green {
  border: 1px solid #45B035;
  padding: 2rem;
  text-align: center;
}
.kenkyu_green .buttons {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  gap: 20px;
  flex-wrap: wrap;
}
.kenkyu_green .buttons .ucbt {
  margin-left: 0;
  margin-right: 0;
}

.kc_form_top {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.kc_form_top > p:first-child {
  margin-bottom: 1rem;
}

@media screen and (max-width: 640px) {
  .kc_form_top {
    font-size: 110%;
  }
}
.ucform {
  font-size: 1.25rem;
  padding: 0 2rem;
}
.ucform a {
  color: #45B035;
}
.ucform h3 {
  text-align: center;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
  font-size: 1.25rem;
}
.ucform hr {
  border: 0;
  border-top: 1px solid #EDEDED;
  margin: 2rem 0;
}
.ucform .form_bottom {
  text-align: center;
  line-height: 2;
}
.ucform .form_line {
  display: flex;
  margin-bottom: 1.3rem;
  gap: 0.5rem;
}
.ucform .form_line > p {
  flex: 0 1 20rem;
  position: relative;
}
.ucform .form_line > p.req:after {
  content: "（必須）";
  position: absolute;
  right: 0;
  top: 0;
  color: #45B035;
}
.ucform .form_line > div p {
  font-size: 1rem;
}
.ucform .form_line > div {
  flex: 1;
}
.ucform .form_line > div select {
  width: 80%;
  padding: 0.3rem;
  border: 1px solid #939393;
  font-family: inherit;
  font-size: 100%;
}
.ucform .form_line > div input, .ucform .form_line > div textarea {
  width: 80%;
  padding: 0.3rem;
  box-sizing: border-box;
  border: 1px solid #939393;
  font-family: inherit;
  font-size: 100%;
}
.ucform .form_line > div input[type=radio], .ucform .form_line > div input[type=checkbox] {
  width: auto;
  margin-right: 0.5rem;
}
.ucform .form_line > div textarea {
  width: 100%;
  min-height: 13rem;
}
.ucform .form_line.form_lineRadio > div > div {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
.ucform .form_line.form_lineRadio > div > div label {
  display: flex;
  white-space: nowrap;
}
.ucform .form_line.form_linePostcode input {
  max-width: 14rem;
}
.ucform .confirm {
  justify-content: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.ucform .buttons {
  margin-bottom: 0.5rem;
}
.ucform .buttons .submit {
  font-size: 1rem;
  padding: 0.5rem 0;
}

@media screen and (max-width: 640px) {
  .ucform .form_line {
    flex-direction: column;
  }
  .ucform .form_line > p {
    flex: 1;
  }
  .ucform {
    padding: 0 1rem;
    font-size: 100%;
  }
  .ucform .wpcf7-list-item {
    margin-left: 0;
    margin-right: 1rem;
  }
  .ucform .form_line > p.req:after {
    position: unset;
  }
  .ucform .form_line.form_linePostcode input {
    width: 10rem;
  }
  .ucform .form_line > div input, .ucform .form_line > div textarea {
    width: 100%;
  }
  .ucform .form_bottom br {
    display: none;
  }
  .ucform .wpcf7-form .buttons > * {
    font-size: 120%;
  }
}
.page_privacypolicy .sbc h3 {
  margin-bottom: 0.5rem;
}
.page_privacypolicy .sbc li h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.page_privacypolicy .ucbt {
  width: 23.75rem;
}

.bgg {
  background-color: #F3F8F3;
  padding: 2rem;
}

.tokusho_list li {
  display: flex;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}
.tokusho_list li a {
  color: #45B035;
  transition: all ease 0.3s;
}
.tokusho_list li a:hover {
  opacity: 0.5;
}
.tokusho_list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.tokusho_list li > *:nth-child(1) {
  flex: 0 1 20rem;
}
.tokusho_list li > *:last-child {
  flex: 1;
}
.tokusho_list li .bgg {
  border-radius: 0.5rem;
}

@media screen and (max-width: 640px) {
  .tokusho_list li > *:nth-child(1) {
    flex: 1;
  }
  .tokusho_list li {
    flex-direction: column;
  }
  .tokusho_list li > *:nth-child(1) {
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 110%;
  }
  .tokusho_list li .bgg {
    word-break: break-word;
    margin-top: 0.5rem;
    padding: 5vw;
  }
}
.sbAbout1 .sbc ol {
  margin-top: 0.5rem;
}
.sbAbout1 .sbc ol li {
  display: flex;
  margin-bottom: 0.5rem;
}
.sbAbout1 .sbc ol li > span {
  flex: 0 1 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #45B035;
}
.sbAbout1 .sbc ol li > p {
  background-color: #F3F8F3;
  padding: 0.5rem 1rem;
  flex: 1;
}

.sbAbout1_ol li {
  counter-increment: sbabout1-counter;
  position: relative;
  padding: 0.5rem 1rem;
  padding-left: 4rem;
  background-color: #F3F8F3;
  margin-bottom: 0.5rem;
}
.sbAbout1_ol li:before {
  width: 3rem;
  height: 100%;
  content: counter(sbabout1-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  background: #45B035;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: inherit;
}
.sbAbout1_ol {
  counter-reset: sbabout1-counter;
}

.sbManage p {
  margin-bottom: 2rem;
}
.sbManage figure {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.sbManage figure img {
  width: 14.6875rem;
  height: 14.6875rem;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto;
  border: 3px solid #C1C1C1;
  margin-bottom: 1rem;
}
.sbManage figure figcaption {
  text-align: center;
  font-size: 1.25rem;
}
.sbManage figure figcaption b {
  display: block;
  font-size: 1.5rem;
}

.sbHistory .sbc .wrap {
  max-height: 34rem;
  overflow-y: auto;
  border: 1px solid #ededed;
  padding: 0.5rem 1.5rem;
}
.sbHistory .sbc ul li {
  margin-bottom: 0.5rem;
  display: flex;
  border-bottom: 1px solid #C1C1C1;
}
.sbHistory .sbc ul li span {
  flex: 0 1 5rem;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #45B035;
  background-color: #F3F8F3;
  border-left: 3px solid #45B035;
  box-sizing: border-box;
}
.sbHistory .sbc ul li p {
  padding: 0.5rem 1rem;
}
.sbHistory .sbc .sbHistory_ul li {
  margin-bottom: 0.5rem;
  display: flex;
  border-bottom: 1px solid #C1C1C1;
  position: relative;
  padding: 0.5rem 0;
  padding-left: 6.5rem;
}
.sbHistory .sbc .sbHistory_ul li strong {
  flex: 0 1 5rem;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #45B035;
  background-color: #F3F8F3;
  border-left: 3px solid #45B035;
  box-sizing: border-box;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  background: #F3F8F3;
}
.aboutus_item {
  margin-bottom: 2rem;
}
.aboutus_item h3 {
  background-color: #E8F3E5;
  border: 3px solid #45B035;
  color: #45B035;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.aboutus_item ul li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #C1C1C1;
  display: flex;
}
.aboutus_item ul li p {
  text-indent: -1em;
  margin-left: 1rem;
}
.aboutus_item ul li img.emoji {
  margin-top: 0.4rem !important;
}
.aboutus_item .delta_list li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #C1C1C1;
  display: flex;
}
.aboutus_item .delta_list li p {
  text-indent: -1em;
  margin-left: 1rem;
}
.aboutus_item .delta_list li:before {
  content: "▶︎";
}
.aboutus_item .delta_list li img.emoji {
  margin-top: 0.4rem !important;
}
.aboutus_item.aboutus_item2 ul li {
  display: flex;
  align-items: center;
}
.aboutus_item.aboutus_item2 ul li em {
  padding: 0.5rem 1rem;
  background-color: #F3F8F3;
  flex: 0 1 13rem;
  box-sizing: border-box;
  font-style: normal;
}
.aboutus_item.aboutus_item2 ul li strong {
  padding: 0.5rem 1rem;
  flex: 0 1 10rem;
  box-sizing: border-box;
}
.aboutus_item.aboutus_item2 ul li p {
  padding: 0.5rem 1rem;
  flex: 1;
  text-indent: 0;
  margin-left: 0;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .aboutus_item.aboutus_item2 ul li {
    flex-wrap: wrap;
  }
  .aboutus_item.aboutus_item2 ul li em {
    flex: 0 1 50%;
    margin-bottom: 0.5rem;
  }
  .aboutus_item.aboutus_item2 ul li strong {
    flex: 0 1 50%;
    margin-bottom: 0.5rem;
  }
  .aboutus_item.aboutus_item2 ul li {
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
}
.sbMain .aboutus_item ul {
  padding: 0 2rem;
}

.sbOrganization figure {
  margin: 0 auto;
  max-width: 53.125rem;
}

.pdf_list h3 {
  background-color: #E8F3E5;
  color: #45B035;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.pdf_list ul {
  padding: 0 2rem;
}
.pdf_list ul li {
  border-bottom: 1px solid #C1C1C1;
  margin-bottom: 0.5rem;
}
.pdf_list ul li a {
  color: #45B035;
}

@media screen and (max-width: 640px) {
  .pdf_list ul {
    padding: 0;
  }
}
.sbArticlesof h3 {
  background-color: #E8F3E5;
  color: #45B035;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.sbLocation .bgg {
  margin-bottom: 2rem;
}
.sbLocation .bgg_flex {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
.sbLocation .bgg_flex .address {
  flex: 1;
}
.sbLocation .bgg_flex .address h3.address_name {
  font-size: 1.125rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.sbLocation .bgg_flex .address a {
  color: #45B035;
}
.sbLocation .bgg_flex .map {
  flex: 0 1 30rem;
  background-color: #ccc;
}
.sbLocation .bgg_flex .map iframe {
  width: 30rem;
  height: 17.9375rem;
}

@media screen and (max-width: 640px) {
  .sbLocation .bgg_flex {
    flex-direction: column;
  }
  .sbLocation .bgg_flex .map {
    flex: 1;
    margin-top: 1rem;
  }
  .sbLocation .bgg_flex .map iframe {
    width: 100%;
  }
}
.sbPublications_singleelse h3 {
  background-color: #E8F3E5;
  border: 3px solid #45B035;
  color: #45B035;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.sbPublications_singleelse h4 {
  background-color: #F3F8F3;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.sbPublications_singleelse ul {
  margin-top: 1rem;
}
.sbPublications_singleelse ul li {
  margin-bottom: 0.5rem;
  background-color: #EDEDED;
  padding: 1rem 2rem;
  position: relative;
}
.sbPublications_singleelse ul li time {
  right: 2rem;
  bottom: 1rem;
  display: block;
  position: absolute;
}
.sbPublications_singleelse ul li a {
  text-decoration: underline;
  color: #45B035;
}

.contact_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  row-gap: 2rem;
}
.contact_nav ul li {
  position: relative;
  flex: 0 1 calc((100% - 3rem) / 2);
}
.contact_nav ul li a {
  position: relative;
  display: block;
  background-color: #F3F8F3;
  align-items: center;
}
.contact_nav ul li a:before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/contact/icon2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.contact_nav ul li a p {
  padding: 0.5rem 1rem;
  padding-left: 3.5rem;
}

.site_contents70th {
  background-image: url(../img/70th/bg.png);
  background-color: #F4F4F4;
}
.site_contents70th .kv {
  margin-bottom: 5rem;
}
.site_contents70th .contents_wrap {
  max-width: 67.5rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  padding-bottom: 2rem;
}
.site_contents70th .sb .sbh h2 {
  color: #C1C1C1;
  font-size: 3.125rem;
  border-bottom: 0;
  line-height: 1.3;
}
.site_contents70th .sb .sbh p {
  color: #2B77AF;
  font-size: 1.5625rem;
}
.site_contents70th .sb .sbh p small {
  display: block;
  font-size: 1.25rem;
  text-align: center;
  color: #000;
}
.site_contents70th .swiper-button-next, .site_contents70th .swiper-button-prev {
  color: #fff;
}
.site_contents70th .swiper-button-next, .site_contents70th .swiper-button-prev {
  top: 10rem;
}
.site_contents70th .swiper-button-prev, .site_contents70th .swiper-rtl .swiper-button-next {
  left: 2rem;
  text-shadow: 0 0 1px BLACK;
}
.site_contents70th .site_contents70th .swiper-button-next, .site_contents70th .site_contents70th .swiper-button-prev {
  right: 2rem;
}

.sb70Message {
  position: relative;
}
.sb70Message > * {
  z-index: 2;
  position: relative;
}
.sb70Message:after {
  content: "";
  width: 100%;
  height: 13rem;
  background-color: #fff;
  position: absolute;
  top: 23rem;
  left: 0;
  transform: skew(0deg, -15deg);
  z-index: 1;
}
.sb70Message:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EBF7F9;
  z-index: 1;
  border-radius: 0.5rem;
}
.sb70Message .sbc figure {
  max-width: 31.875rem;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.sb70Message .sbc figure img {
  margin-bottom: 1rem;
}
.sb70Message .sbc figure figcaption {
  font-size: 1.125rem;
}
.sb70Message .sbc figure figcaption b {
  font-size: 1.25rem;
}
.sb70Message .sbc .message_wrap {
  padding: 0 5rem;
  padding-bottom: 5rem;
}
.sb70Message .sbc .message_wrap > p {
  text-indent: 1rem;
}
.sb70Message .sbc .message_wrap > p:nth-child(1) {
  text-align: center;
  font-size: 1.125rem;
}
.sb70Message .sbc .message_wrap h3 {
  text-align: center;
  font-size: 1.5625rem;
  line-height: 1.3;
  margin-bottom: 3rem;
}
.sb70Message .sbc .message_wrap h3 small {
  font-size: 1.25rem;
}

.sb70History {
  position: relative;
}
.sb70History:before {
  content: "";
  width: 100%;
  height: 10rem;
  background-color: #EBF7F9;
  position: absolute;
  top: 13rem;
  left: 0;
  transform: skew(0deg, -15deg);
  z-index: 1;
}
.sb70History:after {
  content: "";
  width: 100%;
  height: 10rem;
  background-color: #EBF7F9;
  position: absolute;
  top: 24rem;
  left: 0;
  transform: skew(0deg, -15deg);
  z-index: 1;
}
.sb70History > * {
  position: relative;
  z-index: 2;
}
.sb70History .history_swiper {
  background-color: #2B77AF;
  padding: 3rem 5rem;
  text-align: center;
  color: #fff;
}
.sb70History .history_swiper p {
  line-height: 1.5;
  font-size: 1.125rem;
}
.sb70History .history_swiper figure {
  margin-bottom: 1rem;
}

.sb70Future {
  background-color: #EBF7F9;
}
.sb70Future .f_item > div {
  padding: 2rem;
}
.sb70Future .f_item > div > div {
  background-color: #fff;
  padding: 2rem;
}
.sb70Future .f_item > div > div h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.sb70Future .f_item > div > div > p:nth-child(2) {
  color: #939393;
  font-size: 1.125rem;
}
.sb70Future .f_items {
  display: flex;
}
.sb70Future .f_items > * {
  flex: 1;
}
.sb70Future .f_items .f_item:nth-child(1) > div {
  padding-right: 1rem;
}
.sb70Future .f_items .f_item:nth-child(2) > div {
  padding-left: 1rem;
}
.sb70Future .f_items2 {
  display: flex;
  flex-wrap: wrap;
}
.sb70Future .f_items2 > * {
  flex: 1;
}
.sb70Future .f_items2 > figure {
  flex: 0 1 100%;
}
.sb70Future .f_items2 .f_item:nth-child(2) > div {
  padding-right: 1rem;
}
.sb70Future .f_items2 .f_item:nth-child(3) > div {
  padding-left: 1rem;
}

.sb70President {
  max-width: 61.25rem;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 2rem;
  border: 3px solid #2B77AF;
  padding: 2rem;
  padding-top: 3rem;
  box-sizing: border-box;
  padding-bottom: 3rem;
}
.sb70President h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.sb70President ul li {
  padding-left: 19rem;
  border-bottom: 1px dashed #2B77AF;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.sb70President ul li > span:first-child {
  font-size: 1.5rem;
  flex: 0 1 10rem;
}
.sb70President ul li > span:last-child {
  flex: 1;
  font-size: 1.375rem;
  color: #939393;
}

.site_header70.site_header .site_nav .gnav > li > a:after {
  display: none;
}
.site_header70.site_header .site_nav .gnav > li:first-child > a:before {
  display: none;
}

.history_scroll {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: calc((50vw - 50%) * -1);
  margin-right: calc((50vw - 50%) * -1);
  display: flex;
  overflow: hidden;
}
.history_scroll > div {
  display: flex;
  overflow: hidden;
}
.history_scroll > div > div figure {
  padding-left: 15rem;
  height: 13rem;
}
.history_scroll > div > div figure img {
  width: auto;
  height: 100%;
}
.history_scroll.active > div > div {
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 750px) {
  .history_scroll {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .site_contents70th .contents_wrap {
    max-width: none;
    width: auto;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .site_contents70th .sb .sbh h2 {
    font-size: 180%;
  }
  .site_contents70th .sb .sbh p {
    font-size: 160%;
  }
  .sb70Future .f_item > div > div h3 {
    font-size: 1.3rem;
  }
  .sb70Future .f_item > div > div h3 br {
    display: none;
  }
  .sb70President h3 {
    font-size: 150%;
  }
  .sb70Message .sbc figure {
    max-width: 80vw;
  }
  .sb70Message .sbc .message_wrap {
    padding: 0 7vw;
  }
  .sb70Future .f_items {
    flex-direction: column;
  }
  .sb70Future .f_item > div {
    padding: 2vw;
  }
  .sb70Future .f_items .f_item:nth-child(1) > div {
    padding: 2vw;
  }
  .sb70Future .f_items .f_item:nth-child(2) > div {
    padding: 2vw;
  }
  .sb70Future .f_items2 {
    flex-direction: column;
  }
  .sb70Future .f_items2 .f_item:nth-child(2) > div {
    padding: 2vw;
  }
  .sb70Future .f_items2 .f_item:nth-child(3) > div {
    padding: 2vw;
  }
  .sb70President ul li {
    padding-left: 0;
  }
  .sb70President ul li > span:first-child {
    flex: 0 1 8rem;
    font-size: 120%;
  }
  .sb70President ul li > span:last-child {
    font-size: 120%;
  }
  .sb70President {
    margin: 5vw;
  }
}
.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pagination .page-numbers {
  display: block;
  padding: 0.3rem 0.8rem;
  border-radius: 0.2rem;
  border: 1px solid #45B035;
  color: #45B035;
  transition: all ease 0.3s;
}
.pagination .page-numbers:hover {
  opacity: 0.5;
}
.pagination .page-numbers.current {
  opacity: 1;
  background-color: #45B035;
  border: 1px solid #45B035;
  color: #fff;
}

/* ===== 統合: ページ内<style>から移動（自動統合） ===== */
/* デバッグ用オーバーレイ */
.test {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0.7;
}

/* --- ヘッダーロゴ（全ページ・高さ45px・縦横比維持） --- */
.site_header h1 a {
  width: auto;
}

.site_header h1 a img {
  height: 2.8125rem;
  width: auto;
}

/* --- index.html --- */
.sbBusiness .sbc ul li:first-child a > div h3:after {
  display: none !important;
}

.sbSupporting .over_wrap_in {
  transition: all ease 0.3s;
}

.sbSupporting .over_wrap_in:hover {
  opacity: 0.5;
}

.kv_swiper img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/708;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* --- 70th.html --- */
.page-70th .site_footer .over_wrap {
  display: none;
}

@media screen and (min-width: 641px) {
  .site_header70 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
  }
}
/* --- aboutusjp.html（定款アコーディオン＋ページ内メニュー固定） --- */
.teikan_acc .teikan_head {
  cursor: pointer;
  background: #F3F8F3;
  padding: 1rem 2rem;
  position: relative;
  font-weight: 600;
  margin: 0;
}

.teikan_acc .teikan_head:after {
  transition: all ease 0.3s;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border: 3px solid #45B035;
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 2rem;
  top: 1.15rem;
  transform: rotate(45deg);
}

.teikan_acc.is-open .teikan_head:after {
  transform: rotate(-135deg);
  top: 1.6rem;
}

.teikan_acc .teikan_body {
  display: none;
  padding: 1.5rem 2rem;
  max-height: 34rem;
  overflow-y: auto;
  border: 1px solid #EDEDED;
  border-top: 0;
}

.teikan_acc.is-open .teikan_body {
  display: block;
}

.teikan_acc .teikan_body h4 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.05rem;
}

.teikan_acc .teikan_body h4:first-child {
  margin-top: 0;
}

.teikan_acc .teikan_body p {
  margin: 0.25rem 0;
  line-height: 1.8;
}

.teikan_acc .teikan_body .t-ko {
  padding-left: 1.5rem;
}

.teikan_acc .teikan_body .t-kou {
  padding-left: 1rem;
}

.teikan_acc .teikan_body .t-fusoku {
  margin-top: 1.2rem;
}

.page-aboutusjp .publications_nav {
  position: sticky;
  top: 0;
  z-index: 5;
}

/* --- contact.html（お問い合わせナビ） --- */
.contact_nav ul li a {
  min-height: 2.5rem;
}

.contact_nav ul li.ci-link a:before,
.contact_nav ul li.ci-ext a:before {
  background-color: #45B035;
  background-size: 1.4rem;
  background-repeat: no-repeat;
  background-position: center;
}

.contact_nav ul li.ci-link a:before {
  background-image: url(../img/contact/link.png) !important;
}

.contact_nav ul li.ci-ext a:before {
  background-image: url(../img/contact/gaibu.png) !important;
}

.contact_nav ul li.ci-radio label {
  position: relative;
  display: block;
  background-color: #F3F8F3;
  cursor: pointer;
  min-height: 2.5rem;
}

.contact_nav ul li.ci-radio label p {
  padding: 0.5rem 1rem;
  padding-left: 3.5rem;
  margin: 0;
}

.contact_nav ul li.ci-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact_nav ul li.ci-radio .bx {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #45B035;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_nav ul li.ci-radio .bx:after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
}

.contact_nav ul li.ci-radio input:checked ~ .bx:after {
  box-shadow: inset 0 0 0 4px #45B035;
}

#contactFormSection {
  display: none;
}

/* --- アコーディオン（kenkyu / book / forum / pmrj） .single_bottoms.acc --- */
.single_bottoms.acc .single_bottoms_item > div > h3 {
  cursor: pointer;
}

.single_bottoms.acc .single_bottoms_item > div > div {
  display: none;
}

.single_bottoms.acc .single_bottoms_item.is-open > div > div {
  display: block;
}

.single_bottoms.acc .single_bottoms_item h3:after {
  transition: all ease 0.3s;
}

.page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item.is-open > div > h3:after {
  transform: translate3d(0, 0.5rem, 0) rotate(-135deg);
}

.single_bottoms.acc .single_bottoms_item.is-open > .buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.5rem;
}

.single_bottoms.acc .single_bottoms_item:not(.is-open) > br {
  display: none;
}

/* ===== 統合ここまで ===== */
@media screen and (max-width: 640px) {
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item > div > h3:after {
    transform: translate3d(0.7rem, 0rem, 0) rotate(45deg);
  }
  .page_publications_single .sbPublications_single .single_bottoms .single_bottoms_item.is-open > div > h3:after {
    transform: translate3d(0.7rem, 0.5rem, 0) rotate(-135deg);
  }
}
.wp-block-table td, .wp-block-table th {
  padding: 0;
}

/* --- 薬害教育DVD アコーディオン（.single_bottoms.acc_edu） --- */
.single_bottoms.acc_edu .acc_group_head {
  font-size: 1.4rem;
  color: #45B035;
  background-color: #D9EDD4;
  font-weight: 700;
  padding: 1rem 2rem;
  margin: 2.5rem 0 1rem;
}
.single_bottoms.acc_edu .single_bottoms_item {
  margin-bottom: 0.6rem;
}
.single_bottoms.acc_edu .single_bottoms_item h3.acc_toggle {
  cursor: pointer;
  background-color: transparent;
  border-bottom: 2px solid #45B035;
  padding: 0.8rem 3.5rem 0.8rem 0.5rem;
  font-weight: 600;
  position: relative;
  margin: 0;
  line-height: 1.4;
}
.single_bottoms.acc_edu .single_bottoms_item h3.acc_toggle::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid #45B035;
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 1.5rem;
  top: 0.9rem;
  transform: rotate(45deg);
  transition: all ease 0.3s;
}
.single_bottoms.acc_edu .single_bottoms_item .acc_body {
  display: none;
  padding: 1rem 0.5rem 0;
}
.single_bottoms.acc_edu .single_bottoms_item.is-open h3.acc_toggle::after {
  transform: translateY(0.3rem) rotate(-135deg);
}
.single_bottoms.acc_edu .single_bottoms_item.is-open .acc_body {
  display: block;
}

.ucform .wpcf7-form .buttons > * {
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.ucform .wpcf7-form .buttons > * input {
  background-color: #45B035;
  cursor: pointer;
  color: #fff;
  border-radius: 100rem;
  width: 14.6875rem;
  box-sizing: border-box;
  padding: 0.3rem 0;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  border: 1px solid #45B035;
  transition: all ease 0.3s;
  background-color: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  background-color: #45B035;
  border-radius: 100rem;
  padding: 0.5rem 0;
  font-weight: 600;
}
.ucform .wpcf7-form .buttons > * input:hover {
  background-color: #fff;
  color: #45B035;
}

/* --- ページ上部へ戻るボタン（toTop） --- */
.to_top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1001;
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.to_top.show {
  opacity: 1;
  visibility: visible;
}
.to_top img {
  width: 100%;
  height: 100%;
  display: block;
}
.to_top:hover {
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  .to_top {
    width: 3rem;
    height: 3rem;
    right: 1rem;
    bottom: 1rem;
  }
}
/* --- aboutusjp 所在地: 地図画像の右上にGoogleマップを重ねる --- */
.gmap_holder {
  position: relative;
  display: inline-block;
}
.gmap_holder .gmap_overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 45%;
  aspect-ratio: 4/3;
  border: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}/*# sourceMappingURL=style.css.map */