@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*--------color code -------*/
html, body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
}

.w_base_ft {
  max-width: 1200px !important;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Sans JP";
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.hd_bg .hd {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.hd_bg .hd_logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.hd_bg .hd_logo a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hd_bg .hd_logo a.logo {
  padding: 10px;
}
.hd_bg .hd_logo a img {
  width: 190px;
  height: auto;
  transition: all 0.3s ease;
}
.hd_bg .hd_logo a img.hv {
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
}
.hd_bg .hd_logo a .site_title {
  display: block;
  width: 205px;
  margin: 0 0 5px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}
.hd_bg .hd_logo a .site_title.en {
  width: -moz-max-content;
  width: max-content;
  font-size: 11px;
}
.hd_bg .hd_logo a:hover.logo {
  background: #2A8026;
}
.hd_bg .hd_logo a:hover.logo img.nml {
  opacity: 0;
}
.hd_bg .hd_logo a:hover.logo img.hv {
  opacity: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.nav {
  order: 2;
  width: 100%;
  height: 100%;
}
.nav.access {
  position: relative;
  top: 5px;
  order: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.nav.access > a.sns_x {
  position: relative;
  display: flex;
  width: 35px;
  height: 35px;
  padding: 8px;
  background: #fff;
  border: 2px solid #2A8026;
  border-radius: 50vh;
  transition: all 0.3s ease;
  overflow: hidden;
}
.nav.access > a.sns_x img {
  width: 100%;
  height: 100%;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.nav.access > a.sns_x img.hv {
  position: absolute;
  top: 100%;
  left: 8px;
  width: 15px;
  height: 15px;
}
.nav.access > a.sns_x:hover {
  background: #2A8026;
}
.nav.access > a.sns_x:hover img.nml {
  transform: translateY(-150%);
}
.nav.access > a.sns_x:hover img.hv {
  transform: translateY(-150%);
}
.nav.access > a.sns_fb {
  position: relative;
  display: flex;
  width: 35px;
  height: 35px;
  padding: 7px;
  background: #fff;
  border: 2px solid #2A8026;
  border-radius: 50vh;
  transition: all 0.3s ease;
  overflow: hidden;
}
.nav.access > a.sns_fb img {
  width: 17px;
  height: 17px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.nav.access > a.sns_fb img.hv {
  position: absolute;
  top: 105%;
  left: 7px;
  width: 17px;
  height: 17px;
}
.nav.access > a.sns_fb:hover {
  background: #2A8026;
}
.nav.access > a.sns_fb:hover img.nml {
  transform: translateY(-150%);
}
.nav.access > a.sns_fb:hover img.hv {
  transform: translateY(-150%);
}
.nav.access > a.lang, .nav.access a.access {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 5px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border: 2px solid #2A8026;
  border-radius: 20vh;
  transition: all 0.3s ease;
  overflow: hidden;
}
.nav.access > a.lang > span, .nav.access a.access > span {
  display: inline-block;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.nav.access > a.lang::after, .nav.access a.access::after {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  content: attr(data-text);
  display: inline-block;
  width: 100%;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.nav.access > a.lang:hover, .nav.access a.access:hover {
  background: #2A8026;
  color: #fff;
}
.nav.access > a.lang:hover > span, .nav.access a.access:hover > span {
  opacity: 0;
  transform: translateY(-100%);
}
.nav.access > a.lang:hover::after, .nav.access a.access:hover::after {
  opacity: 1;
  transform: translateY(-130%);
}

.nav_list {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.nav_list > li {
  display: inline-block;
  width: 100%;
  height: inherit;
}
.nav_list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: clamp(0.813rem, 0.687rem + 0.26vw, 1rem);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
}
.nav_list > li > a > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.nav_list > li > a::after {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  line-height: 1.1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
}
.nav_list > li > a:hover {
  background: #2A8026;
  color: #fff;
}
.nav_list > li > a:hover > span {
  opacity: 0;
  transform: translateY(-100%);
}
.nav_list > li > a:hover::after {
  opacity: 1;
  transform: translateY(-100%);
}
.nav_list > li.contact_nav a {
  background-color: #2A8026;
  color: #fff;
}

ul.nav_list li:hover ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: Appear 0.3s forwards;
}

.sub-menu {
  position: absolute;
  left: 0;
  z-index: 9999;
  display: none;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100vw;
  padding: 10px 0;
  padding-left: 33vw;
  background-color: #fff45e;
}
.sub-menu > li {
  width: 33vw;
}
.sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sub-menu > li > a:hover {
  background-color: #2A8026;
  color: #fff;
}

.sub-menu li:hover .sub-menu {
  display: block;
  animation: Appear 0.3s forwards;
}

@keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_glist {
  display: none;
  position: absolute;
  transition: 0.3s;
  width: 34vw;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #959595;
}
.nav_glist li {
  width: 34vw;
}
.nav_glist li > a {
  display: block;
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  color: #fff !important;
  text-decoration: none;
}
.nav_glist li > a:hover {
  background-color: #acacac;
}

.li_has_child > a, .active > a {
  position: relative;
}

.active > a {
  background-color: #2A8026;
}
.active > a > span {
  color: #fff !important;
}

.li_has_child > a:hover:before, .active > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff45e;
  border-left: 10px solid transparent;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_wrapper {
  margin-top: auto;
}
.ft_wrapper .ft_innr_con {
  background-color: #e0fee2;
}
.ft_wrapper .ft_innr_con p.ft_subtitle {
  font-size: 1.2em;
  font-weight: bold;
}
.ft_wrapper .ft_innr_con p.ft_address {
  font-size: 0.9em;
}
.ft_wrapper .ft_innr_box {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.ft_wrapper .ft_innr_box img {
  width: 190px;
  height: auto;
}
.ft_wrapper .ft_innr_box .ft_title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.ft_wrapper .ft_innr_box .ft_title p {
  margin: 0 0 -5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 1em;
}
.ft_wrapper .ft_innr_box .ft_title .en_ft {
  width: 45%;
}
.ft_wrapper .ft_innr_box .ft_title address {
  margin: 0 0 -5px 1em;
  font-size: 0.9em;
  font-weight: bold;
}
.ft_wrapper .ft_innr_box .ft_title .en_ft_ad {
  width: 55%;
}
.ft_wrapper .sns_links {
  position: absolute;
  right: 0;
}
.ft_wrapper .sns_links a {
  text-decoration: none;
}
.ft_wrapper .sns_links a img {
  margin-right: 20px;
}
.ft_wrapper .ft_bg_cp {
  background: #2A8026;
  color: #fff;
}
.ft_wrapper .ft {
  padding: 30px 0;
}
.ft_wrapper .ft_copy {
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  position: relative;
  transform: rotate(45deg);
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
}
.pt_btn::before, .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-color: #FFF;
}
.pt_btn::before {
  bottom: 0;
  width: 7px;
}
.pt_btn::after {
  right: 0;
  height: 7px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 20px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #2A8026;
  border-radius: 5px;
  color: #2A8026 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #2A8026;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #2A8026;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}

.index_content {
  padding: 50px 0;
}

.index_slider_bg {
  position: relative;
}
.index_slider_bg .index_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.7294117647);
}
.index_slider_bg .index_title h1 {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: max(21px, 2vw);
  text-align: left;
}
.index_slider_bg .index_title h1 span {
  color: #2A8026;
}
.index_slider_bg .index_title p {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_h1 {
  color: #2A8026;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 4em;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.5s;
}
.index_h1::after {
  content: attr(data-subttl);
  display: block;
  font-size: 0.35em;
  font-weight: 700;
  line-height: 1.3;
}
.index_h1.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.row_rev {
  flex-direction: row-reverse;
}
.row_rev > .index_text a {
  text-align: right;
}

.a_i_center {
  align-items: center;
}

.index_btn {
  display: block;
  margin: auto;
  position: relative;
  background: #fff;
  color: #2A8026;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  border: solid 1px #2A8026;
  border-radius: 50vh;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}

.over_columun {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.over_columun.color {
  background: #e0fee2;
}

.index_con1_bgimg {
  background-image: url(../images/bg-img-1.jpg);
  background-size: cover;
}

.index_con1 {
  color: #fff;
  text-align: center;
}
.index_con1 > h2 {
  font-weight: bold;
  font-size: 2em;
  margin: 20px auto;
  font-size: min(40px, 2.5vw);
}
.index_con1 > h3 {
  font-weight: bold;
  font-size: 1.5em;
  font-family: "Noto Sans JP";
}

.index_con2 {
  position: relative;
}
.index_con2 span {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #e0fee2;
  top: 80px;
}

.index_text h1 {
  position: relative;
  color: #2A8026;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.index_text h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #2A8026;
  bottom: -10px;
}
.index_text h2 {
  font-weight: bold;
  font-size: 2em;
}
.index_text a {
  display: block;
  color: #2A8026;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  transition: 0.3s;
  cursor: pointer;
}
.index_text a:hover {
  transform: translateX(10px);
}

.index_con3_bg {
  background-color: #e0fee2;
}

.index_con3 {
  position: relative;
  padding: 15em 0 7em;
}
.index_con3 span {
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #fff;
  top: 40px;
  z-index: 0;
}
.index_con3 .con3_fig {
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px;
}

h2[class^=h2_num] {
  position: relative;
}
h2[class^=h2_num] > span {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 3em;
  color: #e0fee2;
  position: absolute;
  top: -100px;
  z-index: 0;
  left: 0;
}

.news_category {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 30px;
}
.news_category::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.news_category span {
  font-size: 16px;
}
.news_category select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 30px 10px 20px;
  border: 1px solid #DEDBDB;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 5%;
  margin-bottom: 2rem;
}
.news_list .news_list_item {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.news_list .news_list_item .news_thumb {
  display: block;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.news_list .news_list_item .news_thumb img {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_list .news_list_item .news_title .date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.9em 0;
}
.news_list .news_list_item .news_title .date time {
  display: block;
  color: #2A8026;
  font-size: 0.9rem;
  font-weight: bold;
}
.news_list .news_list_item .news_title .date .cate {
  display: inline-block;
  padding: 3px 5px;
  background: #2A8026;
  color: #fff;
  font-size: 0.9rem;
}
.news_list .news_list_item .news_title .title {
  font-size: 1rem;
  text-decoration: none;
  color: #000;
}
.news_list .news_list_item a {
  text-decoration: none;
}
.news_list .news_list_item a:hover .news_thumb img {
  transform: translate(-50%, -50%) scale(1.2);
}

.index_research_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.index_research_wrap a {
  display: block;
  width: 100%;
  color: #000;
  text-decoration: none;
}
.index_research_wrap a .research_item {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  margin-bottom: 30px;
  border: 1px solid #858585;
  border-radius: 10px;
}
.index_research_wrap a .research_item figure {
  overflow: hidden;
  width: 50%;
}
.index_research_wrap a .research_item figure img {
  width: 100%;
  min-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2.3/1;
  transition: 0.5s;
}
.index_research_wrap a .research_item .research_text_area {
  position: relative;
  width: 50%;
  padding: 1em;
}
.index_research_wrap a .research_item .research_text_area p {
  font-size: 16px;
  margin-bottom: 8px;
}
.index_research_wrap a .research_item .research_text_area p.research_ttl {
  font-size: 20px;
  font-weight: 700;
}
.index_research_wrap a .research_item:hover figure img {
  scale: 1.05;
}

.access_wrap {
  padding-top: 50px;
  background-color: #e0fee2;
}
.access_wrap .access_info_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}
.access_wrap .access_info_box dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 10px;
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.9em;
}
.access_wrap .access_info_box dl dt {
  width: 230px;
  padding: 3px 0;
  background: #fff;
  text-align: center;
  border: solid 1px #000;
}
.access_wrap .access_info_box dl dd {
  width: calc(100% - 240px);
}
.access_wrap .access_img_list_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 30px 0;
  background: #fff;
}
.access_wrap .access_img_list_wrap .access_img_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.access_wrap .access_img_list_wrap .access_img_list .access_img_list_item {
  width: calc((100% - 30px) / 4);
}
.access_wrap .access_img_list_wrap .access_img_list .access_img_list_item a {
  overflow: hidden;
  display: block;
  width: 100%;
}
.access_wrap .access_img_list_wrap .access_img_list .access_img_list_item a img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.access_wrap .access_img_list_wrap .access_img_list .access_img_list_item a:hover img {
  scale: 1.2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_main, .archive_main, .single_main {
  display: flex;
  align-items: center;
  min-height: 290px;
  padding-top: 90px;
  background: url(../images/bg-img-1.jpg);
}
.page_main h1, .archive_main h1, .single_main h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: max(2vw, 50px);
  color: rgba(255, 255, 255, 0.35);
}

.page, .single, #news {
  margin: 50px auto;
}
.page h1, .single h1, #news h1 {
  position: relative;
  color: #2A8026;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 30px;
}
.page h1::before, .single h1::before, #news h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #2A8026;
  bottom: -5px;
}
.page h2, .single h2, #news h2 {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 0.6em;
}
.page h3, .single h3, #news h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.8em;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.page h4, .single h4, #news h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h5, .single h5, #news h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h6, .single h6, #news h6 {
  font-weight: bold;
  margin-bottom: 1em;
}
.page p, .single p, #news p {
  line-height: 2.5rem;
  margin: 1em 0;
}
.page figure img, .single figure img, #news figure img {
  width: 100%;
}
.page .date, .single .date, #news .date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.9em 0;
}
.page .date time, .single .date time, #news .date time {
  display: block;
  color: #2A8026;
  font-size: 1.2rem;
  font-weight: bold;
}
.page .date .cate, .single .date .cate, #news .date .cate {
  display: inline-block;
  padding: 3px 5px;
  background: #2A8026;
  color: #fff;
  font-size: 1.2rem;
}

