@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #373737;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a.tel {
  pointer-events: none;
  cursor: default;
}

a.hover_line,
.hover_line a,
a.hover_line,
a .hover_line {
  background: linear-gradient(#373737,#373737) left bottom no-repeat;
  background-size: 0 1px;
  transition: background-size .5s ease;
}

a.hover_line:hover,
.hover_line a:hover,
a:hover .hover_line {
  background-size: 100% 1px;
}

.hover_opacity:hover {
  opacity: .7;
}

.hover_scale img {
  transition: transform .5s ease;
}

.hover_scale:hover img {
  transform: scale(1.1);
}

.hover_arrow .icon_arrow {
  width: 52px;
  height: 25px;
  border: 1px solid #DBDBDB;
  border-radius: 13px;
  background: #fff;
  display: block;
  overflow: hidden;
  position: relative;
}

.hover_arrow .icon_arrow:before,
.hover_arrow .icon_arrow:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(/corporate/images/common/icon_arrow.svg) center center no-repeat;
  background-size: 18px auto;
  z-index: 2;
  content: '';
  transition: transform .3s ease;
}

.hover_arrow .icon_arrow:before {
  right: 100%;
}

.hover_arrow .icon_arrow:after {
  right: 0;
}

.hover_arrow:hover .icon_arrow:before,
.hover_arrow:hover .icon_arrow:after {
  transform: translateX(100%);
}

.sp {
  display: none !important;
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}

.no_move .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#AllBox {
  width: 100%;
  word-break: break-word;
  padding-top: 90px;
}

.anchor_wrap {
  position: relative;
}

.anchor_wrap .anchor {
  position: absolute;
  z-index: -1;
  top: -90px;
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
}

header .header_inner {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 100px;
}

header .header_inner .logo {
  font-size: 1px;
  line-height: 1;
}

header .header_inner .logo a {
  display: block;
  font-size: 1px;
  line-height: 1;
  width: 188px;
}

header .header_inner .logo a img {
  width: 100%;
}

header .g-navi {
  display: flex;
  align-items: center;
  gap: 32px;
}

header .g-navi > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

header .g-navi > ul > li > a {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .08em;
  font-weight: 600;
  display: block;
  position: relative;
  color: #373737;
}

header .g-navi > ul > li.has-child > a {
  padding-right: 15px;
  background: url(/corporate/images/common/icon_down.svg) right center no-repeat;
  background-size: 8px auto;
}

header .g-navi > ul > li > a[target="_blank"] {
  padding-right: 17px;
  background: url(/corporate/images/common/icon_blank.svg) right center no-repeat;
  background-size: 10px auto;
}

header .g-navi .g-navi_submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}

header .g-navi .g-navi_submenu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

header .g-navi .g-navi_submenu .submenu_wrap {
  width: 100%;
  background: #F4F2EC;
  padding: 42px 0;
  color: #373737;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

header .g-navi .g-navi_submenu .submenu_title {
  width: 475px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

header .g-navi .g-navi_submenu .submenu_title .submenu_title_jap {
  font-size: 30px;
  line-height: 1.2125;
  font-weight: 600;
  letter-spacing: .12em;
  display: block;
}

header .g-navi .g-navi_submenu .submenu_title .submenu_title_eng {
  font-size: 13px;
  line-height: 1.423;  
  font-weight: 600;
  display: block;
  margin-top: 5px;
}

header .g-navi .g-navi_submenu .submenu_links {
  margin-top: 60px;
}

header .g-navi .g-navi_submenu .submenu_links .txt_links {
  gap: 36px;
}

header .g-navi .g-navi_submenu .submenu_body {
  width: calc(100% - 475px);
  padding: 4px 168px;
  border-left: 1px solid #D9D7D0;
}

header .g-navi .g-navi_submenu .submenu_list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0 90px;
}

header .g-navi .g-navi_submenu .submenu_list a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 4.2;
  display: block;
  color: #373737;
  display: block;
  width: 100%;
}

header .g-navi .g-navi_links a {
  width: 145px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B39253;
  border-radius: 17px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .05em;
  color: #fff;
}

header #menu-toggle {
  display: none;
}

@media (max-width: 1299px) {
  header .g-navi .g-navi_submenu .submenu_title {
    width: 375px;
  }

  header .g-navi .g-navi_submenu .submenu_body {
    padding: 4px 50px;
    width: calc(100% - 375px);
  }

  header .g-navi .g-navi_submenu .submenu_list {
    gap: 0 45px;
  }
}

@media (max-width: 899px) {
  header .g-navi .g-navi_submenu .submenu_title {
    width: 275px;
  }

  header .g-navi .g-navi_submenu .submenu_body {
    width: calc(100% - 275px);
  }
}


@media (max-width: 1079px) {
  header .header_inner {
    padding: 0 20px;
  }

  header .g-navi {
    gap: 15px;
  }

  header .g-navi > ul {
    gap: 14px;
  }

  header .g-navi > ul > li > a {
    font-size: 13px;
  }

  header .g-navi .g-navi_links a {
    font-size: 13px;
    width: 120px;
    height: 28px;
  }
}

@media (max-width: 899px) {
  header .header_inner .logo a {
    width: 158px;
  }
}

@media (max-width: 899px) {
  header .g-navi > ul {
    gap: 10px;
  }
}

/* footer
==================================*/
footer {
  background: #878684;
  width: 100%;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  position: relative;
}

