@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'BIZ UDゴシック', 'BIZ UDGothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 100%;
  color: #000;
  word-break: break-word;
  margin: 0;
  padding: 0;
  letter-spacing: 0.03em;
}

a {
  color: #218210;
  text-decoration: underline;
}

a:hover,
button:hover {
  text-decoration: underline;
  color: #60c04f;
}

button {
  cursor: pointer;
}

a:focus,
button:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 4px;
  background-color: rgba(239, 124, 0, 0.2);
  border-radius: 4px;
}

a,
button {
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  transition: transform .3s ease, opacity .3s ease;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
  line-height: 1.8;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .inner {
    padding: 0 0.5rem;
  }
}

h2,
h3,
h4,
section {
  scroll-margin-top: 60px;
}

/* ヘッダー */
#header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #ffffffee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  height: 94px;
  padding: 10px 1rem;
  transition: transform 0.3s ease;
}

.logo-area {
  display: flex;
  align-self: flex-end;
}

.logo-area h1 a {
  margin-bottom: .5rem;
}

.logo-area h1.logo>a img {
  width: 252px;
}

#header.is-fixed .logo-area h1.logo>a img {
  display: block;
  height: 40px;
  width: auto;
}

@media screen and (max-width: 1200px) {
  .header-inner {
    height: 70px;
  }

  .logo-area {
    height: 100%;
  }

  .logo-area h1 a {
    margin-bottom: 0;
  }

  .logo-area .logo {
    display: flex;
    align-items: center;
  }

  .logo-area h1.logo>a.group img {
    width: 37px;
    margin-right: .5rem;
  }
}

.logo img {
  display: block;
  height: auto;
}

.logo a:first-of-type {
  display: block;
}

.logo a {
  text-decoration: none;
}

.global-nav a,
.global-nav button {
  display: inline-flex;
  align-items: center;
  color: #000000;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left center;
  height: 26px;
}

.global-nav a:hover,
.global-nav button:hover {
  text-decoration: underline;
  color: #218210;
}

.global-nav {
  align-self: flex-start;
}

.global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0 1rem;
  font-size: 75%;
  font-weight: 700;
}

.global-nav li.search button {
  background-image: url("../images/icon_search.png");
  background-size: 17px 17px;
  padding-left: 22px;
}

.global-nav li.a11y button {
  background-image: url("../images/icon_setting.png");
  background-size: 15px 15px;
  padding-left: 20px;
}

.global-nav li.search {
  background: none;
}

.setting_txt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 75%);
  z-index: 3000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.setting_txt.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.setting_txt>div {
  padding: 1.5rem 0;
  width: 100%;
  margin-bottom: 1.5rem;
}

.setting_close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff !important;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3100;
}

button.setting_close:hover {
  text-decoration: none !important;
}

.setting_txt .inner {
  display: flex;
  justify-content: center;
}

.setting_txt .search {
  display: flex;
  align-items: center;
  gap: initial;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: 2rem;
  border-bottom: none;
  background: none;
}

.setting_txt .search .search-label {
  color: #fff !important;
  position: relative;
  padding-left: 20px;
  margin-right: 1rem;
  font-size: 100%;
}

.setting_txt .color {
  display: flex;
  margin-right: 2rem;
}

.setting_txt .color dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  width: 46px;
}

.setting_txt .color dd:first-of-type a {
  background: url('../images/button_blue.png') no-repeat center/contain;
}

.setting_txt .color dd:nth-of-type(2) a {
  background: url('../images/button_yellow.png') no-repeat center/contain;
}

.setting_txt .color dd:nth-of-type(3) a {
  background: url('../images/button_black.png') no-repeat center/contain;
}

.setting_txt .color dd:nth-of-type(4) a {
  background: url('../images/button_normal.png') no-repeat center/contain;
}

.setting_txt .font_size dd:first-of-type a {
  background: url('../images/button_enlarge.png') no-repeat center/contain;
}

.setting_txt .font_size dd:nth-of-type(2) a {
  background: url('../images/button_minimize.png') no-repeat center/contain;
}

.setting_txt .font_size dd:nth-of-type(3) a {
  background: url('../images/button_normal.png') no-repeat center/contain;
}

.setting_txt .font_size dl,
.setting_txt .color dl {
  display: flex;
  align-items: center;
}

.setting_txt .font_size dt,
.setting_txt .color dt {
  color: #fff !important;
  font-size: 16px;
  margin-right: 1rem;
  position: relative;
  padding-left: 22px;
}