.photo_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px dotted #999;
}
.photo_box img {
  width: 100%;
  max-width: 230px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** ロードアニメーション
******************************************************************************
----------------------------------------------------------------------------*/
/* アニメーション部分 */
@keyframes ami_1 {
  0% {
    transform: translate(30%, 70%);
    opacity: 0;
  }
  10% {
    transform: translate(30%, 70%);
    opacity: 0;
  }
  60% {
    transform: translate(50%, 70%);
    opacity: 0.8;
  }
  80% {
    transform: translate(50%, 70%);
    opacity: 0.8;
  }
  100% {
    transform: translate(50%, 70%);
    opacity: 0;
  }
}
@keyframes ami_2 {
  0% {
    transform: translate(80%, 10%);
    opacity: 0;
  }
  13% {
    transform: translate(80%, 10%);
    opacity: 0;
  }
  60% {
    transform: translate(70%, 10%);
    opacity: 0.6;
  }
  80% {
    transform: translate(70%, 10%);
    opacity: 0.6;
  }
  100% {
    transform: translate(70%, 10%);
    opacity: 0;
  }
}
@keyframes ami_3 {
  0% {
    transform: translate(10%, 10%);
    opacity: 0;
  }
  19% {
    transform: translate(10%, 10%);
    opacity: 0;
  }
  60% {
    transform: translate(10%, 30%);
    opacity: 0.7;
  }
  80% {
    transform: translate(10%, 30%);
    opacity: 0.7;
  }
  100% {
    transform: translate(10%, 30%);
    opacity: 0;
  }
}
@keyframes ami_4 {
  0% {
    transform: translate(30%, 30%);
    opacity: 0;
  }
  16% {
    transform: translate(30%, 30%);
    opacity: 0;
  }
  60% {
    transform: translate(30%, 20%);
    opacity: 0.8;
  }
  80% {
    transform: translate(30%, 20%);
    opacity: 0.8;
  }
  100% {
    transform: translate(30%, 20%);
    opacity: 0;
  }
}
@keyframes ami_5 {
  0% {
    transform: translate(35%, 40%);
    font-size: 5vw;
    opacity: 0;
  }
  40% {
    transform: translate(35%, 40%);
    font-size: 5vw;
    opacity: 0;
  }
  60% {
    transform: translate(30%, 40%);
    font-size: 7vw;
    opacity: 1;
  }
  80% {
    transform: translate(30%, 40%);
    font-size: 7vw;
    opacity: 1;
  }
  100% {
    transform: translate(30%, 40%);
    font-size: 7vw;
    opacity: 0;
  }
}
@keyframes ami_6 {
  0% {
    transform: translate(20%, 75%);
    opacity: 0;
  }
  21% {
    transform: translate(20%, 75%);
    opacity: 0;
  }
  60% {
    transform: translate(20%, 80%);
    opacity: 0.6;
  }
  80% {
    transform: translate(20%, 80%);
    opacity: 0.6;
  }
  100% {
    transform: translate(20%, 80%);
    opacity: 0;
  }
}
@keyframes ami_7 {
  0% {
    transform: translate(15%, 5%);
    opacity: 0;
  }
  24% {
    transform: translate(15%, 5%);
    opacity: 0;
  }
  60% {
    transform: translate(5%, 5%);
    opacity: 0.6;
  }
  80% {
    transform: translate(5%, 5%);
    opacity: 0.6;
  }
  100% {
    transform: translate(5%, 5%);
    opacity: 0;
  }
}
@keyframes ami_8 {
  0% {
    transform: translate(55%, 15%);
    opacity: 0;
  }
  27% {
    transform: translate(55%, 15%);
    opacity: 0;
  }
  60% {
    transform: translate(60%, 15%);
    opacity: 0.6;
  }
  80% {
    transform: translate(60%, 15%);
    opacity: 0.6;
  }
  100% {
    transform: translate(60%, 15%);
    opacity: 0;
  }
}
@keyframes ami_9 {
  0% {
    transform: translate(40%, 70%);
    opacity: 0;
  }
  30% {
    transform: translate(40%, 70%);
    opacity: 0;
  }
  60% {
    transform: translate(40%, 65%);
    opacity: 0.6;
  }
  80% {
    transform: translate(40%, 65%);
    opacity: 0.6;
  }
  100% {
    transform: translate(40%, 65%);
    opacity: 0;
  }
}
#loading {
  position: absolute;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
}
#loading p {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.7);
}
#loading .ami_1 {
  font-size: 7vw;
  font-weight: 700;
  animation: ami_1 7s ease-in-out forwards;
}
#loading .ami_2 {
  font-size: 18vw;
  writing-mode: vertical-lr;
  font-weight: 700;
  animation: ami_2 7s ease-in-out forwards;
}
#loading .ami_3 {
  font-size: 5vw;
  writing-mode: vertical-lr;
  font-weight: 700;
  animation: ami_3 7s ease-in-out forwards;
}
#loading .ami_4 {
  font-size: 3vw;
  font-weight: 700;
  animation: ami_4 7s ease-in-out forwards;
}
#loading .ami_5 {
  font-size: 5vw;
  font-weight: 700;
  animation: ami_5 7s ease-in-out forwards;
}
#loading .ami_6 {
  font-size: 5vw;
  font-weight: 700;
  animation: ami_6 7s ease-in-out forwards;
}
#loading .ami_7 {
  font-size: 5vw;
  font-weight: 700;
  animation: ami_7 7s ease-in-out forwards;
}
#loading .ami_8 {
  font-size: 3.5vw;
  writing-mode: vertical-lr;
  font-weight: 700;
  animation: ami_8 7s ease-in-out forwards;
}
#loading .ami_9 {
  font-size: 5vw;
  writing-mode: vertical-lr;
  font-weight: 700;
  animation: ami_9 7s ease-in-out forwards;
}

@keyframes ami_f_load {
  0% {
    display: block;
  }
  95% {
    display: block;
  }
  100% {
    display: none;
  }
}
@keyframes ami_f_title {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#loading {
  animation: ami_f_load 8s forwards;
}

.index_title {
  animation: ami_f_title 8s ease-in-out forwards;
}/*# sourceMappingURL=style.css.map */