footer .hover_line a  {
  background: linear-gradient(#fff,#fff) left bottom no-repeat;
  background-size: 0 1px;
  transition: background-size .5s ease;
}

footer .hover_line a:hover {
  background-size: 100% 1px;
}

footer .footer_inner {
  padding: 90px 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .footer_nav {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

footer .footer_nav .footer_nav_item > li,
footer .footer_nav a {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: #fff;
}

footer .footer_nav .footer_nav_item > li + li {
  margin-top: 28px;
}

footer .footer_nav .footer_nav_submenu {
  margin-top: 20px;
}

footer .footer_nav .footer_nav_submenu li,
footer .footer_nav .footer_nav_submenu a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: #fff;
}
footer .footer_nav a[target="_blank"] {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

footer .footer_nav a[target="_blank"]:after {
  width: 10px;
  height: 9px;
  background: url(/corporate/images/common/icon_blank.svg) right center no-repeat;
  background-size: 10px auto;
  content: '';
}

footer .footer_nav .footer_nav_submenu li {
  padding-left: 34px;
}

footer .footer_nav .footer_nav_submenu li + li {
  margin-top: 15px;
}

footer .footer_nav .footer_nav_submenu a {
  display: inline-block;
  position: relative;
}

footer .footer_nav .footer_nav_submenu a:before {
  width: 4px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -14px;
  top: 9px;
  z-index: 2;
  content: '';
}

footer .footer_info .footer_logo {
  font-size: 1px;
  line-height: 1;
  width: 222px;
  margin-bottom: 27px;
}

footer .footer_info p {
  font-size: 15px;
  letter-spacing: .08em;
  line-height: 2;
}

footer .footer_info .footer_links {
  line-height: 1.5;
  margin-top: 72px;
}

footer .footer_info .footer_links a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

footer .footer_info .footer_links a:after {
  width: 12px;
  height: 10px;
  content: '';
  background: url(/corporate/images/common/icon_arrow_w.svg) right center no-repeat;
  background-size: 100% auto;
}

footer .footer_info .footer_sns {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 30px;
}

footer .footer_info .footer_sns li {
  font-size: 1px;
  line-height: 1;
  width: 23px;
}

footer .footer_info .footer_sns li img {
  width: 100%;
}

footer .footer_info .footer_copy {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 18px;
  color: #fff;
  opacity: .65;
}

@media (max-width: 959px) {
  footer .footer_nav {
    gap: 60px;
  }
}

@media (max-width: 859px) {
  footer .footer_nav {
    gap: 30px;
  }
}

/*================================
  pageTop
=================================*/
#pageTop {
  opacity: 1;
  position: absolute;
  right: 22px;
  top: 36px;
  z-index: 888;
}

#pageTop a {
  display: block;
  width: 15px;
}

#pageTop a img {
  width: 100%;
}

/* MV
==================================*/
.main_visual img {
  width: 100%;
}


/* teaser
==================================*/
.teaser {

}

.teaser .teaser_inner {
  border-bottom: 1px solid #E8E8E8;
  padding: 139px 0 135px
}

.teaser .page_title .page_title_jap {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.078;
  letter-spacing: .05em;
  display: block;
  padding:0 0 20px 0;
}

.teaser .page_title .page_title_eng {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4375;
  display: block;
}

/*==================================
  Breadcrumb
==================================*/