.setting_txt .search .search-label::before,
.setting_txt .font_size dt::before,
.setting_txt .color dt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 18px;
  margin-right: 8px;
  background: url("../images/arw.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.setting_txt .font_size dd,
.setting_txt .color dd {
  margin-right: 4px;
  font-size: 16px;
}

.setting_txt .color dl a {
  width: 60px;
  height: 60px;
  text-decoration: none;
}

.setting_txt .font_size dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

.setting_txt .color dl a span,
.setting_txt .font_size dl a span {
  opacity: 0;
}

@media screen and (max-width: 1200px) {
  .search.sp {
    display: flex;
    align-items: center;
    gap: initial;
    padding-bottom: 0;
    margin: 0 0 2rem;
    border-bottom: none;
  }

  .setting_txt_sp .color {
    display: flex;
    margin-right: 2rem;
  }

  .setting_txt_sp .color dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    filter: none;
    height: 60px;
  }

  .setting_txt_sp .color dl a span,
  .setting_txt_sp .font_size dl a span {
    opacity: 0;
  }

  .setting_txt_sp .color dd:first-of-type a {
    background: url('../images/button_blue.png') no-repeat center/contain;
  }

  .setting_txt_sp .color dd:nth-of-type(2) a {
    background: url('../images/button_yellow.png') no-repeat center/contain;
  }

  .setting_txt_sp .color dd:nth-of-type(3) a {
    background: url('../images/button_black.png') no-repeat center/contain;
  }

  .setting_txt_sp .color dd:nth-of-type(4) a {
    background: url('../images/button_normal.png') no-repeat center/contain;
  }

  .setting_txt_sp .font_size dl,
  .setting_txt_sp .color dl {
    display: flex;
    align-items: center;
  }

  .setting_txt_sp .font_size dt,
  .setting_txt_sp .color dt {
    color: #fff !important;
    font-size: 18px;
    margin-right: 1rem;
    position: relative;
    padding-left: 22px;
  }

  #recruit .setting_txt_sp .search .search-label::before,
  #recruit .setting_txt_sp .font_size dt::before,
  #recruit .setting_txt_sp .color dt::before {
    background: url("../images/arw03.png") no-repeat center;
  }

  .setting_txt_sp .font_size dd a {
    width: 60px;
    height: 60px;
    text-decoration: none;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .setting_txt_sp .font_size dd,
  .setting_txt_sp .color dd {
    margin-right: 3px;
    font-size: 16px;
  }

  .setting_txt_sp .font_size dd:first-of-type a {
    background: url('../images/button_enlarge.png') no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    padding: 0;
  }

  .setting_txt_sp .font_size dd:nth-of-type(2) a {
    background: url('../images/button_minimize.png') no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    padding: 0;
  }

  .setting_txt_sp .font_size dd:nth-of-type(3) a {
    background: url('../images/button_normal.png') no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    padding: 0;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .menu_label {
  position: absolute;
  bottom: 2px;
  font-size: 11px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.05em;
  color: #218210;
  width: 100%;
  text-align: center;
  line-height: 1;
  background: none;
}

.global-nav-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  #header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  #header .global-nav {
    display: none;
  }

  .global-nav-sp {
    display: block;
    margin-top: 0.5rem;
    z-index: 10;
    position: relative;
  }

  .global-nav-sp .logo-nav-sp {
    width: fit-content;
  }

  .global-nav-sp .global-nav {
    color: #fff;
  }

  .global-nav-sp .global-nav ul {
    display: block;
    padding: 0;
    margin-bottom: 2rem;
  }

  .global-nav-sp .global-nav li {
    margin-bottom: .5rem;
  }

  .global-nav-sp .global-nav a,
  .global-nav-sp .global-nav button:not(.search-form button) {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    filter: brightness(0) invert(1);
  }

  .global-nav-sp .global-nav a:hover {
    text-decoration: underline;
  }

  .global-nav-sp .logo {
    display: block;
  }

  .menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #218210;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span {
    background: #fff;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

/* グローバルメニュー */
.global-menu {
  position: relative;
  margin-top: -44px;
  z-index: 100;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.global-menu.is-fixed .logo {
  position: absolute;
  left: 20px;
  bottom: 8px;
  display: flex;
}

.global-menu .inner {
  max-width: none;
  margin: 0;
}

.global-menu .logo a {
  outline: 9999px solid transparent
}

.global-menu .logo a.group {
  margin-right: .5rem;
}

.global-menu .logo a.group img {
  height: 36px;
}

@media screen and (max-width: 1200px) {
  .global-menu::after {
    display: none;
  }

  .global-menu {
    pointer-events: auto;
  }

  .global-menu .logo {
    display: none;
  }
}

.global-menu-list {
  display: flex;
  width: 100%;
  list-style: none;
  margin: -1rem 0;
  padding: 0;
  pointer-events: auto;
  padding-bottom: 1.3rem;
}

.global-menu-list li {
  margin-bottom: 0.2rem;
  padding-left: 0;
  padding: 0.4rem 1rem 0.4rem 2.5rem;
}

.global-menu-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.global-menu-list .has-submenu a {
  display: inline-block;
}

.global-menu-list .has-submenu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #218210;
  position: absolute;
  left: 50%;
  margin: auto;
  transition: .3s;
  transform-origin: center;
  transform: translateX(-50%) scaleX(0);
}

.global-menu-list .has-submenu.recruit > a::after {
  background: #ffffff;
}

.global-menu-list .has-submenu a:hover::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}

.has-submenu>a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
  font-size: 87.5%;
  font-weight: 700;
}

.has-submenu>a:focus {
  border-radius: 0;
}

.has-submenu>a:hover {
  text-decoration: none;
}

.has-submenu.recruit {
  width: auto;
  height: 100%;
  background-color: #EE7D22;
  border-radius: 12px 0 0 12px;
  margin: 0 0 0 2.5rem;
  padding: 0.4rem 1.5rem;
}

.has-submenu.recruit a {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .global-menu-list>li>a {
    display: flex;
    align-items: center
  }
}

.global-menu-list>li.recruit>a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}

.global-menu-list>li.recruit>a::before {
  width: 1.8rem;
  height: 1.5rem;
  background: url(../images/icon_recruit_white.png) no-repeat center/contain;
  margin-right: 0.5rem;
}

.global-menu.is-fixed .global-menu-list>li.recruit>a::before {
  width: 18px;
  height: 22px;
  background: url(../images/icon_recruit.png) no-repeat center/contain;
  margin-right: 10px;
}

@media screen and (max-width: 1200px) {
  .global-menu-list>li.submenu-open>a {
    background: initial;
  }

  .global-menu.active .global-menu-list>li.recruit>a::before {
    background: url(../images/icon_recruit_white.png) no-repeat center/contain;
  }
}


