@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: #006637;
  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;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  height: 94px;
  padding: 10px 1rem;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 1200px) {
  .header-inner {
    height: 70px;
  }

  .logo-area {
    max-width: 120px;
    margin: 0 auto;
  }
}

.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: #006637;
}

.global-nav {
  align-self: flex-start;
  width: 100%;
}

.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: #006637;
  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: #006637;
    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: center;
  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;
  gap: 12rem;
  width: 100%;
  list-style: none;
  margin: 2rem 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;
  color: #000;
}

.global-menu-list .has-submenu a:hover {
  color: #60c04f;
}

/* .global-menu-list .has-submenu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  margin: auto;
  transition: .3s;
  transform-origin: center;
  transform: translateX(-50%) scaleX(0);
} */

/* .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%;
  border-radius: 12px 0 0 12px;
}

@media screen and (max-width: 1200px) {
  .global-menu-list>li>a {
    display: flex;
    align-items: center
  }
}

/* メガメニュー */
.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: 110px;
  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.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;
  }

  .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 !important;
}

.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: #29798C; */
  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; */
  margin: 0 auto;
  width: auto;
  gap: 8rem;
}

.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: #000;
  font-size: 81.3%;
  display: block;
}

.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;
    gap: 0;
  }

  .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: #006637;
  }

  .has-submenu .acd-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    top: -7px;
    left: 7px;
    background-color: #006637;
  }

  /* アコーディオンアイコン　マイナスボタン */
  .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: #006637;
  }

  .has-submenu.submenu-open.open .acd-icon::after {
    display: none;
  }

  .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: 35px;
  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;
} */

.global-menu-list .logo a {
  position: absolute;
  /* left: 0; */
  top: 30%;
  transform: translateY(-50%) translateX(-50%);
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/common/ninaite/images/logo.png);
}

.global-menu.is-fixed .global-menu-list .logo a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/common/ninaite/images/logo_fixed.png);
}

.global-menu-list .has-submenu>a:hover {
  opacity: 0.5;
}


.global-menu:not(.is-fixed) .global-menu-list .description>a {
  position: absolute;
  top: 34%;
  transform: translateY(-50%) translateX(-50%);
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/common/ninaite/images/global_menu_01.png);
  color: transparent;
  transition: none;
}

.global-menu:not(.is-fixed) .global-menu-list .experience>a {
  position: absolute;
  top: 34%;
  transform: translateY(-50%) translateX(-50%);
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/common/ninaite/images/global_menu_02.png);
  color: transparent;
  transition: none;
}

.global-menu:not(.is-fixed) .global-menu-list .inauguration>a {
  position: absolute;
  top: 34%;
  transform: translateY(-50%) translateX(-50%);
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/common/ninaite/images/global_menu_03.png);
  color: transparent;
  transition: none;
}

.global-menu:not(.is-fixed) .global-menu-list .start>a {
  position: absolute;
  top: 34%;
  transform: translateY(-50%) translateX(-50%);
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/common/ninaite/images/global_menu_04.png);
  color: transparent;
  transition: 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: 100px;
    width: auto;
    margin-bottom: 2rem;
  }

  .global-menu:not(.is-fixed) .global-menu-list .description>a,
  .global-menu:not(.is-fixed) .global-menu-list .experience>a,
  .global-menu:not(.is-fixed) .global-menu-list .inauguration>a,
  .global-menu:not(.is-fixed) .global-menu-list .start>a {
    position: relative;
    background-image: none;
    color: initial;
    transform: initial;
    width: initial;
    height: initial;
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  top: -50px;
  width: 100%;
  height: 800px;
  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 .main-visual-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('../images/main_visual_pc.jpg') center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .main-visual {
    top: -100px;
    height: 485px;
  }

  .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 .main-visual-bg {
    position: static;
    width: 100%;
    height: 100%;
    background: url('../images/main_visual_sp.jpg') center;
    background-size: cover;
  }
}

.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: #006637;
  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: #006637;
  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;
}

/* 北海道農業公社WEBサイト */
/* .site-link {
  width: auto;
  height: 100%;
  background-color: #29798C;
  border-radius: 12px 0 0 12px;
  margin-right: -1rem;
}

.site-link a {
  color: #fff;
  font-weight: bold;
  padding: 0.4rem 1rem;
}

.site-link a:hover {
  text-decoration: none;
  color: #87c2d0;
} */