.breadcrumb {
  width: 100%;
  padding: 45px 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.breadcrumb ul {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.breadcrumb ul li {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
  color: #373737;
  display: inline;
}

.breadcrumb ul li + li:before {
  content: '';
  z-index: 2;
  width: 28px;
  height: 18px;
  text-align: center;
  display: inline-block;
  text-indent: 0;
  color: #fff;
  background: url(/corporate/images/common/icon_breadcrumb.svg) center center no-repeat;
  background-size: 5px auto;
  position: absolute;
  left: 0;
  top: 0;
}

.breadcrumb ul li + li {
  padding-left: 28px;
}

.breadcrumb ul li a{
  text-indent: 0;
  color: #D4D4D4;
}

.breadcrumb ul.hover_line a  {
  background: linear-gradient(#D4D4D4,#D4D4D4) left bottom no-repeat;
  background-size: 0 1px;
  transition: background-size .5s ease;
}

.breadcrumb ul.hover_line a:hover {
  background-size: 100% 1px;
}

/* heading
==================================*/
.heading_large {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 55px;
}

.heading_large .heading_large_jap {
  font-size: 38px;
  line-height: 1.218;
  font-weight: 600;
  letter-spacing: .12em;
}

.heading_large .heading_large_eng {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  /* padding-bottom: 10px; */
}

.heading_large.is_column {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.heading_large.is_column .heading_large_jap {
  padding: 0;
}

.heading_medium {}

.heading_small {}

/* links
==================================*/
.txt_links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .12em;
  font-weight: 600;
}

.btn_links {
  border: 1px solid #DBDBDB;
  background: #fff;
  width: 100%;
  height: 65px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .12em;
  border-radius: 34px;
}

.btn_links.is_pdf:before {
  width: 21px;
  height: 26px;
  content: '';
  background: url(/corporate/images/common/icon_pdf.svg) center center no-repeat;
  background-size: 100% 100%;
}

.btn_links.is_movie:before {
  width: 21px;
  height: 26px;
  content: '';
  background: url(/corporate/images/common/icon_movie.svg) center center no-repeat;
  background-size: 100% 100%;
}

.btn_links.is_word:before {
  width: 21px;
  height: 26px;
  content: '';
  background: url(/corporate/images/common/icon_word.svg) center center no-repeat;
  background-size: 100% 100%;
}

.btn_links.is_ai:before {
  width: 21px;
  height: 26px;
  content: '';
  background: url(/corporate/images/common/icon_ai.svg) center center no-repeat;
  background-size: 100% 100%;
}

.btn_links.is_excel:before {
  width: 21px;
  height: 26px;
  content: '';
  background: url(/corporate/images/common/icon_excel.svg) center center no-repeat;
  background-size: 100% 100%;
}

.btn_links.is_mail:before {
  width: 25px;
  height: 16px;
  content: '';
  background: url(/corporate/images/common/icon_mail.svg) center center no-repeat;
  background-size: 100% 100%;
}

.btn_links.is_download:before {
  width: 20px;
  height: 17px;
  content: '';
  background: url(/corporate/images/common/icon_download.svg) center center no-repeat;
  background-size: 100% 100%;
}

/*================================
	.test-container
=================================*/
.test-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px 0;
}
.test-container .box {
  width: 200px;
  height: 200px;
  background-color: red;
}
.test-container .box .text {
  font-size: 16px;
  color: #fff;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  /*max-width: 1400px;*/
  margin-left: auto;
  margin-right: auto;
  padding-left: 45px;
  padding-right: 45px;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .container {
    padding: 0 30px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
  リスト系
==================================*/

.news_ul {
}

.news_ul .news_li {
  border-bottom: 1px solid #E8E8E8;
}

.news_ul .news_li > a {
  display: flex;
  align-items: center;
  padding-right: 100px;
  position: relative;
  padding: 41px 100px 41px 13px;
}

.news_ul .news_li > a .icon_arrow {
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.news_ul .news_li > a .date {
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1.82;
  font-weight: 400;
  min-width: 150px;
  padding-left: 6px;
}

.news_ul .news_li > a .title span {
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1.5;
  font-weight: 400;
  background: linear-gradient(#373737, #373737) 0 100%/0 1px no-repeat;
  transition: background 0.4s ease;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.news_ul .news_li > a:hover .title span {
  background-size: 100% 1px;
}


/*==================================
  ページナビ
==================================*/
.page_navigation .wp-pagenavi .nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 85px 0 0;
}

.page_navigation .wp-pagenavi .page-numbers {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  width: 30px;
  height: 24px;
  color: #373737;
  margin: 0 7px;
}

.page_navigation .wp-pagenavi .page-numbers.dots {
  pointer-events: none;
  margin: 0;
}

.page_navigation .wp-pagenavi .link_before,
.page_navigation .wp-pagenavi .link_next {
  min-width: 30px;
  height: 24px;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

.page_navigation .wp-pagenavi .link_before {
  margin-right: 52px;
  background: url(/corporate/images/common/icon_arrow.svg) center center no-repeat;
  background-size: 14px auto;
  transform: scale(-1);
}

.page_navigation .wp-pagenavi .link_next {
  margin-left: 52px;
  background: url(/corporate/images/common/icon_arrow.svg) center center no-repeat;
  background-size: 14px auto;
}

.page_navigation .wp-pagenavi .link_before:hover,
.page_navigation .wp-pagenavi .link_next:hover {
  opacity: .7;
}

.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current,
.page_navigation .wp-pagenavi .page-numbers a:hover {
  color: #D4D4D4;
}

.page_navigation .wp-pagenavi span.current_page {
  color: #D4D4D4;
}

.page_navigation .wp-pagenavi .first,
.page_navigation .wp-pagenavi .last {
  display: none;
}

.pager_wrap {
  width: 100%;
  margin-top: 125px;
  border-top: 1px solid #E8E8E8;
  padding-top: 65px;
}
.pager_wrap ul {
  position: relative;
  display: flex;
  justify-content: center;
}

.pager_wrap ul .list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  color: #373737;
  letter-spacing: 0.12em;
  border: 1px solid #DBDBDB;
  height: 55px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin: auto;
  background: #fff;
  transition: all .3s;
}

.pager_wrap ul .list a:hover {
  background: #373737;
  color: #fff;
}

.pager_wrap ul .prev, 
.pager_wrap ul .next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.pager_wrap ul .prev {
  left: 0;
}

.pager_wrap ul .next {
  right: 0;
}

.pager_wrap ul .prev a, 
.pager_wrap ul .next a {
  width: 55px;
  height: 55px;
  display: block;
  border: 0;
  background: url(/corporate/images/common/icon_arrow.svg) right center no-repeat;
  background-size: 18px auto;
  transition: opacity .3s;
}

.pager_wrap ul .prev a {
  transform: scaleX(-1);
}

.pager_wrap ul .prev a:hover,
.pager_wrap ul .next a:hover {
  opacity: 0.7;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}

main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input::placeholder,
main#Contact textarea::placeholder {
  color: #D3D3D3;
}
main#Contact input:-ms-input-placeholder,
main#Contact textarea:-ms-input-placeholder {
  color: #D3D3D3;
}
main#Contact input::-webkit-input-placeholder,
main#Contact textarea::-webkit-input-placeholder {
  color: #D3D3D3;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
main#Contact {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}
@keyframes onAutoFillStart {}
main#Contact span.error {
  color: #f00;
  display: block;
  margin: 10px 0 0;
}
main#Contact input:-webkit-autofill {
  animation-name: onAutoFillStart;
  background: rgb(255, 255, 255) !important;
  transition: background-color 50000s ease-in-out 0s;
}
main#Contact input[type=text]:focus,
main#Contact input[type=email]:focus,
main#Contact input[type=tel]:focus,
main#Contact input[type=search]:focus,
main#Contact input[type=url]:focus,
main#Contact textarea:focus {
  color: #373737;
}
main#Contact .ERR {
  color: #f00;
}
main#Contact input[type=text] {
  color: #373737;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 0 22px;
  background: #fff;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  border: 1px solid #D9D9D9;
}
main#Contact input[type=text].zip {
  max-width: 245px;
  width: 100%;
}
main#Contact .zip-wrap {
  display: inline-block;
  position: relative;
  max-width: 245px;
  width: 100%;
  margin-bottom: 12px;
}
main#Contact .zip-wrap::before {
  content: "〒";
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4375;
  color: #373737;
  position: absolute;
  top: 18px;
  left: 22px;
  margin: auto;
}
main#Contact .zip-wrap input {
  padding-left: 55px;
  width: 100%;
}