/* メガメニュー */
.has-submenu {
  position: static;
}

.has-submenu.open .submenu {
  display: block;
}

.submenu-container {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.submenu-container li {
  padding: 0;
}

.has-submenu.open .submenu-container,
.has-submenu:hover .submenu-container,
.submenu-container:hover {
  opacity: 1;
  visibility: visible;
}

.has-submenu.open .submenu-container.empty,
.has-submenu:hover .submenu-container.empty,
.submenu-container.empty:hover {
  opacity: 0;
}

.global-menu .submenu-container {
  position: absolute;
  top: 37px;
  left: 0;
  width: 100%;
  background: #218210ee;
  padding: 40px 0 40px 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  pointer-events: none;
}

.global-menu .submenu-container a {
  color: #218210;
}

.global-menu.is-fixed .submenu-container {
  top: 55px;
}

.global-menu .has-submenu .submenu-open .submenu-container {
  visibility: visible;
  pointer-events: auto;
}

@media screen and (min-width:1201px) {
  .global-menu .submenu-container::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    height: 24px;
  }
}

.submenu-title {
  position: relative;
  top: 0;
  width: 1000px;
  height: auto;
  margin: 0 auto;
}

.submenu-title div {
  position: absolute;
  width: 100%;
  height: 1rem;
  top: 0;
  left: -7rem;
  color: #fff;
  padding: 5px;
  bottom: 0;
  font-size: 1.5rem;
}

/* スマホ時 */
@media screen and (max-width: 1200px) {
  .global-menu .submenu-container {
    position: static;
    width: 100%;
    padding: 0;
    background: initial;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none;
    pointer-events: auto;
  }

  .global-menu .has-submenu.submenu-open .submenu-container {
    display: block;
  }

  .has-submenu.open .submenu-container,
  .has-submenu:hover .submenu-container {
    background: initial
  }

  .global-menu-list .has-submenu a:hover {
    border-bottom: initial !important;
    margin-bottom: 0 !important;
  }

  .has-submenu.recruit li a {
    color: #fff !important;
  }

  .global-menu-list .has-submenu a::after {
    content: none;
  }
}

.submenu {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.submenu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc((1000px - (310px * 3)) / 3);
  list-style: none;
  margin: 0;
  padding-left: 10rem;
}

.submenu li {
  width: 280px;
  height: auto;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.submenu li a {
  position: relative;
  display: block;
  padding: 1rem 2rem 1rem 2rem;
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.3s, color 0.3s;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.submenu li a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.submenu li a svg {
  width: 18px;
  margin-right: 10px;
  fill: currentColor;
  transition: fill 0.3s;
  flex-shrink: 0;
}

.submenu li a:hover {
  background: #196b0b;
  color: #fff;
}

.submenu li a:hover::before {
  background-color: #fff;
}

/* スクロール時 */
#header.is-fixed {
  height: 55px;
}

#header.is-fixed .global-nav {
  display: none;
}

.global-menu.is-fixed {
  display: block;
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  background: #ffffffee;
  z-index: 1000;
  color: #218210;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideinTop 1s forwards;
}

@keyframes slideinTop {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

.global-menu.is-fixed .global-menu-list {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: auto;
}

.global-menu.is-fixed .global-menu-list>li {
  width: auto;
  padding: 2rem 1rem 0.4rem 2.5rem;
}

.global-menu.is-fixed .global-menu-list>li.recruit {
  background-color: initial;
  margin: 0 0 0.2rem 0;
}

.global-menu.is-fixed .global-menu-list>li>a {
  color: #218210;
  font-size: 81.3%;
  display: block;
}

.global-menu.is-fixed .global-menu-list>li.recruit>a {
  color: #EE7D22;
}

.global-menu.is-fixed .global-menu-list>li.recruit>a::after {
  background: #218210;
}

.global-menu.is-fixed .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 55px;
  width: 100%;
  max-width: none;
  padding: 0 1rem;
  position: relative;
}

.global-menu.is-fixed ul.global-menu-list>li:not(:last-child)>a::before {
  top: 50%;
  right: 0;
}

@media screen and (min-width: 1180px) {
  .menu-close {
    display: none !important;
  }
}