/* アニメーション*/
.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: 1200px) {
  .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-image {
    width: 100%;
    padding: 2rem 0 1rem 0;
  }

  .modal-content .modal-banner img {
    width: 100%;
    width: auto;
  }
}

/* 新規就農・農業体験相談 */
#shuno {
  position: relative;
  /* height: 550px; */
  top: -8rem;
  z-index: 1;
  background-color: #E6F0E5;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 3rem;
}

#shuno .shuno-title {
  text-align: center;
  color: #2A861A;
  padding: 4rem 0 2rem 0;
  position: relative;
}

#shuno .shuno-title::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url(/common/ninaite/images/icon_top_01.png);
}

#shuno-sodan {
  background-color: #fff;
  width: 1000px;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  z-index: 10;
}

#shuno-sodan div {
  padding-bottom: 1rem;
}

#shuno-sodan .blue-bg {
  display: inline-block;
  padding: 2rem 0;
  background-color: #1576B3;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

#shuno-sodan .green-bg {
  display: inline-block;
  padding: 2rem 0;
  background-color: #309F48;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

#shuno-sodan .magenta-bg {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  margin-right: 0.5rem;
  background-color: #9E4B95;
  color: #fff;
  width: 100px;
  border-radius: 12px;
  text-align: center;
  vertical-align: middle;
}

#shuno-sodan .purple-bg {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  margin-right: 0.5rem;
  background-color: #6D49A1;
  color: #fff;
  width: 100px;
  border-radius: 12px;
  text-align: center;
  vertical-align: middle;
}

#shuno .button {
  background-color: #006637;
  color: #fff;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0;
  transition: background-color 0.4s ease;
}

#shuno .button:hover {
  background-color: #34BB7D;
  transition: background-color 0.4s ease;
}

#shuno ul .button {
  background-color: #006637;
  color: #fff;
  border-radius: 12px;
  width: 300px;
  text-align: center;
}

#shuno a {
  display: inline-flex;
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem 0.5rem 3rem;
  margin: 0 auto;
}

#shuno a::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#shuno .entry a::before {
  left: 0px;
  top: 47%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url(/common/ninaite/images/icon_application_white.png);
}

#shuno .tell a::before {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background-image: url(/common/ninaite/images/icon_contact_white.png);
}

#shuno .mail a::before {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background-image: url(/common/ninaite/images/icon_mail_white.png);
}


#shuno .yellow-under {
  background: linear-gradient(transparent 60%, rgb(255, 255, 0) 50%);
}

#shuno-other {
  padding-top: 23rem;
}

#shuno-other ul {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

#shuno-other li {
  margin: initial !important;
}

#shuno-other li:first-child {
  margin-right: 2rem !important;
}

#shuno-other p {
  color: #428365;
}

#shuno-other p:last-child {
  font-size: 80%;
}

@media screen and (max-width: 1200px) {
  #shuno {
    top: -10rem;
  }

  #shuno .inner {
    padding: 0 1rem;
  }

  #shuno .button {
    width: auto;
    /* padding: 0 1rem; */
    margin: 0 1rem;
  }

  #shuno-sodan {
    width: initial;
    height: auto;
    margin: 0 1rem 1rem 1rem;
    padding-bottom: 1rem;
  }

  #shuno-other ul {
    display: block;
    padding: 0;
  }

  #shuno-other ul .button {
    width: 100%;
    margin: 1rem 0 !important;
  }

  #shuno a.tell::before {
    position: static;
    transform: none;
    margin-bottom: 6px;
  }

  #shuno .entry a::before {
    left: 10px;
    top: 47%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 767px) {
  #shuno-other {
    padding-top: 25rem;
  }
}

/* 北海道で農業をはじめたい方へ */
#hajimetai {
  padding-bottom: 10rem;
  margin-top: -3rem;
}

#hajimetai ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

#hajimetai li {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

#hajimetai li a {
  display: flex;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-size: 120%;
  font-weight: 600;
  text-decoration: none;
  width: calc(1200px / 4 - 10px);
  height: 230px;
  position: relative;
  z-index: 10;
}

#hajimetai li img {
  display: block;
  height: 160px;
  margin: auto;
}

/* hover背景（丸装飾） */
#hajimetai li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s ease-out;
  z-index: 1;
}

#hajimetai li:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

#hajimetai li:nth-of-type(1) {
  background-color: #A1BF69;
}

#hajimetai li:nth-of-type(1)::before {
  background-color: #bddd82;
}