main#Contact .select-box select {
  max-width: 400px;
  color: #373737;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 0 60px 0 22px;
  background: url(/corporate/images/common/icon_down_black.svg) right 24px center no-repeat #fff;
  background-size: 12px auto;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  border: 1px solid #D9D9D9;
}
 
main#Contact input[type=checkbox] + label {
  padding-left: 50px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
main#Contact input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: url(/corporate/images/common/icon_checkbox_no.svg) center center no-repeat;
  background-size: 100% 100%;
}
main#Contact input[type=checkbox] + label::after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: url(/corporate/images/common/icon_checkbox_on.svg) center center no-repeat;
  background-size: 100% 100%;
}
main#Contact input[type=checkbox]:checked + label::after {
  opacity: 1;
}
main#Contact textarea {
  color: #373737;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 22px;
  background: #fff;
  width: 100%;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  border: 1px solid #D9D9D9;
  min-height: 200px;
}

main#Contact .submit_area {
  margin-top: 55px;
  text-align: center;
}

main#Contact .submit_area span input[type=submit] {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  width: 100%;
  height: 70px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #B39253;
  background: url(/corporate/images/common/icon_arrow_w.svg) right 42px center no-repeat #B39253;
  background-size: 18px auto;
  transition: all .3s;
  border-radius: 35px;
}

main#Contact .submit_area span:hover input[type=submit] {
  background-image: url(/corporate/images/common/icon_arrow_b.svg);
  background-color: #fff;
  color: #B39253;
}


main#Contact .submit_area .koumoku {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
}

main#Contact .submit_area .koumoku li {
  width: 100%;
}

main#Contact .send input[type=submit] {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  width: 100%;
  height: 70px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #B39253;
  background: url(/corporate/images/common/icon_arrow_w.svg) right 21px center no-repeat #B39253;
  background-size: 18px auto;
  transition: all .3s;
  border-radius: 35px;
}

main#Contact .send:hover input[type=submit] {
  background-image: url(/corporate/images/common/icon_arrow_b.svg);
  background-color: #fff;
  color: #B39253;
}

main#Contact .btn_back input {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #373737;
  width: 100%;
  height: 70px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #373737;
  background: url(/corporate/images/common/icon_arrow_left.svg) 21px center no-repeat #fff;
  background-size: 18px auto;
  transition: all .3s;
  border-radius: 35px;
}

main#Contact .btn_back:hover input[type=submit] {
  background-image: url(/corporate/images/common/icon_arrow_left_w.svg);
  background-color: #373737;
  color: #fff;
}


main#Contact .contact_back {
  margin-top: 55px;
  text-align: center;
}

main#Contact .contact_back a {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  width: 100%;
  height: 70px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #B39253;
  background: url(/corporate/images/common/icon_arrow_w.svg) right 42px center no-repeat #B39253;
  background-size: 18px auto;
  transition: all .3s;
  border-radius: 35px;
  max-width: 400px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

main#Contact .contact_back a:hover {
  background-image: url(/corporate/images/common/icon_arrow_b.svg);
  background-color: #fff;
  color: #B39253;
}


/*==========================================
  Layout
==========================================*/

/*==================================
  Contact
==================================*/

main#Contact .form_sec {
  padding: 140px 0;
}

main#Contact .form_wrap {
  display: grid;
  grid-template-columns: 59.54% 30.54%;
  justify-content: space-between;
}

main#Contact .form_wrap .form_wrap_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main#Contact .form_button {
  position: relative;
  z-index: 2;
}

main#Contact .agree_area {
  font-size: 15px;
  line-height: 1.667;
  color: #373737;
  letter-spacing: .08em;
  font-weight: 600;
  position: relative;
}

main#Contact .agree_area input[type=checkbox] {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}

main#Contact .agree_area label {
  padding-top: 5px;
  padding-bottom: 5px;
}

main#Contact .agree_area a {
  color: #373737;
  background: linear-gradient(#060531,#060531) right bottom no-repeat;
  background-size: 100% 1px;
  transition: background-size .5s ease;
}

main#Contact .agree_area a:hover {
  background-size: 0 1px;
}

main#Contact .need {
  color: #FF0000;
  font-size: 18px;
  line-height: 1;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-feature-settings: "palt";
}
main#Contact table {
  display: block;
}
main#Contact table tbody {
  display: block;
}
main#Contact table tr {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

main#Contact table tr:last-child {
  margin-bottom: 0;
}

main#Contact table tr th {
  min-width: 170px;
  font-size: 16px;
  line-height: 1.5;
  color: #373737;
  font-weight: 600;
  display: block;
  text-align: left;
  padding: 18px 0;
}
main#Contact table tr td {
  flex-grow: 1;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #373737;
  font-weight: 400;
  text-align: left;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

main#Contact .address span.error {
  margin: 0 0 10px;
}

main#Contact.sfm2 td p {
  overflow-wrap: break-word;
}

main#Contact .form_info {
  padding-bottom: 180px;
  position: sticky;
  top: 100px;
  z-index: 1;
}

main#Contact .form_info p {
  font-size: 15px;
  line-height: 2.5;
  font-weight: 400;
  letter-spacing: .08em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

main#Contact.sfm2 table tr th {
  padding: 0;
}

main#Contact .send_comp {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

main#Contact .send_comp .form_info {
  top: 0;
  position: relative;
  padding-bottom: 0;
  text-align: center;
}