/* スマホ表示 */
@media screen and (max-width: 1200px) {
  .global-menu {
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #75a86fe2;
    z-index: 1000;
    overflow-y: auto;
    display: none;
  }

  .global-menu .inner {
    flex-direction: column;
  }

  .menu-close {
    position: fixed;
    top: 5px;
    right: 14px;
    font-size: 2rem;
    color: #fff !important;
    background: none;
    border: none;
    z-index: 3000;
    cursor: pointer;
  }

  .global-menu.active {
    display: block;
  }

  .global-menu-list {
    position: static;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    z-index: auto;
  }

  .global-menu-list ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .global-menu-list li {
    border: none;
    margin: 0.5rem 0;
    background-color: #fff;
    border-radius: 10px !important;
    padding: 0;
  }

  .global-menu-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    width: 100%;
    text-decoration: none;
    background: none;
    height: auto;
  }

  .global-menu-list li a {
    justify-content: flex-start;
    padding: 15px 0;
  }

  .global-menu-list a:hover {
    background: initial;
    border-bottom: initial;
  }

  .global-menu.active .global-nav-sp.top {
    display: block;
    margin-bottom: 1rem;
  }

  .global-menu.active .global-nav-sp.bottom {
    display: block;
    margin-top: 3rem;
  }

  .submenu-container {
    position: static;
    width: 100%;
    padding: 0;
    background: initial;
  }

  .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
    width: auto;
  }

  .submenu ul {
    display: block;
    padding: 0;
    margin: 0 0 .5rem;
  }

  .submenu li {
    width: 100%;
    padding: 0 0 12px;
    border: none;
    min-height: auto;
    box-shadow: initial;
    background-color: initial;
  }

  .submenu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: none;
    padding: 0 0 0 2rem;
    border-bottom: none;
    box-shadow: none;
    font-weight: 700;
  }

  .global-menu-list .has-submenu>a {
    display: flex;
    position: relative;
    align-items: center;
    padding: 15px 0 15px 15px;
    width: 100%
  }

  /* アコーディオンアイコン　プラスボタン */
  .has-submenu .acd-icon,
  .has-submenu .acd-icon::after {
    display: block;
    box-sizing: border-box;
    background: currentColor;
    border-radius: 10px;
  }

  .has-submenu .acd-icon {
    position: absolute;
    transform: translate(0, -50%) scale(0.9);
    width: 16px;
    height: 2px;
    top: 50%;
    right: 20px;
    transition: 0.4s;
    background-color: #00835a;
  }

  .has-submenu .acd-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    top: -7px;
    left: 7px;
    background-color: #00835a;
  }

  /* アコーディオンアイコン　マイナスボタン */
  .has-submenu.submenu-open.open .acd-icon {
    box-sizing: border-box;
    position: absolute;
    display: block;
    transform: scale(0.9);
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
    background-color: #00835a;
  }

  .has-submenu.submenu-open.open .acd-icon::after {
    display: none;
  }

  .has-submenu.recruit {
    margin: 0.5rem 0;
    padding: 0;
  }

  .has-submenu.recruit .acd-icon {
    background-color: #fff;
  }

  .has-submenu.recruit .acd-icon::after {
    background-color: #fff;
  }

  .has-submenu.recruit.submenu-open.open .acd-icon {
    background-color: #fff;
  }

  .submenu li a::after {
    content: none;
    transform: none;
    transition: none;
  }

  .submenu li a svg {
    display: none;
  }

  .submenu li a:hover::after {
    transform: none;
  }

  .submenu li a:hover {
    background: none;
    color: #fff;
  }

}

.global-menu {
  position: absolute;
  top: 100px;
  z-index: 200;
  width: 100%;
}

.global-menu .logo {
  position: relative;
}

.global-menu .logo a {
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.global-menu .logo img {
  display: none;
}

.global-menu.is-fixed .logo img {
  display: block;
  height: 40px;
  width: auto;
}

.global-menu .logo span img {
  height: auto;
  width: auto;
}

.global-menu .inner::before,
.global-menu .inner::after {
  pointer-events: none;
}

.submenu-container {
  pointer-events: none;
}

.has-submenu:hover .submenu-container,
.has-submenu.open .submenu-container {
  pointer-events: auto;
}

#header.is-fixed .logo {
  display: none;
}

@media screen and (max-width:1200px) {
  .global-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform .25s ease;
    height: 100dvh;
  }

  .global-menu.active {
    transform: translateY(0)
  }

  .global-menu .inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem;
  }

  body.menu_open {
    overflow: hidden
  }

  .global-menu .logo-nav-sp img {
    display: block;
    height: 40px;
    width: auto;
    margin-bottom: 4rem;
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.main-visual .inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.main-visual .inner>div:first-child {
  position: absolute;
  z-index: 100;
}

.main-visual .inner>div:first-child img {
  display: block;
  height: auto;
}

@media screen and (max-width: 1180px) {
  .main-visual {
    height: auto;
    overflow: visible;
  }

  .main-visual .inner {
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0;
  }

  .main-slide-wrapper {
    margin-top: -100px;
    z-index: 2;
    position: relative;
  }

  .slider {
    margin-top: -100px;
    position: relative;
    z-index: 2;
  }

  .main-slide {
    width: calc(100% - 26.4%);
    margin: 0 auto;
  }

  .main-visual .inner>p {
    width: 100%;
    height: 385px;
  }
}

/* キャッチコピー */
.catchphrase {
  position: absolute;
  top: 300px;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .catchphrase {
    width: 80%;
  }
}

/* スライダー */
#slider {
  position: relative;
  width: 100%;
}

#slider img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 800px;
}

#sliderSp {
  display: none;
}

@media screen and (max-width: 1180px) {
  #slider {
    display: none;
  }

  #sliderSp {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  #sliderSp .slick-list,
  #sliderSp .slick-track,
  #sliderSp .slick-slide {
    height: 100%;
  }

  #sliderSp img {
    display: block;
    width: 100%;
    height: 700px;
    object-fit: cover;
  }
}