#hajimetai li:nth-of-type(2) {
  background-color: #6FBF68;
}

#hajimetai li:nth-of-type(2)::before {
  background-color: #8cde85;
}

#hajimetai li:nth-of-type(3) {
  background-color: #68BF9D;
}

#hajimetai li:nth-of-type(3)::before {
  background-color: #83d9b7;
}

#hajimetai li:nth-of-type(4) {
  background-color: #73C3C2;
}

#hajimetai li:nth-of-type(4)::before {
  background-color: #83e0df;
}

#hajimetai .hajimetai-title {
  text-align: center;
  color: #2A861A;
  padding-bottom: 3rem;
  position: relative;
}

#hajimetai .hajimetai-title::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url(/common/ninaite/images/icon_top_02.png);
}

@media screen and (max-width: 1200px) {
  .hajimetai-grid ul {
    flex-wrap: wrap;
  }

  .hajimetai-grid ul li {
    flex: 0 0 calc(50% - 10px / 2);
  }

  #hajimetai li::before {
    transition: transform 1.5s ease-out;
  }
}

@media screen and (max-width: 767px) {
  .hajimetai-grid ul li {
    flex: initial;
    width: 100%;
  }

  #hajimetai li a {
    width: 100%;
  }
}

/* トップページ お知らせ */
#top-news-list {
  /* margin: -10rem 0 3rem 0; */
  padding: 0;
  /* background-color: #E8E8E8; */
  padding-bottom: 10rem;
}

#top-news-list .inner {
  max-width: 1200px;
  margin: 0 auto;
}

#top-news-list .news-title {
  text-align: center;
  color: #2A861A;
  padding-bottom: 3rem;
}

#top-news-list .news-grid {
  display: flex;
  gap: 50px;
  position: relative;
}

#top-news-list .news-grid::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url(/common/ninaite/images/icon_top_03.png);
}

#top-news-list ul {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* gap: 5rem; */
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

#top-news-list li {
  /* width: 20rem; */
  padding-bottom: 1rem;
}

#top-news-list li div {
  width: 100%;
  margin: auto 0;
}

#top-news-list li a {
  text-decoration: none;
  color: #000;
}

#top-news-list li a:hover {
  opacity: .8;
}

#top-news-list li a img {
  width: 100%;
  border-radius: 12px;
  transform-origin: center center;
}

#top-news-list li a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

/* #top-news-list li .news-image {
  width: 350px;
  margin-right: 2rem;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
} */

#top-news-list li .date {
  font-size: 90%;
  font-weight: 600;
}

#top-news-list li h1 {
  color: #2D6096FF;
  font-size: 105%;
  text-decoration: underline;
  padding-bottom: 5px;
  border-bottom: solid 1px #D8D8D8;
}

#top-news-list .inline {
  display: inline;
}

@media (max-width: 1200px) {
  /* #top-news-list li .news-image {
    width: 100%;
  } */

  #top-news-list li {
    width: 100%;
    padding-bottom: 1rem;
  }


  #top-news-list li a {
    display: block;
  }

  #top-news-list li a img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 1rem 0;
  }

  #top-news-list .inner {
    padding: 0 0.5rem;
  }

  #top-news-list .news-grid {
    display: block;
  }

  #top-news-list ul {
    display: block;
  }
}

/* 詳細ページ お知らせ */
#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;
  color: #000;
}

#detail-news-list li a:hover {
  opacity: .8;
}

#detail-news-list li .date {
  font-size: 90%;
  font-weight: 600;
}

#detail-news-list li h1 {
  color: #2D6096FF;
  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;
  }
}

#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;
  }
}

@media screen and (max-width: 767px) {
  #banner ul {
    gap: 1rem 0.5rem;
  }

  #banner ul li {
    width: calc((100% - 0.5rem) / 2);
  }
}

/* 動画でわかる！北海道就農支援 */

#video {
  padding-bottom: 2rem;
}

#video .video-title {
  text-align: center;
  color: #2A861A;
  padding-bottom: 3rem;
  position: relative;
}

#video .video-title::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url(/common/ninaite/images/icon_top_04.png);
}

/* カテゴリーリンク */
#category {
  padding-bottom: 5rem;
}

#category ul {
  display: flex;
  gap: 80px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

#category li {
  border-radius: 20px;
}