@media (max-width: 1079px) {
  main#Contact .form_wrap {
    grid-template-columns: 59.54% 34%;
  }
}

@media (max-width: 959px) {
  main#Contact .form_wrap {
    grid-template-columns: 52% 45%;
  }

  main#Contact table tr {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }

  main#Contact table tr th {
    padding: 0;
    width: 100%;
  }

  main#Contact table tr td {
    width: 100%;
  }

}


/*==================================
  お知らせ
==================================*/
.news_wrap {
  padding: 98px 0 94px;
}

.news_detail {
  padding: 110px 0 130px;
}

.news_head h2 {
  font-size: 32px;
  line-height: 1.325;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 66px;
}

.news_head .news_head_title {
  border-bottom: 1px solid #E8E8E8;
  padding: 0 0 57px;
  margin-bottom: 62px;
}

.news_head .news_head_title .date {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.news_head .news_head_title .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.news_body,
.news_body p {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.news_body a {
  text-decoration: underline;
}


/*==================================
  財団について
==================================*/

.about_wrap {
  padding: 98px 0 94px;
}

.about_links_list li {
  border-bottom: 1px solid #E8E8E8;
}

.about_links_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 100px;
  position: relative;
  padding: 41px 100px 41px 13px;
}

.about_links_list li a .icon_arrow {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.about_links_list li a .jap {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .08em;
}

.about_links_list li a .eng {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #987430;
  letter-spacing: .03em;
}

.about_menu {
  padding-bottom: 60px;
}

.about_menu .about_menu_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 50px;
}

.about_menu .about_menu_list a {
  border-bottom: 1px solid #E3E3E3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 24px 3px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.5;
}

.about_menu .about_menu_list a.here {
  opacity: .5;
  pointer-events: none;
}

.about_menu .about_menu_list .hover_arrow .icon_arrow {
  width: 42px;
  height: 20px;
}

.about_menu .about_menu_list .hover_arrow .icon_arrow:before,
.about_menu .about_menu_list .hover_arrow .icon_arrow:after {
  background-size: 14px auto;
}

@media (max-width: 1023px) {
  .about_menu .about_menu_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section_box .section_head {
  width: 400px;
}

.section_box .section_head h2 {
  font-size: 22px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: .12em;
}

.section_box .section_body {
  width: calc(100% - 420px);
  padding-top: 5px;
}

@media (max-width: 1023px) {
  .section_box .section_head {
    width: 300px;
  }

  .section_box .section_body {
    width: calc(100% - 320px);
  }
}

@media (max-width: 899px) {
  .section_box .section_head {
    width: 220px;
  }

  .section_box .section_body {
    width: calc(100% - 240px);
  }
}


/*==================================
  アクセス
==================================*/
.access_wrap {
  padding: 130px 0 205px;
}

.access_wrap .section_body {
  width: calc(100% - 420px);
  padding-top: 5px;
}

.access_wrap .section_body p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .08em;
}

.access_wrap .section_body picture {
  display: block;
  padding: 0;
  margin: 0;
  margin-top: 97px;
}

.access_wrap .section_body img {
  width: 100%;
}


/*==================================
  情報公開資料
==================================*/
.disclosure_wrap {
  padding: 140px 0 130px;
}

.disclosure_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.disclosure_box .disclosure_head {
  width: 380px;
  padding-top: 5px;
}

.disclosure_box .disclosure_head h2 {
  font-size: 22px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: .12em;
}

.disclosure_box .disclosure_body {
  width: calc(100% - 400px);
}

.disclosure_section {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.disclosure_section + .disclosure_section {
  margin-top: 66px;
}

.disclosure_section .disclosure_item + .disclosure_item {
  border-top: 1px solid #E8E8E8;
}

.disclosure_heading {
  cursor: pointer;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding: 31px 100px 31px 14px;
  letter-spacing: .12em;
}

.disclosure_heading .icon_toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #DBDBDB;
  background: #fff;
  overflow: hidden;
}

.disclosure_heading .icon_toggle:before,
.disclosure_heading .icon_toggle:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  content: '';
  background: #373737;
  width: 12px;
  height: 1px;
}

.disclosure_heading .icon_toggle:after {
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .3s;
}

.disclosure_heading.is-active .icon_toggle:after {
  transform: translate(-50%,-50%);
}

.disclosure_list .disclosure_list_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 19px 14px;
  gap: 20px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.disclosure_list .disclosure_list_item + .disclosure_list_item {
  border-top: 1px solid #E8E8E8;
}

.disclosure_list .disclosure_list_item dt {
  width: calc(100% - 220px);
  font-size: 15px;
  line-height: 1.74;
  letter-spacing: .08em;
  font-weight: 400;
}

.disclosure_list .disclosure_list_item dd {
  width: 200px;
  font-size: 15px;
  line-height: 1.74;
  letter-spacing: .08em;
  font-weight: 400;
}

.icon_pdf {
  padding-left: 32px;
  display: inline-block;
  background: url(/corporate/images/common/icon_pdf.svg) left top no-repeat;
  background-size: 20px auto;
  text-decoration: underline;
}

.icon_movie {
  padding-left: 32px;
  display: inline-block;
  background: url(/corporate/images/common/icon_movie.svg) left top no-repeat;
  background-size: 20px auto;
  text-decoration: underline;
}

.icon_word {
  padding-left: 32px;
  display: inline-block;
  background: url(/corporate/images/common/icon_word.svg) left top no-repeat;
  background-size: 20px auto;
  text-decoration: underline;
}

.icon_ai {
  padding-left: 32px;
  display: inline-block;
  background: url(/corporate/images/common/icon_ai.svg) left top no-repeat;
  background-size: 20px auto;
  text-decoration: underline;
}