/* スライダードット */
.dots-wrap {
  position: absolute;
  top: 770px;
  left: 10px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.dots-wrap li {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background: #fff;
  border: 2px solid #218210;
  border-radius: 50%;
  cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  border: 2px solid #fff;
  background: #218210;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

@media screen and (max-width: 1200px) {
  .dots-wrap {
    position: absolute;
    top: 670px;
    left: 10px;
    display: flex;
    justify-content: center;
    z-index: 10;
  }
}

.none {
  display: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus,
.slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  display: flex;
  background-color: #fff !important;
  border: 2px solid #009b6a !important;
  display: inline-block;
  vertical-align: middle;
}

.important a[href$=".pdf"]::before {
  content: "PDF";
  background: #bb1d67;
}

.important a[href$=".doc"]::before,
.important a[href$=".docx"]::before {
  content: "WORD";
  background: #005d82;
}

.important a[href$=".xls"]::before,
.important a[href$=".xlsx"]::before {
  content: "EXCEL";
  background: #1f8614;
}

.important a[href$=".ppt"]::before,
.important a[href$=".pptx"]::before {
  content: "PPT";
  background: #864714;
}

.important a[href$=".zip"]::before {
  content: "ZIP";
  background: #888888;
}

.important a[href$=".pdf"]::before,
.important a[href$=".doc"]::before,
.important a[href$=".docx"]::before,
.important a[href$=".xls"]::before,
.important a[href$=".xlsx"]::before,
.important a[href$=".ppt"]::before,
.important a[href$=".pptx"]::before,
.important a[href$=".zip"]::before {
  display: inline-block;
  vertical-align: top;
  margin: .1rem .5rem 0 0;
  padding: 0.1rem 0.4rem;
  color: #fff;
  font-size: 75%;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
}


/* キーワードから探す */
.search {
  background: #c7e9e2;
}

.search .inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 2rem 0;
}

@media screen and (max-width: 1200px) {
  .search .inner {
    display: block;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.search-label {
  position: relative;
  color: #000;
  font-size: 125%;
  padding-left: 0;
}

.search-label span {
  color: #23a188;
  font-size: 60%;
  margin-left: .5rem;
}

@media screen and (max-width: 1200px) {
  .search-label {
    display: block;
    margin-bottom: 1rem;
  }

  .search-form {
    border-radius: 12px;
  }

  .search {
    background-color: initial;
  }
}

.search-form {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.search-form input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}

.search.sp .search-form input {
  width: calc(100% - 50px);
}

.search-form input::placeholder {
  color: #777;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: #2A871C;
  cursor: pointer;
}

.search-form button::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #fff;
  -webkit-mask-image: url('../images/search.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('../images/search.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* メッセージ */
#message {
  background-color: #E6F0E5;
  color: #333;
}

#message .inner {
  max-width: 1200px;
  padding: 4rem 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#message .message-heading {
  width: 40%;
  box-sizing: border-box;
}

#message .inner>.message-area {
  width: 70%;
  padding-bottom: 4rem;
}

#message .message-heading img {
  border-radius: 15px;
}

#message .message-area {
  list-style: none;
  padding: 0;
  margin: 0;
}

#message .message-area h1 {
  margin-bottom: 2rem;
  font-size: 170%;
  font-weight: 700;
  line-height: 1.5;
  color: #218210;
}

@media screen and (max-width: 1200px) {
  #message .inner {
    padding: 2rem 0.5rem;
    flex-direction: column;
    text-align: center;
  }

  #message .inner>.message-area {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }

  #message .message-heading {
    width: 100%;
  }

  #message .message-heading .message-image {
    width: 100%;
    height: auto;
    padding-bottom: 2rem;
  }

  #message .message-heading .message-image img {
    width: 100%;
    height: auto;
  }

  #message .message-area h1,
  #message .message-area p {
    justify-content: left;
    text-align: left;
  }

  #message .message-area h1 {
    font-size: 115%;
  }
}


/* 取り組み */
#torikumi {
  background: url("../images/torikumi_image.jpg") no-repeat center/cover;
  color: #fff;
}

#torikumi .inner {
  padding: 10rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

#torikumi .torikumi-heading h1 {
  text-align: center;
  font-weight: 100;
  line-height: 1.5;
  padding-bottom: 2rem;
}

#torikumi .torikumi-heading p {
  text-align: center;
  font-weight: 100;
}

#torikumi .torikumi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
}

#torikumi .torikumi-grid button {
  width: calc(33.333% - 3rem);
  margin: .5rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.5s ease;
  transform-origin: center center;
}

#torikumi .torikumi-grid button:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
  #torikumi {
    height: auto;
  }

  #torikumi .inner {
    padding: 2rem 0.5rem;
    flex-direction: column;
    text-align: center;
  }

  #torikumi .torikumi-grid {
    margin: 2rem 0 0 0;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  #torikumi .torikumi-grid button {
    width: calc(50% - 3rem);
  }
}

@media (max-width: 767px) {
  #torikumi .torikumi-grid button {
    width: 100%;
    margin: 0 0 1rem 0;
  }

  #torikumi .torikumi-grid button img {
    width: 100%;
  }
}

/* モーダルウィンドウ */

.close-btn {
  position: absolute;
  top: -30px;
  right: 30px;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: auto;
  height: auto;
  font-weight: 900;
  color: #fff;
}

/* モーダル背景 */
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 75%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* モーダル表示状態 */
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1000;
}

/* ボタン表示エリア*/
.modal-btn-area {
  position: relative;
}


/* モーダルの中身*/
.modal-content {
  color: #000;
  background: #fff;
  margin: 30px;
  border-radius: 10px;
  height: 85vh;
  max-width: 1180px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  overflow-y: scroll;
}

.modal-inner {
  padding: 1rem;
  max-width: 1180px;
}