#category li a {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  font-size: 120%;
  font-weight: 600;
  text-decoration: none;
  width: 500px;
  height: 130px;
  position: relative;
  padding-left: 4rem;
}

#category li a::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#category li:nth-of-type(1) a::before {
  left: 20%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90px;
  height: 90px;
  background-image: url(/common/ninaite/images/icon_shuno_01.png);
}

#category li:nth-of-type(2) a::before {
  left: 20%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90px;
  height: 90px;
  background-image: url(/common/ninaite/images/icon_shuno_02.png);
}

#category li:nth-of-type(1) a {
  color: #D16868;
}

#category li:nth-of-type(2) a {
  color: #6A5B9D;
}

#category li:nth-of-type(1) {
  background-color: #FBE9E9;
  border: solid 5px #D7AEB4;
  transition: background-color 0.4s ease;
}

#category li:nth-of-type(1):hover,
#category li:nth-of-type(2):hover {
  background-color: #fff;
  transition: background-color 0.4s ease;
}

#category li:nth-of-type(2) {
  background-color: #F2E9FA;
  border: solid 5px #B6AED7;
  transition: background-color 0.4s ease;
}

#category .hajimetai-title {
  text-align: center;
  color: #2A861A;
  padding-bottom: 3rem;
}

@media screen and (max-width: 1200px) {
  #category ul {
    display: block;
  }

  #category ul li {
    margin-bottom: 1rem;
  }

  #category li a {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #category li:nth-of-type(1) a::before {
    left: 14%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 65px;
    height: 65px;
  }

  #category li:nth-of-type(2) a::before {
    left: 14%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 65px;
    height: 65px;
  }
}

/* 求人情報 */
#recruit {
  background-color: #E8E8E8;
}

#recruit .recruit-title {
  text-align: center;
  color: #2A861A;
  padding: 2rem 0 1rem 0;
  position: relative;
}

#recruit .recruit-title::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url(/common/ninaite/images/icon_top_05.png);
}

#recruit #recruit-other {
  padding: 1rem 0;
  text-align: center;
}

#recruit #recruit-other a {
  font-size: 90%;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* #slkupide_pic .inner {
  position: relative;
  max-width: 100%;
} */

#pickupSlider {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

#pickupSlider .slick-slide {
  height: auto !important;
  display: flex;
}

#pickupSlider .slide_item {
  box-sizing: border-box;
  margin: 0 10px;
  /* overflow: hidden; */
  border-radius: 12px;
  transition: all 0.4s ease;
}

#pickupSlider .slide_item div {
  width: calc(1200px / 4);
  min-height: 150px;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  font-weight: 600;
}

#pickupSlider .slide_item ul {
  padding-bottom: 0.5rem;
}

#pickupSlider .slide_item .status {
  background-color: #2A861A;
  color: #fff;
  border-radius: 12px;
  display: inline-block;
  padding: 0 1rem
}

#pickupSlider .slide_item span {
  display: block;
}

#pickupSlider .slide_item .date {
  display: block;
  font-size: 90%;
}

#pickupSlider .slide_item a {
  text-decoration: none;
  color: #000;
  display: flex;
}

#pickupSlider .slide_item:hover {
  transform: scale(1.1);
  transition-duration: 0.4s;
}

#pickupSlider .slide_item:hover div {
  transform: scale(1.1);
  transition-duration: 0.4s;
}

#pickupSlider .slide_arrow {
  z-index: 9;
  position: absolute;
  top: calc(50% - 15px);
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 50px;
}

#pickupSlider .next_arrow {
  right: 0;
}

#pickupSlider .prev_arrow {
  left: 0;
}

#pickupSlider .slick-track {
  display: flex;
  margin: 1.2rem 0;
}

@media screen and (max-width: 1200px) {
  #pickupSlider .slide_item span {
    display: block;
    margin: auto;
    width: 100%;
  }

  #pickupSlider .next_arrow {
    right: -6%;
  }

  #pickupSlider .prev_arrow {
    left: -5%;
  }

  #pickupSlider .slide_arrow {
    width: 35px;
  }
}

#slide_pickup {
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 1200px) {
  #slide_pickup {
    position: relative;
    bottom: initial;
    right: 0;
    left: 0;
    width: 90%;
    margin-top: 3rem;
  }

  #slide_pickup div {
    width: 100%;
  }
}

/* contact */
#contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #B6E0AE;
  display: block !important;
  visibility: visible !important;
  padding: 12px 0;
  z-index: 10;
  justify-content: center;
}