.icon_excel {
  padding-left: 32px;
  display: inline-block;
  background: url(/corporate/images/common/icon_excel.svg) left top no-repeat;
  background-size: 20px auto;
  text-decoration: underline;
}

.icon_png {
  padding-left: 32px;
  display: inline-block;
  background: url(/corporate/images/common/icon_png.svg) left top no-repeat;
  background-size: 20px auto;
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .disclosure_box .disclosure_head {
    width: 200px;
  }

  .disclosure_box .disclosure_body {
    width: calc(100% - 220px);
  }
}

/*==================================
  主な主催事業
==================================*/
.programs_wrap {
  padding: 140px 0 115px;
}

.programs_links_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 22px;
}

.programs_links_list li {
  font-size: 1px;
  line-height: 1;
}

.programs_links_list li a {
  display: block;
}

.programs_links_list li a img {
  width: 100%;
}

/*==================================
  所管施設
==================================*/
.facilities_wrap {
  padding: 140px 0 53px;
}

.facilities_links_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.facilities_links_list li {
  font-size: 1px;
  line-height: 1;
}

.facilities_links_list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 10px 64px;
  position: relative;
  background: #F4F2EC;
  border-radius: 3px;
}

.facilities_links_list li a .icon_arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 42px;
  height: 20px;
}

.facilities_links_list li a .icon_arrow:before,
.facilities_links_list li a .icon_arrow:after {
  background-size: 14px auto;
}

.facilities_links_list .image {
  width: 100%;
  aspect-ratio: 81 / 29;
  display: block;
  overflow: hidden;
}

.facilities_links_list .image img {
  width: 100%;
  height: 100%;
  object-fit: center;
}

.facilities_links_list .title {
  display: block;
  margin-top: 27px;
  padding: 0 16px;
}

.facilities_links_list .title .title_eng {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.21875;
  color: #987430;
  letter-spacing: .03em;
  display: block;
}

.facilities_links_list .title .title_jap {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4167;
  letter-spacing: .08em;
  margin-top: 8px;
  display: block;
}


/*==================================
  ご挨拶
==================================*/
.greeting_wrap {
  padding: 130px 0 180px;
}

.greeting_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.greeting_box .greeting_head {
  width: 28.25%;
  padding-top: 11px;
}

.greeting_box .greeting_head img {
  width: 100%;
}

.greeting_box .greeting_body {
  width: 63.36%;
}

.greeting_box .greeting_body p {
  font-size: 15px;
  line-height: 2.4;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .08em;
}

.greeting_box .greeting_body p + p {
  margin-top: 2.4em;
}

.greeting_sign {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.42857;
}

.greeting_sign .greeting_sign_group {
  margin-bottom: 15px;
}

.greeting_sign .greeting_sign_name {
  display: flex;
  align-items: center;
  gap: 20px;
}

.greeting_sign .greeting_sign_name img {
  width: 153px;
}

/*==================================
  概要
==================================*/
.overview_wrap {
  padding: 0 0 130px;
}

.overview_wrap .section_body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.overview_box {
  padding: 135px 0 111px;
}

.overview_box .section_box + .section_box {
  margin-top: 80px;
}

.overview_text {
  font-size: 15px;
  line-height: 3;
  font-weight: 400;
  letter-spacing: .08em;
}

.overview_list {
  border-top: 1px solid #E8E8E8;
}

.overview_list li {
  border-bottom: 1px solid #E8E8E8;
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 400;
  line-height: 1.5;
  padding: 18px;
  display: flex;
  align-items: flex-start;
}

.overview_list li span {
  word-break: keep-all;
  white-space: nowrap;
}

.overview_info {
  padding: 115px 0;
}

.overview_info_list {
  border-top: 1px solid #E1DFD8;
}

.overview_info_list .overview_info_item {
  border-bottom: 1px solid #E1DFD8;
  padding: 23px 14px;
  display: flex;
  align-items: flex-start;
}

.overview_info_list .overview_info_item dt,
.overview_info_list .overview_info_item dd,
.overview_info_list .overview_info_item ul,
.overview_info_list .overview_info_item ul li {
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 400;
  line-height: 1.5;
}

.overview_info_list .overview_info_item dt {
  width: 145px;
  padding-right: 20px;
}

.overview_info_list .overview_info_item dd {
  width: calc(100% - 145px);
}

.overview_info_list .overview_info_item ul li {
  display: flex;
  align-items: flex-start;
}

.overview_info_list .overview_info_item ul li + li {
  margin-top: 20px;
}

.overview_info_list .overview_info_item ul li span {
  word-break: keep-all;
  white-space: nowrap;
}


/*==================================
  後援申請
==================================*/
.application_wrap {
  padding: 135px 0 190px;
}

.application_wrap .section_box + .section_box {
  margin-top: 120px;
}

.application_wrap .section_box p,
.application_wrap .section_box li {
  font-size: 15px;
  line-height: 2.5;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
}

.application_wrap .section_box small {
  font-size: 10px;
}

.dot_list > li {
  padding-left: 15px;
  position: relative;
}

.dot_list > li:before {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #B39253;
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 2;
}

.dis_list.is_note > li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.dis_list.is_note_large > li {
  padding-left: 1.9em;
  text-indent: -1.9em;
}

.dis_list.is_dot > li {
  padding-left: .8em;
  text-indent: -.8em;
}

.color_red {
  color: #E20000;
}

.application_item + .application_item {
  margin-top: 38px;
}