.modal-content h1 {
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.modal-content p {
  text-align: left;
  font-weight: 100;
}

.modal-content .modal-visual {
  display: flex;
}

.modal-content .modal-image {
  width: 50%;
  border-radius: initial;
  padding: 2rem 0 1rem 0;
  margin: 0 auto;
}

.modal-content .modal-text {
  width: 50%;
  border-radius: initial;
  padding: 2rem 0 1rem 0;
  margin: 0 auto;
}

.modal-content .modal-banner {
  width: 50%;
  height: auto;
  margin: 0 auto;
  padding-top: 1rem;
}

.modal-content .modal-banner p {
  color: #00547f;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  padding-bottom: 0.5rem;
}

.modal-content .modal-banner img {
  width: 100%;
}

/* アニメーション*/
.modal.active .modal-content {
  animation: fadeInScale 0.4s ease forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (max-width: 767px) {
  .close-btn {
    top: -40px;
    right: 10px;
  }

  .modal-btn-area {
    width: auto;
  }

  .modal-content {
    margin: 0.5rem;
  }

  .modal-content .modal-banner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 1rem;
  }

  .modal-content .modal-visual {
    display: block;
  }

  .modal-content .modal-image {
    width: 100%;
    border-radius: initial;
    padding: 2rem 0 1rem 0;
    margin: 0 auto;
  }

  .modal-content .modal-text {
    width: 100%;
    border-radius: initial;
    padding: 0;
    margin: 0;
  }

  .modal-content .modal-banner img {
    width: 100%;
    width: auto;
  }

}


/* タブ */
#tabsSection {
  margin-bottom: 3rem;
}

#tabsSection ul li::before {
  content: initial !important;
}

.tabs-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tabs-header {
  position: relative;
  background-image: none !important;
  padding-top: 50px;
}

.tabs-header::before,
.tabs-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc((100% - 1200px) / 2);
  height: 3px;
}

@media (max-width: 1200px) {

  .tabs-header::before,
  .tabs-header::after {
    width: 1.25rem;
  }
}

.tabs-header::before {
  left: 0;
}

.tabs-header::after {
  right: 0;
}

.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.tabs li {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  margin-right: 25px;
  color: #1F820EFF;
  cursor: pointer;
  border: 2px solid #1F820EFF;
  border-radius: 8px;
}

.tabs li:hover {
  background: #d4edcf;
}

@media (max-width: 1200px) {
  .tabs li {
    font-size: 12px;
    padding: 0.4rem 0.5rem;
    margin-right: 10px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.tabs li:last-child {
  margin-right: 0;
}

.tabs li.active {
  background-color: #1F820EFF;
  border-bottom: 3px solid transparent;
  color: #fff;
}

.tabs li.active:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #1F820EFF transparent transparent transparent;
  border-width: 10px 10px 0 10px;
}

.tabs-content {
  padding: 2rem 0 0 0;
  margin-bottom: 1rem;
  color: #fff;
  min-height: 390px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* ニュースリスト */
.news-list {
  padding: 0;
}

.news-list .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-list ul {
  flex-wrap: wrap;
  gap: 13px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.news-list li {
  position: static !important;
  /* display: flex; */
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 0 2rem 0 !important;
}

.news-list li div {
  width: 100%;
  margin: auto 0;
}

.news-list li a {
  display: flex;
  text-decoration: none;
  color: #000;
}

.news-list li a:hover {
  opacity: .8;
}

.news-list li a img {
  width: 200px;
  border-radius: 12px;
  transform-origin: center center;
}

.news-list li a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.news-list li .news-image {
  width: 250px;
  margin-right: 2rem;
  overflow: hidden;
  border-radius: 12px;
}

.news-list li .date {
  font-size: 90%;
  margin-bottom: 0 !important;
}

.news-list li h1 {
  color: #2D6096FF;
  font-size: 120%;
  text-decoration: underline;
}

.news-list .inline {
  display: inline;
}

@media (max-width: 767px) {
  .news-list li {
    flex: 0 0 calc((100% - 13px) / 2);
  }

  .news-list li a {
    display: block;
  }

  .news-list li .news-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 1rem 0;
  }

  .news-list li a img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 1rem 0;
  }

  .news-list .inner {
    padding: 0;
  }

  .news-list ul {
    gap: 10px;
  }
}

#banner {
  margin-bottom: 2rem;
  padding-top: 3rem;
}

#banner ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
}

#banner ul li {
  width: calc((100% - 4rem) / 5);
  margin: 0;
}

#banner ul li img {
  width: 100%;
  height: auto;
  display: block;
}



@media screen and (max-width: 1200px) {
  #banner {
    margin-bottom: 2rem;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  #banner ul {
    gap: 1rem 0.5rem;
  }

  #banner ul li {
    width: calc((100% - 0.5rem) / 2);
  }
}

/* フッター */
#footer {
  background-color: #E6F0E5;
  background-repeat: repeat-x;
  background-position: left 3px;
}

#footer .logo-area {
  width: 100%;
  display: block;
}

#footer .logo-area h1.logo>a img {
  width: auto;
}

#footer a img:hover,
.link-area div:hover {
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}

#footer .logo a {
  width: 250px;
}

.link-area {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  padding-top: 2rem;
  justify-content: right;
}

.link-area div {
  width: 15rem;
  height: auto;
}

.link-area a {
  width: 100%;
  color: #358D25;
  height: auto;
  padding: 1rem 1rem 1rem 2.5rem;
  border: solid 2px #358D25;
  border-radius: 10px;
  text-decoration: none;
}

.link-area a:hover {
  text-decoration: none;
}

.link-area .orange a {
  border: solid 2px #ef7c00;
}

.link-area .orange a {
  color: #ef7c00;
}

.link {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow-wrap: break-word;

  &::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 10px;
    top: 28px;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
  }

  &.recruit::before {
    background: url(../images/icon_recruit.png) no-repeat center / contain;
    width: 40px;
    height: 40px;
    left: 10px;
    top: 28px;
  }

  &.access::before {
    background: url(../images/icon_access.png) no-repeat center / contain;
  }

  &.contact::before {
    background: url(../images/icon_contact.png) no-repeat center / contain;
  }

}