#contact.contact_stop {
  position: static;
  width: 100%;
  margin-bottom: 0;
}

#contact .inner {
  max-width: 100vw;
  padding-right: 10px;
}

.contact_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.contact_item {
  margin: 0;
  font-size: clamp(11px, 2vw, 18px);
}

.contact_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px 0 65px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #2A861A;
  font-weight: 700;
  line-height: 1;
  /* white-space: nowrap; */
}

.contact_btn::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact_btn:hover {
  background: #ffffff90;
  color: #F8782C;
  text-decoration: none;
}

.contact_online .contact_btn::before {
  background-image: url("../images/icon_top_01.png");
  width: 35px;
  height: 35px;
}

.contact_mail .contact_btn::before {
  background-image: url("../images/icon_mail.png");
}

.contact_btn:hover img {
  transform: none;
}

.contact_tel .contact_btn {
  padding-left: 55px;
  padding-bottom: 6px;
  align-items: flex-end;
}

.contact_tel_txt {
  font-size: clamp(11px, 2vw, 16px);
  margin-right: 10px;
  color: #000;
}

.contact_tel_num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: #0a7a3a;
  letter-spacing: .02em;
}

.contact_tel_img {
  width: 180px;
  height: auto;
}

.contact_btn:hover {
  opacity: .9;
}

.contact_btn:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 4px;
}

@media screen and (max-width: 1200px) {
  #contact .inner {
    padding: 0 10px;
  }

  .contact_list {
    justify-content: space-between;
    gap: 8px;
  }

  .contact_item {
    flex: 1;
    min-width: 0;
  }

  .contact_btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 60px;
    letter-spacing: -.03rem;
    padding: 5px 0;
  }

  .contact_btn::before {
    position: static;
    transform: none;
    margin-bottom: 6px;
    /* width: 18px !important; */
  }

  .contact_tel_num {
    font-size: 12px;
  }

  .contact_tel .contact_btn::before {
    content: none;
    display: none;
  }

  .contact_tel .contact_btn {
    padding: 12px 3px;
    align-items: center;
  }

  .contact_tel_txt {
    display: block;
    margin: 0 0 6px;
  }

  .contact_tel_num {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
  }
}

/* フッター */
#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:first-of-type {
  max-width: 200px;
}

.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%;
  height: auto;
  padding: 1rem 1rem 1rem 2.5rem;
  border: solid 2px #fff;
  border-radius: 10px;
  color: #2A861A;
  font-weight: bold;
  text-decoration: none;
  background: #fff;
}

.link-area a:hover {
  background: #ffffff90;
  color: #F8782C;
  text-decoration: none;
}

.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: block;
    padding-bottom: 1rem;
  }

  .footer-bottom .inner {
    display: block !important;
  }

  .link-area {
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 1rem;
    width: auto;
  }

  .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: 5px;
      top: 25px;
    }
  }

  .link.recruit {
    &::before {
      width: 40px;
      height: 40px;
      left: 5px;
      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 {
  text-decoration: underline;
  margin-right: .5rem;
  color: #2A861A;
}

.footer_links a:hover {
  text-decoration: underline;
  color: #87c2d0;
}

.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;
  }

  .footer-bottom .inner {
    padding: 0.5rem;
  }

}

.etc {
  font-size: 75%;
}

/* .address {
  margin-bottom: 2rem;
  text-align: left;
  color: #fff;
  font-size: 90%;
} */

.etc {
  margin-bottom: 5rem;
}

.copyright {
  font-size: 75%;
  color: #000;
}

@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_white.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.png') no-repeat center/contain;
}

/* ▼ メディアクエリ（既存に合わせて） */
@media screen and (max-width: 1200px) {
  #page-top {
    right: 10px;
    bottom: 25px;
    bottom: -140px;
  }

  .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;
  }
}

/* PCのみ表示 */
@media screen and (min-width: 1201px) {
  .sp {
    display: none !important;
  }

  .pc {
    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;
  }
}

/* タブ */
#tabsSection {
  margin-bottom: 3rem;
}

#tabsSection ul li::before {
  content: initial !important;
}

.tabs-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tabs-content {
  padding: 2rem 0 0 0;
  margin-bottom: 1rem;
  color: #fff;
  min-height: 390px;
}

/* ニュースリスト */
.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 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;
  }
}

#branch .news-list ul li::before {
  content: none !important;
}