.application_item .application_item_title {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.application_item .application_item_box {
  margin-top: 10px;
  padding: 0 0 0 23px;
}

.application_button {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.application_box {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  padding: 50px 14px;
}

.application_contact {
  display: flex;
  align-items: center;
  gap: 40px;
}

.application_contact .application_contact_tel a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: .06em;
  word-break: keep-all;
  white-space: nowrap;
}

.application_contact .application_contact_tel a span {
  font-size: 30px;
}

.application_contact .application_contact_mail {
  width: 100%;
  max-width: 345px;
}

.application_item .application_item_subtitle {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.5;
  margin-bottom: 12px;
}

@media (max-width: 1149px) {
  .application_contact {
    gap: 20px;
  }
}

@media (max-width: 899px) {
  .application_button {
    flex-direction: column;
  }

  .application_contact {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*==================================
  採択者専用ダウンロードページ
==================================*/
.download_wrap {
  padding: 140px 0 132px;
}

.download_wrap .section_box + .section_box {
  margin-top: 98px;
}

.download_wrap .section_box .section_head {
  width: 380px;
}

.download_wrap .section_box .section_body {
  width: calc(100% - 400px);
  padding: 0;
}

.download_wrap .application_box p {
  font-size: 15px;
  line-height: 2.5;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
}

.download_wrap .disclosure_list .disclosure_list_item dt {
  width: calc(100% - 400px);
}

.download_wrap .disclosure_list .disclosure_list_item dd {
  width: 380px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.download_wrap .disclosure_list .disclosure_list_item dd a {
  width: calc((100% - 20px) / 2);
}

.download_button {
  justify-content: center;
}

.download_button a {
  max-width: 435px;
}

@media (max-width: 1123px) {
  .download_wrap .section_box .section_head {
    width: 300px;
  }

  .download_wrap .section_box .section_body {
    width: calc(100% - 320px);
  }
}

@media (max-width: 1023px) {
  .download_wrap .section_box .section_head {
    width: 200px;
  }

  .download_wrap .section_box .section_head span {
    display: block;
  }

  .download_wrap .section_box .section_body {
    width: calc(100% - 220px);
  }
}

@media (max-width: 899px) {
  .download_wrap .disclosure_list .disclosure_list_item dt {
    width: calc(100% - 220px);
  }

  .download_wrap .disclosure_list .disclosure_list_item dd {
    width: 200px;
    gap: 20px;
  }

  .download_wrap .disclosure_list .disclosure_list_item dd a {
    width: 100%;
  }

}


/*==================================
  文化団体活動支援助成金
==================================*/
.grant_wrap {
  padding: 140px 0 25px;
}

.grant_wrap .grant_box {
  padding: 100px 0;
}

.grant_wrap .section_box + .section_box {
  margin-top: 100px;
}

.grant_wrap .section_box p,
.grant_wrap .section_box li {
  font-size: 15px;
  line-height: 2.5;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
}

.grant_wrap .disclosure_section {
  margin-bottom: 30px;
}

.grant_wrap .disclosure_list .disclosure_list_item dt {
  width: calc(100% - 400px);
}

.grant_wrap .disclosure_list .disclosure_list_item dd {
  width: 380px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.grant_wrap .disclosure_list .disclosure_list_item dd a {
  width: calc((100% - 20px) / 2);
}

.grant_banner {
  text-align: center;
}

.grant_banner h2 {
  font-size: 30px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: .12em;
}

.grant_banner img {
  width: 100%;
  max-width: 940px;
}

.grant_flyer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.grant_flyer img {
  width: 100%;
}

.grant_schedule {
  background: #fff;
  margin-bottom: 48px;
  padding: 45px 30px 32px;
}

.grant_schedule .grant_schedule_item + .grant_schedule_item {
  margin-top: 21px;
}

.grant_schedule .grant_schedule_title {
  background: #B39253;
  color: #fff;
  font-size: 18px;
  padding: 4px 20px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.grant_schedule .grant_schedule_contents {
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 0 20px;
}

@media (max-width: 899px) {
  .grant_wrap .disclosure_list .disclosure_list_item dt {
    width: calc(100% - 220px);
  }

  .grant_wrap .disclosure_list .disclosure_list_item dd {
    width: 200px;
    gap: 20px;
  }

  .grant_wrap .disclosure_list .disclosure_list_item dd a {
    width: 100%;
  }

}


/*==================================
  ご寄付のお願い
==================================*/

.donation_wrap {
  padding: 0 0 100px;
}

.donation_wrap .donation_box {
  padding: 100px 0;
}

.donation_main {
  padding: 135px 0 90px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.donation_main .donation_main_heading {
  font-size: 33px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .08em;
  word-break: keep-all;
  white-space: nowrap;
}

.donation_main p {
  font-size: 15px;
  line-height: 2.6;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
  width: 100%;
  max-width: 593px;
}

.donation_wrap .section_box + .section_box {
  margin-top: 75px;
}

.donation_wrap .section_box p,
.donation_wrap .section_box li {
  font-size: 15px;
  line-height: 2;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
}

.donation_wrap .section_box p + p,
.donation_wrap .section_box p + h4 {
  margin-top: 2em;
}

.donation_head {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  letter-spacing: .12em;
  background: #B39253;
  padding: 4px 20px;
  margin-bottom: 44px;
}

.num_list > li {
  display: flex;
  align-items: flex-start;
}

.num_list > li .num_list_mark {
  word-break: keep-all;
  white-space: nowrap;
}

.donation_wrap .section_box .num_list > li {
  line-height: 2.5;
}

.donation_info {
  margin-top: 20px;
}

.donation_info .donation_info_item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
}

.donation_info .donation_info_item:first-child {
  border-top: 1px solid #E8E8E8;
}

.donation_info .donation_info_item dt,
.donation_info .donation_info_item dd,
.donation_info .donation_info_item dd li {
  font-size: 15px;
  line-height: 2.6;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
}

.donation_info .donation_info_item dt {
  width: 180px;
  padding: 0 20px 0 40px;
}

.donation_info .donation_info_item dd {
  width: calc(100% - 180px);
}

.donation_cultural {
  background: #fff;
  padding: 30px 38px;
  margin-top: 20px;
}

.donation_cultural .donation_cultural_item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.donation_cultural .donation_cultural_item + .donation_cultural_item {
  margin-top: 30px;
}

.donation_cultural .donation_cultural_marker {
  width: 80px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #B39253;
  border-radius: 100%;
  font-size: 25px;
  font-weight: 600;
  color: #B39253;
  line-height: 1.5;
  min-height: 80px;
}

.donation_cultural .donation_cultural_contents {
  display: flex;
  align-items: center;
  gap: 30px;
}

.donation_cultural .donation_cultural_title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #B39253;
  word-break: keep-all;
  white-space: nowrap;
}

.donation_text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .08em;
  font-weight: 600;
}

.donation_wrap .application_button {
  margin-top: 30px;
}

.donation_formula + .donation_text {
  margin-top: 25px;
}

.donation_formula {
  margin-top: 24px;
  padding-left: 40px;
}

.donation_formula .donation_formula_box {
  padding-left: 20px;
}

.donation_formula .donation_formula_item + .donation_formula_item {
  margin-top: 25px;
}

.donation_formula .donation_formula_box,
.donation_formula .donation_formula_code + ul {
  margin-top: 35px;
}

.donation_formula .donation_formula_code {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: .08em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.donation_formula .donation_formula_code img {
  max-width: 573px;
  width: 100%;
}

.donation_wrap .application_contact  {
  padding: 70px 14px;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.donation_wrap .donation_formula:last-child {
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .donation_main .donation_main_heading {
    font-size: 25px;
  }

  .donation_formula {
    padding-left: 20px;
  }
}

@media (max-width: 899px) {
  .donation_main .donation_main_heading {
    font-size: 21px;
  }

  .donation_info .donation_info_item dt {
    width: 120px;
    padding: 0 10px 0 20px;
  }

  .donation_info .donation_info_item dd {
    width: calc(100% - 120px);
  }
}

/*==================================
  事業内容
==================================*/

.business_wrap {
  padding: 0 0 105px;
}

.business_main {
  padding: 123px 0 125px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.business_main .business_main_left {
  /*width: 100%;
  max-width: 455px;*/
  width: 34.7328%;
}

.business_main .business_main_heading {
  font-size: 33px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .08em;
}

.business_main .business_main_image {
  margin-top: 118px;
  width: 100%;
}

.business_main .business_main_image img {
  width: 100%;
}

.business_main .business_main_right {
  /*width: 100%;
  max-width: 730px;*/
  width: 55.72519%;
}

.business_main p {
  font-size: 15px;
  line-height: 2.6;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: .08em;
}

.business_main p + p {
  margin-top: 2.6em;
}

.business_box {
  padding: 120px 0;
}

.business_box.bg_brown {
  padding: 85px 0
}

.business_item {
  background: #fff;
  padding: 53px 55px 43px;
  min-height: 180px;
}

.business_item + .business_item {
  margin-top: 20px;
}

.business_item p {
  font-size: 15px;
  line-height: 2.2;
  font-weight: 400;
  letter-spacing: .08em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.business_item .business_item_title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.business_item .business_item_image {
  padding: 0 16px;
  margin-top: -40px;
}

.business_item .business_item_image img {
  width: 100%;
}

.business_list .business_list_item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.business_list .business_list_item + .business_list_item {
  margin-top: 30px;
}

.business_list .business_list_item dt {
  width: 80px;
  aspect-ratio: 1 / 1;
  min-width: 80px;
  border-radius: 100%;
  border: 1px solid #B39253;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  color: #B39253;
  background: #fff;
}

.business_list .business_list_item dd {
  flex-grow: 1;
  font-size: 15px;
  line-height: 2.2;
  font-weight: 400;
  letter-spacing: .08em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";

}

.business_wrap .section_box .section_body {
  width: 730px;
}

@media (min-width: 1400px) {
  .business_wrap .section_box .section_body {
    width: calc(100% - 580px);
  }
}

@media (max-width: 899px) {
  .business_wrap .section_box .section_body {
    width: calc(100% - 240px);
  }
}


/*==================================
  Top
==================================*/
.top_news {
  padding: 126px 0 153px;
}

.top_news_wrap {
  display: grid;
  grid-template-columns: min(30%, 393px) auto;
}

.top_news_left {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 28px;
}

.top_news_right {
  padding-top: 67px;
}

.top_news .news_ul .news_li > a {
  padding: 28px 11px;
}

.top_news .news_ul .news_li > a .date {
  line-height: 1.607;
}

.top_news .news_ul .news_li > a .title {
  font-size: 15px;
  line-height: 1.5;
}

.top_facilities {
  padding: 130px 0 116px;
}

.top_facilities .facilities_links_list li a {
  background: #fff;
}

.top_about {
  padding: 135px 0 165px;
}

.top_about_wrap {
  display: grid;
  grid-template-columns: min(48.156%, 679px) auto;
}

.top_about_left {
  padding-right: 20px;
}

.top_about_right {
  padding-top: 106px;
}

.top_about_right p {
  font-size: 15px;
  line-height: 2.6;
  letter-spacing: .08em;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.top_about_button {
  margin-top: 50px;
}

.top_programs {
  padding: 132px 0 140px;
  border-top: 1px solid #E3E3E3;
}

.top_programs .programs_links_list {
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}