@media screen and (max-width: 1200px) {
  #footer .logo-area .logo {
    display: flex;
    padding-bottom: 1rem;
  }

  .footer-bottom .inner {
    display: block !important;
    padding: 0.5rem !important;
  }

  .link-area {
    display: grid;
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 1rem;
    width: auto;
    justify-content: initial;
  }

  .link-area div {
    width: 100%;
    height: auto;
    font-size: 85%;
  }

  .link-area div:nth-child(1) {
    grid-area: 1 / 1;
  }

  .link-area div:nth-child(2) {
    grid-area: 2 / 1;
  }

  .link-area div:nth-child(3) {
    grid-area: 2 / 2;
  }

  .link {
    padding: 1rem 1rem 0 2rem;

    &::before {
      left: 10px;
      top: 25px;
    }
  }

  .link.recruit {
    &::before {
      width: 40px;
      height: 40px;
      left: 10px;
      top: 25px;
    }
  }
}

.footer_links {
  margin-bottom: 3rem;
  font-size: 75%;
}

.footer_links ul:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0;
}

.footer_links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1rem 0 0;
  margin: 0;
  font-size: 90%;
}

.footer_links a {
  margin-right: .5rem;
}

.footer_links a:hover {
  text-decoration: underline;
}

.footer_links li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: url("../images/arw.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.footer_links .pdf {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding: 0.1rem 0.4rem;
  margin-right: .5rem;
  border-radius: 3px;
  background-color: #bb1d67;
  font-size: 75%;
}

.footer_links li.eme::before {
  content: none;
}

.footer_links .eme a {
  background: #fff;
  border-radius: 3px;
  color: #bb1d67;
  font-size: 125%;
  text-decoration: none;
  padding: 0 .4rem .2rem;
}

.footer_links .inner {
  padding-top: 2rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
}

.footer-bottom .inner {
  max-width: initial;
  padding: 2rem;
  display: flex;
}

@media screen and (max-width: 1200px) {
  .footer_links {
    margin-bottom: 2rem;
  }

  .footer_links ul {
    display: block !important;
  }

  .footer_links ul li {
    padding-bottom: 1rem !important;
  }

  .footer_links a {
    font-size: 1rem;
    font-weight: 700;
  }
}



.etc {
  font-size: 75%;
}

.address {
  margin-bottom: 2rem;
  text-align: left;
  font-size: 90%;
}

.etc {
  margin-bottom: 5rem;
}

.copyright {
  font-size: 75%;
}

@media screen and (max-width: 1200px) {
  .address {
    font-size: 75%;
  }

  .copyright {
    font-size: 65%;
  }
}

#page-top {
  position: fixed;
  right: 15px;
  display: block;
  z-index: 10;
}

.pagetop_btn a {
  display: block;
  width: 40px;
  height: 60px;
  padding-top: 6px;
  text-align: center;
  background: url('../images/page-top.png') no-repeat center/contain;
}

.pagetop_btn a:hover,
.pagetop_btn a:focus {
  opacity: 0.8;
}

/* ▼ 「北海道農業公社の取り組み」セクション上では白く */
.pagetop_btn.white a {
  background: url('../images/page-top_white.png') no-repeat center/contain;
}

/* ▼ メディアクエリ（既存に合わせて） */
@media screen and (max-width: 1200px) {
  #page-top {
    right: 10px;
    bottom: 25px;
  }

  .pagetop_btn a {
    width: 40px;
    height: 60px;
    padding-top: 5px;
    background: url('../images/page-top.png') no-repeat center/contain;
  }
}


/* 初期化 */
.sp,
.pc {
  display: none;
}

/* スマホのみ表示 */
@media screen and (max-width: 1200px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }
}

/* PCのみ表示 */
@media screen and (min-width: 1201px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }

  .sp_only {
    display: none !important;
  }
}

/* スマホ以下（タブレット除く）のみ表示 */
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }
}


p.voice_navi {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.skip {
  position: absolute;
  overflow: hidden;
  width: 0;
  margin: 0;
  padding: 0;
}

a.skip {
  text-align: center;
  padding: 2px 0;
  top: 0;
}

a.skip:active,
a.skip:focus {
  display: block;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
  z-index: 3000;
  height: auto;
}

a.skip:active {
  width: 100%;
}

a.skip:focus {
  width: 99.99%;
}

@media screen and (max-width: 1200px) {
  .submenu-container {
    display: none;
  }

  .has-submenu.open .submenu-container {
    display: block;
  }
}

caption {
  display: none;
}

.col_width_01 {
  width: 1% !important;
}

.col_width_02 {
  width: 2% !important;
}

.col_width_03 {
  width: 3% !important;
}

.col_width_04 {
  width: 4% !important;
}

.col_width_05 {
  width: 5% !important;
}

.col_width_06 {
  width: 6% !important;
}

.col_width_07 {
  width: 7% !important;
}

.col_width_08 {
  width: 8% !important;
}

.col_width_09 {
  width: 9% !important;
}

.col_width_10 {
  width: 10% !important;
}

.col_width_11 {
  width: 11% !important;
}

.col_width_12 {
  width: 12% !important;
}

.col_width_13 {
  width: 13% !important;
}

.col_width_14 {
  width: 14% !important;
}

.col_width_15 {
  width: 15% !important;
}

.col_width_16 {
  width: 16% !important;
}

.col_width_17 {
  width: 17% !important;
}

.col_width_18 {
  width: 18% !important;
}

.col_width_19 {
  width: 19% !important;
}

.col_width_20 {
  width: 20% !important;
}

.col_width_21 {
  width: 21% !important;
}

.col_width_22 {
  width: 22% !important;
}

.col_width_23 {
  width: 23% !important;
}

.col_width_24 {
  width: 24% !important;
}

.col_width_25 {
  width: 25% !important;
}

.col_width_26 {
  width: 26% !important;
}

.col_width_27 {
  width: 27% !important;
}

.col_width_28 {
  width: 28% !important;
}

.col_width_29 {
  width: 29% !important;
}

.col_width_30 {
  width: 30% !important;
}

.col_width_31 {
  width: 31% !important;
}

.col_width_32 {
  width: 32% !important;
}

.col_width_33 {
  width: 33% !important;
}

.col_width_34 {
  width: 34% !important;
}

.col_width_35 {
  width: 35% !important;
}

.col_width_36 {
  width: 36% !important;
}

.col_width_37 {
  width: 37% !important;
}

.col_width_38 {
  width: 38% !important;
}

.col_width_39 {
  width: 39% !important;
}

.col_width_40 {
  width: 40% !important;
}

.col_width_41 {
  width: 41% !important;
}

.col_width_42 {
  width: 42% !important;
}

.col_width_43 {
  width: 43% !important;
}

.col_width_44 {
  width: 44% !important;
}

.col_width_45 {
  width: 45% !important;
}

.col_width_46 {
  width: 46% !important;
}

.col_width_47 {
  width: 47% !important;
}

.col_width_48 {
  width: 48% !important;
}

.col_width_49 {
  width: 49% !important;
}

.col_width_50 {
  width: 50% !important;
}

.col_width_51 {
  width: 51% !important;
}

.col_width_52 {
  width: 52% !important;
}

.col_width_53 {
  width: 53% !important;
}

.col_width_54 {
  width: 54% !important;
}

.col_width_55 {
  width: 55% !important;
}

.col_width_56 {
  width: 56% !important;
}

.col_width_57 {
  width: 57% !important;
}

.col_width_58 {
  width: 58% !important;
}

.col_width_59 {
  width: 59% !important;
}

.col_width_60 {
  width: 60% !important;
}

.col_width_61 {
  width: 61% !important;
}

.col_width_62 {
  width: 62% !important;
}

.col_width_63 {
  width: 63% !important;
}

.col_width_64 {
  width: 64% !important;
}

.col_width_65 {
  width: 65% !important;
}

.col_width_66 {
  width: 66% !important;
}

.col_width_67 {
  width: 67% !important;
}

.col_width_68 {
  width: 68% !important;
}

.col_width_69 {
  width: 69% !important;
}

.col_width_70 {
  width: 70% !important;
}

.col_width_71 {
  width: 71% !important;
}

.col_width_72 {
  width: 72% !important;
}

.col_width_73 {
  width: 73% !important;
}

.col_width_74 {
  width: 74% !important;
}

.col_width_75 {
  width: 75% !important;
}

.col_width_76 {
  width: 76% !important;
}

.col_width_77 {
  width: 77% !important;
}

.col_width_78 {
  width: 78% !important;
}

.col_width_79 {
  width: 79% !important;
}

.col_width_80 {
  width: 80% !important;
}

.col_width_81 {
  width: 81% !important;
}

.col_width_82 {
  width: 82% !important;
}

.col_width_83 {
  width: 83% !important;
}

.col_width_84 {
  width: 84% !important;
}

.col_width_85 {
  width: 85% !important;
}

.col_width_86 {
  width: 86% !important;
}

.col_width_87 {
  width: 87% !important;
}

.col_width_88 {
  width: 88% !important;
}

.col_width_89 {
  width: 89% !important;
}

.col_width_90 {
  width: 90% !important;
}

.col_width_91 {
  width: 91% !important;
}

.col_width_92 {
  width: 92% !important;
}

.col_width_93 {
  width: 93% !important;
}

.col_width_94 {
  width: 94% !important;
}

.col_width_95 {
  width: 95% !important;
}

.col_width_96 {
  width: 96% !important;
}

.col_width_97 {
  width: 97% !important;
}

.col_width_98 {
  width: 98% !important;
}

.col_width_99 {
  width: 99% !important;
}

@media screen and (max-width: 1200px) {
  .global-menu .search.sp {
    position: relative;
    z-index: 2001;
    pointer-events: auto;
  }

  .global-menu .search.sp input,
  .global-menu .search.sp button {
    position: relative;
    z-index: 2002;
  }
}

/* 詳細ページ お知らせ */
#detail-news-list {
  padding: 0;
/*  padding-bottom: 10rem; */
}

#detail-news-list .inner {
  width: 100%;
  margin: 0 auto;
}

#detail-news-list .news-grid {
  gap: 50px;
  position: relative;
}

#detail-news-list ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

#detail-news-list li {
  padding-bottom: 1rem;
}

#detail-news-list li div {
  width: 100%;
  margin: auto 0;
}

#detail-news-list li a {
  text-decoration: none;
}

#detail-news-list li a:hover {
  opacity: .8;
}

#detail-news-list li .date {
  font-size: 90%;
  font-weight: 600;
}

#detail-news-list li h1 {
  font-size: 105%;
  text-decoration: underline;
  padding-bottom: 5px;
  border-bottom: solid 1px #D8D8D8;
}

#detail-news-list .inline {
  display: inline;
}

@media (max-width: 1200px) {
  #detail-news-list li {
    padding-bottom: 1rem;
  }

  #detail-news-list li a {
    display: block;
  }

  #detail-news-list .inner {
    padding: 0 0.5rem;
  }

  #detail-news-list .news-grid {
    display: block;
  }

  #detail-news-list ul {
    display: block;
  }
}

#branch .news-list ul li::before {
  content: none !important;
}