@charset "utf-8";
/* CSS Document */

.inlineblock {
  display: inline-block;
}

/*---------------------------------------------------------------------
	container
---------------------------------------------------------------------*/
#container {
  overflow: hidden;
}
#container.fixed {
    position: fixed;
    width: 100%;
}

@media print, screen and (max-width: 768px) {
  .sp_none { display: none; }
}
@media print, screen and (min-width: 769px) {
  .pc_none { display: none; }
}

@media print, screen and (max-width: 425px) {
  .sp_block { display: block; }
}

.font_mincho {
	font-family: 'Noto Serif JP';
}

/*---------------------------------------------------------------------
	alert_box
---------------------------------------------------------------------*/
.alert_box {
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 10px;
}
.alert_box .inner {
  padding: 30px 20px;
  background: #C8004C;
  border-radius: 10px;
}
.alert_box .head {}
.alert_box .ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.alert_box .ttl span {
  padding-left: 35px;
  background: url("../image/icon_caution.svg") no-repeat left center;
}
.alert_box .list {
  margin-bottom: 20px;
}
.alert_box .list li {}
.alert_box .list li + li {
  margin-top: 15px;
}
.alert_box .list a {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    color: #000;
    font-weight: 500;
}
.alert_box .list .date {
  margin-bottom: 10px;
}
.alert_box .list .title {}

.alert_box .link {
  text-align: center;
}
.alert_box .link.pc { display: none;}
.alert_box .link a {
    color: #fff;
    display: block;
    font-size: 16px;
    text-decoration: none;
    padding: 2px 20px 2px 10px;
    font-weight: bold;
}
.alert_box .link a span {
  padding-right: 25px;
  background: url("../image/icon/arrow_btn_r_white.svg") no-repeat right center;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .alert_box {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
    padding: 0 100px;
    box-sizing: content-box;
  }
  .alert_box .inner {
    padding: 30px 50px;
  }
  .alert_box .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .alert_box .link.pc { display: block; }
  .alert_box .link.sp { display: none; }
  
  .alert_box .list {
    margin-bottom: 0;
  }
  
  .alert_box .list a {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 10px 40px;
    gap: 10px;
  }
  .alert_box .list .date {
    margin: 0;
    width: 140px;
  }
  .alert_box .list .title {
    flex: 1;
  }
}

/*---------------------------------------------------------------------
	site_header
---------------------------------------------------------------------*/
#site_header {
  position: relative;
  width: 100%;
  background: #65A232 url('../image/header_bg.png') repeat-x top -30px left/128px 74px;
  padding: 50px 0 10px;
  position: relative;
  z-index: 100;
}

.site_logo {
  display: block;
  margin: 0 auto;
  width: 54.13%;
  max-width: 337px;
  line-height: 1;
}

.btn_site_contact {
  display: none;
}

.header_menu {
  display: none;
}

/*--- fixed ---*/
#site_header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}


/* pc */
@media print, screen and (min-width: 1200px) {
  #site_header {
    padding: 56px 0 19px 60px;
  }
  .site_logo {
    margin-top: 7px;
    margin: 0 auto 0 0;
  }

  .btn_site_contact {
    display: block;
    font-size: 24px;
    position: absolute;
    top: 50px; right: 60px;
    width: 280px;
  }

  .header_menu {
    display: block;
    float: right;
    text-align: right;
  }
  .g_navi {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .g_navi > li {}
  .g_navi > li + li { margin-left: 10px;}
  .g_navi > li > a {
    color: #000;
    font-size: 1.7rem;
    font-weight: 500;
    display: block;
    text-decoration: none;
    padding: 5px 20px;
    transition: .3s;
    background: #ebebeb;
  }
  .g_navi > li > a:hover {
    color: #00E84E;
  }
    
}


/*----- btn_site_navi -----*/
.btn_site_navi {
  width: 10vw;
  max-width: 76px;
  height: 10vw;
  max-height: 76px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.btn_site_navi a {
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 6px;
  background: #00693F;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 1.1rem;
  text-align: center;
}
.btn_site_navi .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: -15% auto auto;
  background: #fff;
  width: 26px;
  height: 2px;
}
.btn_site_navi .line::before,
.btn_site_navi .line::after {
  content: "";
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  height: 2px;
  transition: .3s;
}
.btn_site_navi .line::before {
  top: -7px;
}
.btn_site_navi .line::after {
  top: 7px;
}
.btn_site_navi .text {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  text-align: center;
}


/*.btn_site_navi.open .line { background: none; }
.btn_site_navi.open .line::before {transform: rotate(45deg);top: 0;}
.btn_site_navi.open .line::after { transform: rotate(-45deg); top:0;}*/

/* Tablet */
@media print, screen and (min-width: 768px) {
  .btn_site_navi a {
    font-size: 16px;
  }
  .btn_site_navi .line {
    width: 50%;
    margin: -10px auto auto;
  }
  .btn_site_navi .line::before {
    top: -10px;
  }
  .btn_site_navi .line::after {
    top: 10px;
  }
  .btn_site_navi .text {
    top: 60%;
  }
}

/* PC */
@media print, screen and (min-width: 1200px) {
  .btn_site_navi {
    display: none;
  }
}



/*----- site_navi -----*/
.site_navi {
  background: #65A232;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  z-index: 100;
  padding-top: 80px;
  transition: .8s;
  opacity: 0;
  max-width: 600px;
}
.site_navi .inner {
  display: block;
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  padding-bottom: 8px;
  width: 275px;
  /*overflow-y: scroll;*/
}
.site_navi_logo {
  display: block;
  width: 203px;
  margin: 0 auto;
}
.site_navi .menu {
  margin: 60px auto;
}
.site_navi .menu li {
  margin-bottom: 25px;
}
.site_navi .menu li a {
  text-decoration: none;
  font-size: 15px;
  color: #fff;
}

.site_navi a.btn_contact {
  font-size: 14px;
  width: 163px;
  box-shadow: 0 5px 0 #AEAEAE;
}

.close_site_navi {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  text-shadow: 0 0 3px rgb(0 0 0 / 50%);
}
.close_site_navi a {
  color: #fff;
  font-size: 15px;
  display: block;
  width: 70px;
  height: 70px;
}
.close_site_navi .line {
    position: absolute;
    left: 130%;
    top: 50%;
    width: 26px;
    margin-left: -13px;
  transition: all .5s ease .5s;
}
.close_site_navi .line::before,
.close_site_navi .line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00CF45;
  transition: all .3s ease 1s;
}
.close_site_navi .line::before { top: -9px; }
.close_site_navi .line::after { top: 3px; }

.site_navi.open {
  right: 0;
  opacity: 1;
}
.open .close_site_navi .line {
  left: 50%;
}
.open .close_site_navi .line::before {
    top: -3px;
    transform: rotate(-45deg);
}
.open .close_site_navi .line::after {
    transform: rotate(45deg);
    top: -3px;
}

.site_navi_links .menu_01 {
  margin-bottom: 20px;
}
.site_navi_links .menu_01 li {
  margin-bottom: 3px;
}
.site_navi_links .menu_01 li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: #008C2E;
  padding: 10px;
  position: relative;
}
.site_navi_links .menu_01 li a::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #92FEB6;
    border-bottom: 2px solid #92FEB6;
    transform: rotate(-45deg);
    margin-top: -4px;
}

.site_navi_links .menu_02 {}
.site_navi_links .menu_02 .item {}
.site_navi_links .menu_02 .item > ul > li {
  margin-bottom: 5px;
}
.site_navi_links .menu_02 .item > ul > li > a {
  display: block;
  color: #000;
  text-decoration: none;
  border: 1px solid #92FEB6;
  padding: 10px;
  position: relative;
}
.site_navi_links .menu_02 .item > ul > li > a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #92FEB6;
  border-bottom: 2px solid #92FEB6;
  transform: rotate(-45deg);
  margin-top: -4px;
}
.site_navi_links .menu_02 .item .pull_btn::before {
  transform: rotate(45deg);
  margin-top: -6px;
  transition: .5s;
}
.site_navi_links .menu_02 .item .pull_btn.open::before {
  transform: rotate(225deg);
  margin-top: -4px;
}
.site_navi_links .menu_02 .pull_link {
  display: none;
  padding: 10px;
  background: #C6FFD9;
}
.site_navi_links .menu_02 .pull_link li {}
.site_navi_links .menu_02 .pull_link li + li {
    border-top: 1px dotted #00E84D;
}
.site_navi_links .menu_02 .pull_link a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  padding: 5px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .close_site_navi a { height: 77px; }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .site_navi {
    padding: 100px 40px 40px;
  }
  .site_navi .inner {
    max-width: 1200px;
    margin: 0 auto;
    overflow: inherit;
  }
  
  .site_navi_links .menu_01 {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .site_navi_links .menu_01 li {
    display: table-cell;
    vertical-align: top;
  }
  .site_navi_links .menu_01 li + li {
    padding-left: 5px;
  }
  .site_navi_links .menu_01 li a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 11px 10px 20px;
  }
  .site_navi_links .menu_01 li a:hover {
    transition: .3s;
    background-color: #FC841A;
  }
  .site_navi_links .menu_01 li a::before {
    transform: rotate(45deg);
    right: auto;
    left: 50%;
    top: auto;
    bottom: 10px;
    margin-left: -2px;
  }
  .site_navi_links .menu_01 li a:hover::before {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
  
  .site_navi_links .menu_02 {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .site_navi_links .menu_02 .item {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    text-align: left;
    border-right: 1px dashed #BFBFBF;
  }
  .site_navi_links .menu_02 .item:first-child {
    padding-left: 10px;
  }
  .site_navi_links .menu_02 .item ul + ul {
    margin-top: 30px;
  }
  .site_navi_links .menu_02 .item > ul > li > a {
    border: none;
    padding: 5px;
    font-weight: 500;
  }
  .site_navi_links .menu_02 .item > ul > li > a:hover {
    transition: .3s;
    background: #f7f7da;
  }
  .site_navi_links .menu_02 .item > ul > li > a::before {
    display: none;
  }
  .site_navi_links .menu_02 .pull_link {
    display: block;
    background: none;
    padding: 0 0 0 20px;
  }
  .site_navi_links .menu_02 .pull_link li + li {
    border-top: none;
  }
  .site_navi_links .menu_02 .pull_link a {
    font-size: 1.5rem;
    padding: 2px;
  }
  .site_navi_links .menu_02 .pull_link a:hover {
    transition: .3s;
    background: #f7f7da;
  }
  
}

/* pc_l */
@media print, screen and (min-width: 1460px) {
}



/*---------------------------------------------------------------------
	【子ページ】FV
---------------------------------------------------------------------*/
.fv {
    width: 100%;
    padding: 0 10px 15px;
    background-color: #65A232;
    margin-top: -5px;
}
.fv_title {
  color: #FFE100;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
}

.fv_navi {
	width: 100%;
	background-color: #00693F;
}

.fv_navi_links {
	display: none;
}
.fv_navi_link, .fv_navi_link:visited {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.fv_navi_link:hover {
	color: #FFE100;
	text-decoration: none;
}

/* ---------- ナビゲーション アクティブ状態 ---------- */
.fv_navi_link.is-active {
  color: #FFE100;
}

/* Tablet */
@media print, screen and (min-width: 768px) {
  .fv_title {
    font-size: 40px;
  }
}

/* PC */
@media print, screen and (min-width: 1200px) {
  .fv_title {
    font-size: 60px;
  }
  .fv_navi_links {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    padding: 26px 0 28px;
    width: 100%;
    max-width: 1200px;
  }
}



/*---------------------------------------------------------------------
	topic_path_top
---------------------------------------------------------------------*/
.topic_path_top {
  margin: 20px auto 40px;
}
.topic_path_top > ol {
  font-size: 13px;
  font-size: 1.3rem;
}
.topic_path_top > ol > li {
  display: inline;
}
.topic_path_top > ol > li + li::before {
    content: "";
    width: 11px;
    height: 15px;
    background: url(../image/icon/arrow_02.svg) no-repeat 0 0 / cover;
    display: inline-block;
    margin: 0 5px;
    vertical-align: text-top;
}
.topic_path_top > ol > li a {
  text-decoration: underline;
}
.topic_path_top > ol > li:last-child a {
    text-decoration: none;
    color: #333;
}
.topic_path_top img {
    vertical-align: top;
}

/*---------------------------------------------------------------------
	pagebody
---------------------------------------------------------------------*/
.pagebody_inner {
    max-width: 1000px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
}
.pagebody_inner_02 {
    max-width: 1000px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .pagebody_inner {
    padding: 0 100px;
  }
  .pagebody_inner_02 {
    padding: 0 100px;
  }
  .pagebody_inner_02 .pagebody_inner { padding: 0; }
}

@media print, screen and (min-width: 1440px) {
  .pagebody_inner {
    max-width: 1200px;
  }
  .pagebody_inner_02 {
    max-width: 1760px;
  }
}

/*--------------------------------------------------
	alpha
--------------------------------------------------*/
#alpha {
}

/* pc */
@media print, screen and (min-width: 1200px) {
  #alpha {
    float: left;
    width: 76.66%;
  }
}


/*--------- text -----------*/
.page_ttl {
  color: #00693F;
  font-size: 2.2rem;
  font-weight: 500;
  background: #eee;
  padding: 25px 10px;
  line-height: 1.4;
}
.page_ttl span {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .page_ttl {
    font-size: 3rem;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .page_ttl {
    font-size: 3.4rem;
    padding: 35px;
  }
}

.content1 {
  line-height: 1.8;
}
.content1 .topic_title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.content1 .topic_lastupdate {
    color: #A5A5A5;
    font-size: 1.2rem;
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    text-align: right;
}

.content1 .content_border {
  border: 1px solid #00693F;
  border-radius: 10px;
  padding: 20px;
}
.content1 .bluebold {
	color: #00693F;
	font-weight: bold;
}

.content1 p {
  margin: 1em 0;
}
.content1 h2 + p,
.content1 h3 + p,
.content1 h4 + p,
.content1 h5 + p,
.content1 h6 + p {
  margin-top: 0;
}
.content1 div > p {
  margin-top: 0;
}

/* headline */
.content1 * + h2 {
  margin-top: 80px;
}
.content1 * + h3 {
  margin-top: 60px;
}
.content1 * + h4 {
  margin-top: 40px;
}
.content1 * + h5 {
  margin-top: 20px;
}
/* .content1 h2 + h3,
.content1 h3 + h4 {
  margin-top: 0;
} */

.section_head {
  /*font-size: 36px;*/
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  background: url('../image/section_head.png') no-repeat center bottom / 90px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* utility */
.content1 * + dl,
.content1 * + ol,
.content1 * + ul,
.content1 * + table {
  margin-top: 20px;
}

.lead_01,
.content1 h2 {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    background-color: #E2F1EB;
}
.lead_02,
.content1 h3 {
  font-size: 1.7rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 4px solid #E2F1EB;
  position: relative;
}
.lead_03,
.content1 h4 {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 0 6px 20px;
  margin-bottom: 15px;
  position: relative;
}
.lead_03::after,
.content1 h4::after {
  content: '';
  position: absolute;
  left: -10px; top: 0;
  width: 10px;
  height: 100%;
  border-radius: 10px;
  background-color: #E2F1EB;
}
.lead_04,
.content1 h5 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 5px 20px;
  border-radius: 10px;
  border: 2px solid #E2F1EB;
}
.content1 h6 {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}
.content1 h6::after {
  content: '';
  position: absolute;
  left: 0; top: calc(0.5em + 2.5px);
  width: 18px;
  height: 5px;
  border-radius: 10px;
  background-color: #E2F1EB;
}

.lead_05 { color: #224262; font-weight: 500; font-size: 1.8rem; }
.lead_06 { color: #B55C5C; font-weight: 500; font-size: 1.8rem; }
.lead_07 { color: #333333; font-weight: 500; font-size: 1.8rem; }

/* Tablet */
@media print, screen and (min-width: 768px) {
  .section_head {
    font-size: 36px;
    padding-bottom: 30px;
    background-size: 178px;
  }
  
  .content1 .topic_title {
    font-size: 2.2rem;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .section_head {
    margin-bottom: 50px;
  }
  
  .content1 .topic_title {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
  .content1 .topic_lastupdate {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .lead_01,
  .content1 h2 {
    font-size: 2.4rem;
    padding: 15px 30px;
    margin-bottom: 30px;
  }
  
  .lead_02,
  .content1 h3 {
    font-size: 2.2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  
  .lead_03,
  .content1 h4 {
    font-size: 2rem;
    padding: 5px 15px;
    margin-bottom: 30px;
  }
  
  .lead_04,
  .content1 h5 { font-size: 2.6rem; }
  
  .lead_05,
  .lead_06,
  .lead_07 { font-size: 2.4rem; }
  
  
  .content1 .content_border {
    padding: 40px 50px;
  }
  
}


.fc_01 { color: #D80000; }
.fc_red { color: #C8004C; }
.fc_blue { color: #00693F; }

.modified_date {
  color: #333;
  font-size: 86.66%;
  margin-bottom: 20px;
  text-align: right;
}

/*--------- btn -----------*/
a.btn_01 {
    display: inline-block;
    vertical-align: top;
    color: #333;
    text-decoration: none;
    border: 1px solid #CCCCCC;
    background: #fff url("../image/icon/arrow_01.png") no-repeat right 10px center;
    min-width: 31.66%;
    padding: 10px 30px;
    font-size: 1.4rem;
    border-radius: 3px;
}

a.btn_small, a.btn_small:visited {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 11px 0 12px;
  width: 260px;
  border-radius: 70px;
  background-color: #00693F;
}
a.btn_small.yellow, a.btn_small.yellow:visited {
  color: #000;
  background-color: #FFE100;
}
a.btn_small::after {
  content: '';
  position: absolute;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 15px;
  background: url("../image/arrow_btn_white.png") no-repeat center center/contain;
}
a.btn_small.yellow::after {
  background: url("../image/arrow_btn_black.png") no-repeat center center/contain;
}
a.btn_small.left::after {
  right: auto; left: 20px;
  transform: translateY(-50%) rotate(-180deg);
}
a.btn_small:hover {
  text-decoration: none;
  background-color: #006E24;
}

a.btn_laege, a.btn_laege:visited {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    background-color: #C8004C;
    border-radius: 70px;
}
a.btn_laege:hover {
  text-decoration: none;
  position: relative;
  top: 5px;
  box-shadow: none;
  background-color: #940038;
}

a.btn_contact, a.btn_contact:visited {
  color: #00693F;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  box-shadow: 0 5px 0 #AEAEAE;
  background-color: #FFF;
  border-radius: 40px;
}
a.btn_contact img {
  position: relative;
  bottom: 0.1em;
  margin-right: 0.7em;
  width: 1em;
}
a.btn_contact:hover {
  text-decoration: none;
  position: relative;
  top: 2.5px;
  box-shadow: none;
  background-color: #FFE100;
}

a.arrow_btn, a.arrow_btn:visited {
  color: #00693F;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  position: relative;
  align-items: center;
  padding: 22px 20px;
  border-radius: 10px;
  background-color: #8AD08A;
}
a.arrow_btn.yellow, a.arrow_btn.yellow:visited {
  background-color: #FFE100;
}
a.arrow_btn::after {
  content: '';
  position: absolute;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  width: 46px;
  height: 38px;
  background: url("../image/arrow_btn.png") no-repeat center right/30px;
}
a.arrow_btn .btn_icon {
  margin-right: 11px;
  width: 31px;
}
a.arrow_btn:hover {
  opacity: 0.7;
}

a.link_arrow, a.link_arrow:visited {
  color: #00693F;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  display: block;
  margin: auto;
  padding-left: 1em;
  width: fit-content;
}
a.link_arrow::before {
  content: '';
  position: absolute;
  left: -0.75em;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 1.1em;
  height: 1em;
  background: url('../image/arrow_btn.png') no-repeat center center/contain;
}
a.link_arrow:hover::before {
  animation: link_arrow_hover_animation 1s 0s;
}

@keyframes link_arrow_hover_animation {
  0%  { transform: translateY(-50%) rotate(180deg) translateX(0%)   }
  5%  { transform: translateY(-50%) rotate(180deg) translateX(-10%) }
  25% { transform: translateY(-50%) rotate(180deg) translateX(50%)  }
  80% { transform: translateY(-50%) rotate(180deg) translateX(0%)   }
}

/* pc */
@media screen and (min-width: 1200px) {
	a.btn_01 {
		padding: 18px 30px;
	}
	a.btn_01 {
    transition: .3s;
  }
	a.btn_01:hover {
    color: #fff;
    background-color: #00CF45;
    background-image: url("../image/icon/arrow_01_w.png");
  }

  a.btn_laege, a.btn_laege:visited {
    font-size: 35px;
    padding: 24px 0;
    width: 75%;
  }

  a.arrow_btn, a.arrow_btn:visited {
    padding: 42px 40px;
  }
  a.arrow_btn::after {
    right: 40px;
  }
}


/*--------- bg -----------*/
.bg_box_01 {
  background: #F0F7F6;
  padding: 10px 15px;
}
.bg_box_02 {
  background: #F6F5EE;
  padding: 10px 15px;
}
.bg_box_03 {
  border: 1px solid #ccc;
  padding: 10px 15px;
}


.notice {
  background: #FFEEEE;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 1.3rem;
}

/*--------- template -----------*/
.fll_img { margin-bottom: 15px; }
.flr_img { margin-bottom: 15px; }

.sp_flr_img {
    float: right;
    margin: 0 0 0 20px;
}
.sp_fll_img {
    float: left;
    margin: 0 20px 0 0;
}

.fll_img img,
.fll_img img {
  max-width: 100%;
  height: auto;
  
}

.fl_over {
  overflow: hidden;
}

@media print, screen and (min-width: 767px) {
  .fll_img {
    float: left;
    max-width: 45%;
    margin: 0 40px 0 0;
  }
  .flr_img {
    float: right;
    max-width: 45%;
    margin: 0 0 0 40px;
  }
}
.caption,
.list_1column .caption,
.list_2column .caption,
.list_3column .caption,
.list_4column .caption,
.list_5column .caption {
  font-size: 86.66%;
  line-height: 1.4;
  padding-top: 7px;
  text-align: center;
  margin: 0;
}
.list_1column img,
.list_2column img,
.list_3column img,
.list_4column img,
.list_5column img {
  width: 100%;
  height: auto;
}

.list_2column .width_auto,
.list_3column .width_auto {
	width: auto;
}

/* list_2column */
.list_2column {}
.list_2column .item + .item {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .list_2column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_2column .item {
    width: 48.75%;
    margin: 0 2.5% 2.5% 0;
  }
  .list_2column .item + .item { margin-top: 0; }
  .list_2column .item:nth-child(2n) {
    margin-right: 0;
  }
}

/* list_3column */
.list_3column {}
.list_3column .item + .item {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .list_3column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_3column .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_3column .item + .item { margin-top: 0; }
  .list_3column .item:nth-child(3n) {
    margin-right: 0;
  }
}

/* list_4column */
.list_4column {
  display: flex;
  flex-wrap: wrap;
}
.list_4column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_4column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_4column .item,
  .list_4column .item:nth-child(2n){
    width: 23.33%;
    margin: 0 2.08% 2.08% 0;
  }
  .list_4column .item:nth-child(4n) {
    margin-right: 0;
  }
}

/* list_5column */
.list_5column {
  display: flex;
  flex-wrap: wrap;
}
.list_5column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_5column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_5column .item,
  .list_5column .item:nth-child(2n){
    width: 18%;
  }
  
  .list_5column .item:nth-child(2n){
    margin-right: 2.5%;;
  }
  
  .list_5column .item:nth-child(5n) {
    margin-right: 0;
  }
}

.contact_box {
  background: #fafafa;
  padding: 15px 20px;
  border: 3px solid #127533;
}
* + .contact_box {
  margin-top: 60px;
}

/*--------- list_index -----------*/
* + .list_index {
  margin-top: 60px;
}
.list_index {}
.list_index .item {}
.list_index .item + .item  {
  margin-top: 15px;
}
.list_index .item > a {
    color: #000;
    text-decoration: none;
    position: relative;
    border: 1px solid #bfbfbf;
  display: table;
    width: 100%;
}
.list_index .item .thumb {
  display: table-cell;
  vertical-align: middle;
  width: 35%;
}
.list_index .item .thumb span {
  position: relative;
  padding-bottom: 66.66%;
  overflow: hidden;
  display: block;
}
.list_index .item .thumb img {
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  max-width: none;
  max-height: 100%;
  transition: .5s;
  width: 100%;
}
.list_index .item > a:hover .thumb img {
  opacity: 1;
  transform: scale(1.08);
}
.list_index .item .thumb + .detail {
  border-left: 1px solid #ccc;
}
.list_index .item .detail {
  display: table-cell;
  vertical-align: middle;
  background: #00CF45 no-repeat right 10px center/40px;
  padding: 15px 0;
}
.list_index .item .ttl {
  font-size: 1.8rem;
  color: #fff;
  font-weight: normal;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
}
.list_index .item .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #00E84D;
  border-bottom: 2px solid #00E84D;
  transform: rotate(-45deg);
}
.list_index .item .lead {
    font-size: 1.5rem;
    margin-top: 5px;
  padding: 7px 10px;
  background: #FCE6D6;
}
.list_index .item > ul {
  margin: 5px 0 30px 10px;
}
.list_index .item > ul li + li {}
.list_index .item > ul a {
    display: block;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #bfbfbf;
    font-size: 1.5rem;
    padding: 5px 10px 5px 20px;
    position: relative;
}
.list_index .item > ul a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  border: 4px solid transparent;
  border-left: 6px solid #00E84D;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .list_index {
    display: flex;
    flex-wrap: wrap;
  }
  .list_index .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_index .item + .item {
    margin-top: 0;
  }
  .list_index .item:nth-child(3n) {
    margin-right: 0;
  }
  
  .list_index .item a {
    display: block;
  }
  .list_index .item a:hover {
    border-color: #00CF45;
  }
  .list_index .item a:hover .ttl {
    color: #00CF45;
  }
  .list_index .item .thumb {
    display: block;
    width: auto;
  }
  .list_index .item .detail {
    display: block;
    padding: 15px 10px;
    background-size: auto;
  }
  .list_index .item a:hover .detail {
    background-color: #ffffe9;
    transition: .3s;
  }
  .list_index .item .thumb + .detail {
    border-left: none;
  }
  .list_index .item .ttl {
    padding: 7px 0 7px 30px;
  }
  .list_index .item .ttl::before {
    left: 7px;
  }
}



/* hierarchy_link */
.hierarchy_link {
  background: #eee;
  text-align: center;
  padding: 20px;
  margin: 70px 0;
}
.hierarchy_link .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hierarchy_link .ttl {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 20px;
}
.hierarchy_link .ttl a {
  color: #000;
  text-decoration: none;
  display: inline-block;
}
.hierarchy_link li {}
.hierarchy_link li + li {
  margin-top: 10px;
}
.hierarchy_link li a {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
  border: 1px solid #BFBFBF;
  text-align: left;
  background: #fff;
  padding: 10px 10px 10px 30px;
}
.hierarchy_link li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #EB6100;
  border-bottom: 2px solid #EB6100;
  transform: rotate(-45deg);
}
/* tablet */
@media print, screen and (min-width: 768px) {
  .hierarchy_link {
    margin: 100px 0;
  }
  .hierarchy_link .ttl {
    font-size: 2.4rem;
  }
  .hierarchy_link .inner {
    display: flex;
    flex-wrap: wrap;
  }
  .hierarchy_link li {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
    
  }
  .hierarchy_link li + li { margin-top: 0; }
  .hierarchy_link li:nth-child(3n) { margin-right: 0; }
  .hierarchy_link li a {
    font-size: 1.8rem;
    transition: .3s;
    padding: 16px 16px 16px 35px;
  }
  .hierarchy_link li a::before {
    left: 13px;
    top: 26px;
  }
  .hierarchy_link li a:hover {
    color: #000;
    border-color: #EB6100;
    background-color: #FFF6D1;
  }
}


/*--------------------------------------------------
	list_magazine
--------------------------------------------------*/
.list_magazine {
  display: flex;
  flex-wrap: wrap;
}
.list_magazine .item {
  width: 48%;
  margin: 0 4% 4% 0;
}
.list_magazine .item:nth-child(2n) {
  margin-right: 0;
}
.list_magazine .item a {
  display: block;
  color: #000;
  text-decoration: none;
}
.list_magazine .item img {
  border: 1px solid #ccc;
  width: 100%;
}
.list_magazine .ttl {
  font-weight: 500;
  color: #00693F;
  margin: 5px 0;
}
.list_magazine .icon_cat {
    font-size: 1.1rem;
    display: inline-block;
    vertical-align: top;
    background: #ebebeb;
    border-radius: 3px;
    padding: 2px 10px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_magazine .item,
  .list_magazine .item:nth-child(2n) {
    width: 31%;
    margin: 0 3.5% 3.5% 0;
  }
  .list_magazine .item:nth-child(3n) { margin-right: 0; }
  .list_magazine .ttl {
    font-size: 2rem;
  }
  .list_magazine .icon_cat {
      font-size: 1.4rem;
  }
}

/*--------------------------------------------------
	list_topics
--------------------------------------------------*/
/* list_topics */
.list_topics {
	margin-top: 20px;
	border: none;
}
.list_topics li {
  padding: 15px 0;
	border-bottom: 4px solid #E2F1EB;
}
.list_topics li a {
  color: #000;
  display: inline-block;
  text-decoration: none;
  padding: 0;
  width: 100%;
}
.list_topics li a:hover {
	color: #00693F;
	text-decoration: underline;
	background-color: transparent;
}
.list_topics li span {
  display: inline-block;
  vertical-align: top;
}
.list_topics li .date {
	font-size: 16px;
	font-family: "Poppins", "Noto Sans JP", sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
  display: block;
	width: 150px;
}
.list_topics li .icon_cat {
    font-size: 1.1rem;
    text-align: center;
    font-weight: normal;
    background: #EBEBEB;
    padding: 1px 8px;
    border-radius: 3px;
}
.list_topics li .cat_01 { background: #DFFFBF; }
.list_topics li .cat_02 { background: #BFDFFF; }
.list_topics li .cat_03 { background: #E4F4FC; }
.list_topics li .cat_04 { background: #FFF9E5; }
.list_topics li .cat_05 { background: #ECE5FF; }

.list_topics li .title {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.list_topics li .cat {
	display: none;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_topics li a {
    width: calc(100% - 155px);
  }
  .list_topics li .date {
    display: inline-block;
  }
}

/* PC */
@media print, screen and (min-width: 1200px) {
  .list_topics li {
    padding: 30px 0;
  }
}




/* .pager */
.pager {
  margin: 60px 0;
  padding: 50px 0;
  text-align: center;
  background: #FCF8ED;
}
.pager ul {
}
.pager ul li {
  font-size: 81.25%;
  margin: 3px;
  display: inline-block;
}
.pager a,
.pager span {
  color: #000;
  display: block;
  text-decoration: none;
  border: 1px solid #CCC;
  padding: 9px 16px;
  background-color: #fff;
}
.pager li.total span {
  border-color: #FFF;
}
.pager li.prev span,
.pager li.next span,
.pager li.first span,
.pager li.last span {
  border: 1px solid #ccc;
  color: #EDEDED;
}
.pager li.current span {
  color: #fff;
  background: #915E33;
}
.pager a:hover {
  color: #915E33;
  border: 1px solid #999;
  background: #EEEAD9;
}

/* link_prev_next */
.link_prev_next {
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
  padding-top: 40px;
}
.link_prev_next > li {
  display: inline-block;
  width: 80%;
  max-width: 300px;
}
/* .link_prev_next > li a {
  color: #000;
  border: 1px solid #ccc;
  display: block;
  padding: 16px 40px;
  text-decoration: none;
  transition: .3s;
  border-radius: 3px;
  position: relative;
}
.link_prev_next > li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  border: 5px solid transparent;
  border-right: 8px solid #aaa;
  margin-top: -5px;
}
.link_prev_next > li a:hover {
  background-color: #e6f6fd;
} */
/* pc */
@media print, screen and (min-width: 1200px) {
  .link_prev_next { margin-top: 80px; }
}


/*サムネイル付きトピックス*/
.list_thumb_topics {
    font-size: 0;
	margin-bottom: 30px;
}
.list_thumb_topics li {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
}
.list_thumb_topics li:nth-child(3n) {
	margin-right: 0;
}
.list_thumb_topics .thumb {
    position: relative;
    padding-bottom: 66.66%;
    overflow: hidden;
    background-color: #F8F6F0;
  border: 1px solid #ccc;
}
.list_thumb_topics .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}
.list_thumb_topics a { text-decoration: none; }
.list_thumb_topics .detail {
    font-size: 15px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px dotted #bbb;
}
.list_thumb_topics a:hover .detail { background-color: #f8f6f0; }

/*広報紙*/
.list_kouhou {
    font-size: 0;
	margin-bottom: 30px;
}
.list_kouhou .item {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
	text-align: center;
	border: 1px solid #bbb;	
}
.list_kouhou .item a { display: block; padding: 5px; }
.list_kouhou .item a:hover { background-color: #f5f4ef; }
.list_kouhou .item:nth-child(3n) {
	margin-right: 0;
}
.list_kouhou .ttl a {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #333;
}

/*---------------------------------------------------------------------
	top_ttl
---------------------------------------------------------------------*/
.top_ttl {
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
	line-height: 1;
	position: relative;
	margin-bottom: 15px;
}
.top_ttl .ja {
	display: block;
}
.top_ttl .en {
  color: #008C2E;
  display: inline-block;
  margin: 0 auto;
  background: #fff;
  padding: 0 15px;
  font-size: 1.3rem;
  font-family: 'Noto Serif JP';
  position: relative;
}
.top_ttl::before {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 6px;
    background: #00E84D;
    margin-left: -40%;
}

/* tablet */
@media screen and (min-width: 768px) {
	.top_ttl::before {
		width: 390px;
		margin-left: -195px;
	}
	
	#top a.btn_01 {
    width: 300px;
    min-width: auto;
	}
}

/* pc */
@media screen and (min-width: 1200px) {
	.top_ttl {
		font-size: 3.4rem;
		margin-bottom: 25px;
	}
	.top_ttl .en {
		font-size: 1.6rem;
	}
}




/*---------------------------------------------------
	beta
---------------------------------------------------*/
#beta {
  margin-top: 40px;
}
/* pc */
@media print, screen and (min-width: 1200px) {
  #beta {
    float: right;
    width: 20%;
    margin-top: 0;
  }
}

/*---------------------------------------------------
	sidemenu
---------------------------------------------------*/
.side_menu {}
.side_menu a {
	color: #000;
  display: block;
  text-decoration: none;
}
.side_menu a:hover {
  text-decoration: underline;
}
.side_menu .level_1 {
  border-top: 1px solid #ccc;
}
.side_menu .level_1 > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.side_menu .level_1 > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.side_menu .level_1 > li > a.selected,
.side_menu .level_1 > li > a:hover {
  color: #135729;
}
.side_menu .level_2 > li + li {}
.side_menu .level_2 > li > a {
	font-size: 1.4rem;
	border-bottom: 1px dotted #bbb;
	padding: 15px;
	position: relative;
}
.side_menu .level_2 > li > a::before {
	content: "";
	width: 2px;
	height: 20px;
	background: #BBBBBB;
	position: absolute;
	left: 0;
	top: 16px;
}
.side_menu .level_2 > li > a.selected,
.side_menu .level_2 > li > a:hover {
	color: #00CF45;
}
.side_menu .level_2 > li > a.selected::before,
.side_menu .level_2 > li > a:hover::before {
	background: #00E84D;
}

.side_menu .level_3 {
  margin:10px 0 10px 10px;
  background: #fafafa;
}
.side_menu .level_3 > li > a {
  padding: 10px;
  padding-left: 23px;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
  position: relative 
}
.side_menu .level_3 > li > a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}
.side_menu .level_3 > li > a.selected,
.side_menu .level_3 > li > a:hover {
  color: #135729;
}
.side_menu .level_3 > li > a.selected::before,
.side_menu .level_3 > li > a:hover::before {
	background: #00E84D;
}

.side_menu .level_4 {
  margin-left: 22px;
}
.side_menu .level_4 > li+ li {
  border-top: 1px dotted #ccc;
}
.side_menu .level_4 > li > a {
  padding: 8px;
  font-size: 1.4rem;
  position: relative;
}
.side_menu .level_4 > li > a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 15px;
    width: 7px;
    height: 7px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.side_menu .level_4 > li > a.selected,
.side_menu .level_4 > li > a:hover {
  color: #135729;
}
.side_menu .level_4 > li > a.selected::before,
.side_menu .level_4 > li > a:hover::before {
	border-left-color: #00E84D;
	border-bottom-color: #00E84D;
}

/*--------- beta -----------*/
.list_side_menu {
  border: 4px double #bdbdbd;
}
.list_side_menu+ .list_side_menu {
  margin-top: 30px;
}
.list_side_menu .ttl {
  font-size: 100%;
  color: #00693F;
  font-weight: bold;
  padding: 15px 10px;
  position: relative;
  background: #ececec;
}
.list_side_menu ul {
  padding: 10px;
}
.list_side_menu li {}
.list_side_menu li + li {
  border-top: 1px dotted #e0d7bc;
}
.list_side_menu li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 94%;
  padding: 7px 5px 7px 23px;
  position: relative;
}
.list_side_menu li a::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.list_side_menu li .date {
    display: block;
    font-size: 90%;
    font-weight: bold;
}
/* pc */
@media print, screen and (min-width: 1200px) {
  .list_side_menu li a { transition: .3s; }
  .list_side_menu li a:hover { background: #ECFDF1; }
}

/*------サイドバナー-------*/
.bnr_side li {
    font-size: 14px;
    text-align: center;
    margin: 0 0 10px;
}


/*---------------------------------------------------
	details : 詳細表
---------------------------------------------------*/
.details_item {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 15px;
	width: 100%;
}

.details_item_title {
	color: #fff;
	font-size: 1.8rem;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 15px;
	width: 100%;
	height: auto;
	background-color: #00693F;
	border-radius: 10px 10px 0 0;
}

.details_item_content {
	font-size: 1.6rem;
  line-height: 1.2em;
	padding: 15px 20px;
	width: 100%;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
}

/* プログラム詳細ページ用 */
.dir_program .details_item_title,
.dir_program .details_item_content {
  font-size: 16px;
}

/* 開催日程 */
.details_item_timetable {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap:20px;
}
.details_item_timetable ul {
  border-radius: 10px;
  overflow: hidden;
}
.details_item_timetable li {
  text-align: center;
  position: relative;
  padding: 1em 0;
  background-color: #E4EFFC;
}
.details_item_timetable .red li {
  background-color: #FDE2E2;
}

.details_item_timetable li:nth-of-type(1) {
  color: #fff;
  font-weight: bold;
  background-color: #78B0F0;
}
.details_item_timetable .red li:nth-of-type(1) {
  background-color: #F56D71;
}

.details_item_timetable li::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  border-top: 2px solid #fff;
}
.details_item_timetable li:nth-of-type(1)::after,
.details_item_timetable li:nth-last-of-type(1):after {
  content: none;
}

/* 対象学年 */
.details_item_target li {
  color: #D1D1D1;
  font-size: 14px;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 0 1em;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
}
.details_item_target li.active {
  color: #FFF;
  border: 1px solid #00693F;
  background-color: #00693F;
}

/*  */
.details_item_conent_block {
  display: block;
  margin-top: 0.5em;
}

/* 赤文字 */
.details_item_red {
  color: #C8004C;
}

/* 囲い文字 */
.details_item_option {
  color: #00693F;
  font-size: 0.87em;
  padding: 0 8px;
  margin-right: 0.5em;
  border: 1px solid #00693F;
  border-radius: 4px;
}

/* 注意事項 */
.details_caution {
  padding: 25px 15px; 
  margin-top: 40px;
  border: 4px solid #C8004C;
  border-radius: 10px; 
  background: #fff;
}
.details_caution_title {
  font-size: 2.4rem;
  font-weight: bold; 
  color: #C8004C;
  text-align: center;
  margin-bottom: 20px
}
.details_caution_title span {
    background: url(../image/icon/icon_error.svg) no-repeat 0 4px / 30px;
    padding-left: 30px;
}

/* Tablet */
@media print, screen and (min-width: 768px) {
  .details_item {
    flex-wrap: nowrap;
  }
  .details_item_title {
    padding: 15px;
    width: 16.66%;
    border-radius: 10px 0 0 10px;
  }
  .details_item_content {
    flex: 1;
    padding: 20px 15px 15px;
    border-radius: 0 10px 10px 0;
  }
  
  .details_item_timetable {
    flex-direction: row;
  }
  .details_item_timetable ul {
    flex: 1;
    max-width: 320px;
  }
  .details_caution {
    padding: 40px;
  }
  .details_caution_title {
    text-align: left;
  }
}

/* PC */
@media print, screen and (min-width: 1200px) {
  .details_item_title {
    font-size: 20px;
    padding: 0 30px;
  }
  
  .details_item_content {
    font-size: 20px;
    padding: 30px;
    width: 83.34%;
    
  }
}
/* PC */
@media print, screen and (min-width: 1920px) {
  .details_item_title {
    font-size: 24px;
    padding: 0 20px 0 50px;
  }
  .details_item_content {
    font-size: 24px;
    padding: 30px 20px 30px 50px;
    
  }
}


/*---------------------------------------------------------------------
	faq
---------------------------------------------------------------------*/
.list_faq + .lead_01 {
	margin-top: 60px;
}
.list_faq .item {
  border: 2px solid #00693F;
  border-radius: 10px;
  padding: 10px 15px;
}
.list_faq .item + .item {
  margin-top: 15px;
}
.list_faq .btn_q {
	font-size: 16px;
  font-weight: 500;
  position: relative;
}
.list_faq .btn_q::before,
.list_faq .btn_q::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -11px;
  width: 2px;
  height: 18px;
  background: #00693F;
  transition: .3s;
  border-radius: 10px;
}
.list_faq .btn_q::before {}
.list_faq .btn_q::after { transform: rotate(90deg); }

.list_faq .btn_q.on::before { transform: rotate(-90deg); background: #00693F; }
.list_faq .btn_q.on::after { transform: rotate(270deg); background: #00693F; }

.list_faq .btn_q >* {
  color: #000;
  cursor: pointer;
	display: block;
	line-height: 1.6;
	padding: 5px 25px 5px 27px;
	position: relative;
  background: url('../image/faq_q.png') no-repeat 0 1px/18px;
}
.list_faq .box_a {
    display: none;
    position: relative;
    padding: 20px 0 15px 27px;
    border-top: 2px dashed #00693F;
    margin-top: 15px;
  background: url('../image/faq_a.png') no-repeat 0 17px/18px;
}
.faq_contents {}
.faq_contents .icon_q {}
.faq_contents .icon_a {}


/* PC */
@media screen and (min-width: 1200px) {
  
  .list_faq .item + .item {
    margin-top: 30px;
  }
  .list_faq .btn_q >* {
    background-size: 32px;
    background-position: 40px 10px;
    padding: 25px 70px 25px 90px;
  }
  .list_faq .btn_q::before, .list_faq .btn_q::after {
    width: 5px;
    height: 30px;
    right: 45px;
  }
  .list_faq .box_a {
    margin: 10px 40px 0;
    background-size: 32px;
    padding: 20px 0 15px 50px;
    background-position: 0 7px;
  }
  

}



/*---------------------------------------------------------------------
	list-program : プログラム一覧
---------------------------------------------------------------------*/
.list_program_links {
    display: flex;
    flex-direction: column;
  flex-wrap: wrap;
    gap: 15px;
  margin-bottom: 25px;
}

.list_program_link {
  color: #00693F;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 15px 40px 15px 15px;
  border-radius: 10px;
  background-color: #D2FEE1;
}
.list_program_link img {
  margin-right: 15px;
  width: 44px;
}

.list_program_link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
  width: 19px;
  height: 15px;
  background: url('../image/arrow_btn.png') center center/contain;
}

.list_program_link:hover {
  color: #00693F;
  text-decoration: none;
  opacity: 0.7;
}

.list_program_attention {
  margin-bottom: 60px;
  padding: 20px 15px;
  border: 2px solid #00693F;
  border-radius: 10px;
}
.list_program_attention h3 {
  color: #00693F;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
}
.list_program_attention h3 img {
  margin-right: 5px;
  width: 34px;
  height: 34px;
}

.list_program_section {
  margin-bottom: 60px;
}

.list_program_section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
}

/* ---------- 各プログラム ---------- */
.list_programs {
  display: flex;
  flex-direction: column;
  gap:20px;
}

.list_program, .list_program:visited {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 20px;
  width: 100%;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  box-shadow: 0px 4px 0px #E6E6E6;
}
.list_program:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.7;
  transform: translateY(4px);
  box-shadow: none;
}

.list_program_image {
  object-fit: contain;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
  height: 190px;
  border-radius: 10px;
  object-fit: cover;
}

.list_program_title {
  color: #00693F;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.list_program_content {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.list_program_company {
  font-size: 12px;
  padding-top: 10px;
  border-top: 2px solid #E6E6E6;
}

/* カテゴリごとのカラー */
.list_program_link.cat_001, .list_program_section.cat_001 h3 { background-color: #D2E6FF; }
.list_program_link.cat_002, .list_program_section.cat_002 h3 { background-color: #FDE1EC; }
.list_program_link.cat_003, .list_program_section.cat_003 h3 { background-color: #FFEAC6; }
.list_program_link.cat_004, .list_program_section.cat_004 h3 { background-color: #E4DAF9; }
.list_program_link.cat_005, .list_program_section.cat_005 h3 { background-color: #D3F8D7; }
.list_program_link.cat_006, .list_program_section.cat_006 h3 { background-color: #F8F8C5; }

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_program_links {
    flex-direction: row;
  }
  .list_program_links li {
    width: calc(33.33% - 10px);
  }

  .list_programs {
    flex-direction: row;
    gap: 13px;
    flex-wrap: wrap;
  }
  .list_programs li {
    width: calc(33% - 7px);
  }
  .list_program, .list_program:visited {
    height: 100%;
  }

}

/* PC */
@media print, screen and (min-width: 1200px) {
  
  .list_program_links {
    gap: 30px 45px;
    margin-bottom: 60px;
  }
  .list_program_links li {
      width: calc(33.33% - 30px);
  }
  .list_program_link {
    font-size: 1.8rem;
    padding: 25px 80px 25px 30px;
  }
  .list_program_link img {
    width: 68px;
  }
  
  .list_program_attention {
    margin-bottom: 80px;
    padding: 40px 50px;
  }
  .list_program_attention h3 {
    font-size: 2.4rem;
  }
  
  .list_programs li {
    width: calc(25% - 10px);
  }
  .list_program_section {
    margin-bottom: 100px;
  }
  .list_program_section h3 {
    font-size: 2.4rem;
    padding: 15px 20px;
  }
  
  .list_program_image {
    height: 130px;
  }
}

/* PC */
@media print, screen and (min-width: 1920px) {
  .list_program_image {
    height: 160px;
  }
}



/*---------------------------------------------------------------------
	program-detail : プログラム詳細
---------------------------------------------------------------------*/
.program_overview {
  margin-bottom: 60px;
}
.program_overview_ttl {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.program_category {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 20px;
  padding: 10px 20px;
  width: fit-content;
  border-radius: 4px;
}

.program_category.cat_001 { background-color: #D2E6FF; }
.program_category.cat_002 { background-color: #FDE1EC; }
.program_category.cat_003 { background-color: #FFEAC6; }
.program_category.cat_004 { background-color: #E4DAF9; }
.program_category.cat_005 { background-color: #D3F8D7; }
.program_category.cat_006 { background-color: #F8F8C5; }

.program_overview h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}
.program_overview_link {
    text-align: right;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.program_slick_box {
  position: relative;
  margin-bottom: 20px;
}
.program_slick_box .slick-slide {
  position: relative;
  width: 100%;
  height: 47.5vw;
  overflow: hidden;
  border-radius: 10px;
}
.slick-slide img {
  object-fit: cover;
}

.program_slick_box .slick-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-list, .slick-track {
  height: 100%;
}

.program_slick_control {
  font-size: 18px;
  font-weight: bold;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.slick_prev, .slick_next {
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 0;
  width: 19px;
  height: 16px;
  border: none;
  background: transparent url('../image/arrow_btn.png') no-repeat center center/contain;
}
.slick_prev {
  transform: rotate(180deg);
}

.slick_position {
  color: #00693F;
  font-size: 25px;
  text-align: center;
  display: inline-block;
  width: 2em;
}

.slick_items {
  font-size: 16px;
  margin-left: 4px;
}

.program_overview_text {
  padding-left: 37px;
  background: url('../image/icon_comment.png') no-repeat top 3px left/22px 24px;
}

.program_detail {
  padding: 45px 0 60px;
  background-color: #FFF6C6;
}

@media print, screen and (min-width: 1200px) {
  .program_slick_box .slick-slide {
    height: 570px;
  }
  .program_slick_control {
    position: absolute;
    left: 50px;
    bottom: 40px;
    background: #fff;
    border-radius: 30px;
    padding: 5px 20px;
  }
}




/*---------------------------------------------------------------------
	gallery　フォトアルバム
---------------------------------------------------------------------*/
.list_gallery {
    width: 100% !important;
}
.list_gallery .item {
	float: left;
    /*width: 260px;*/
  width: 100%;
    margin-bottom: 20px;
}
.list_gallery .item a {
	color: #fff;
	display: block;
	position: relative;
}
.list_gallery .item img { width: 100%; }
.list_gallery .detail {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
}
.list_gallery .detail dl {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.list_gallery .detail .date {
	font-size: 15px;
	text-align: center;
}
.list_gallery .detail .ttl {
	font-size: 17px;
	text-align: center;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_gallery .item {
    width: 32%;
    margin: 0 1% 1% 0;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .list_gallery .item {
    width: 24%;
    margin: 0 1% 1% 0;
  }
  .list_gallery .detail {
    background: rgba(0,0,0,.6);
    -webkit-transform: rotateY(-90deg) rotateX(-90deg);
    transform: rotateY(-90deg) rotateX(-90deg);
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
  }
  .list_gallery a:hover .detail {
    -webkit-transform: rotateY(0) rotateX(0);
    transform: rotateY(0) rotateX(0);
    opacity: 1;
  }
}

/* gallery_detail */
.gallery_detail_head { margin-bottom: 30px; }
.gallery_detail_head .date {
	font-size: 17px;
	text-align: center;
}
.gallery_detail_head .ttl {
	font-size: 20px;
	font-weight: normal;
	text-align: center;
}
.gallery_detail_head .content {
	text-align: center;
	margin-top: 20px;
}


/*---------------------------------------------------------------------
	mailform
---------------------------------------------------------------------*/
/* progressbar */
.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  margin-bottom: 30px;
  
}
.progressbar li {
  color: #D1D1D1;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.progressbar li:after {
    position: absolute;
    z-index: 0;
    top: 35px;
    left: -50%;
    width: 100%;
    height: 4px;
    content: '';
    background-color: #D1D1D1;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #00693F;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
  color: #00693F;
}

.progressbar li .icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 0 10px;
  border-radius: 50%;
  background-color: #D1D1D1;
  z-index: 1;
  position: relative;
}
.progressbar li .step {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.progressbar li.active .icon{
  background: #00693F;
}
.progressbar li.complete .icon {
  background: #00693F;
}

.caution_box {
  border: 1px solid #00693F;
  border-radius: 10px;
  padding: 15px;
}
.caution_box .ttl {
  color: #00693F;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}


/*----- mailform -----*/
.bg_mail_form {
  background: #E2F1EB;
  margin-top: 40px;
  padding: 20px 10px 50px;
}
.mail_form {}
.form_inner {
  background: #fff;
  padding: 30px 15px;
  border-radius: 10px;
}
.form_inner_ttl {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #00693F;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.form_inner + .form_inner {
  margin-top: 30px;
}
.form_inner_item {}
.form_inner_item + .form_inner_item {
  border-top: 5px solid #E2F1EB;
  padding-top: 20px;
  margin-top: 30px;
}

.mail_form form {
  margin: 0 auto;
}
.mail_form form dl {
  margin-bottom: 15px;
}
.mail_form form dt {
  margin-bottom: 10px;
}
.mail_form form dd {}

.mail_form form .bg_on {
  background-color: #ececec;
  padding: 12px;
}
.mail_form form .bg_on label {
  /*width: 20%;*/
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.mail_form form .border_on {
  border: 1px solid #CCCCCC;
  padding: 12px;
}
.mail_form .btn_list {
  text-align: center;
  margin: 20px auto;
}
.mail_form .icon_required::before {
    content: "必須";
    color: #000;
    background: #FFE100;
    font-size: 80%;
    border-radius: 3px;
    padding: 2px 6px;
    margin-right: 10px;
}
.icon_required_p {
  color: #000;
    background: #FFE100;
  font-size: 80%;
  border-radius: 3px;
  padding: 2px 6px;
  margin-right: 10px;
}
.mail_form .error {
  color: #B60007;
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-top: 3px;
}
.form_errors {
    color: #d80000;
    border: 5px solid #e69898;
    text-align: left;
    padding: 20px;
    background: #fafafa;
    margin-bottom: 20px;
}
.mail_form.type_02 form {
  max-width: none;
}
.mail_form.type_02 form dl {
  max-width: 870px;
}
.mail_form.type_02 form dl dt {
  width: 35%;
}
.mail_form input,
.mail_form button,
.mail_form textarea,
.mail_form select {
  margin: 0;
  font-size: 16px;
  padding: 12px;
}
.mail_form input::placeholder {
 color: #A5A5A5;
}
.mail_form select,
.mail_form textarea,
.mail_form input[type="tel"],
.mail_form input[type="text"],
.mail_form input[type="email"],
.mail_form input[type="password"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  background-color: #F5F5F5;
  border-radius: 5px;
}
.mail_form .error_block select,
.mail_form .error_block textarea,
.mail_form .error_block input {
  border: 2px solid #C8004C;
}
.mail_form .error_block .btn_radio + label::before,
.mail_form .error_block .btn_checkbox + label::before {
  border-color: #C8004C;
}


.mail_form .size_s,
.mail_form input.size_s{
  width: 27%;
}
.mail_form .size_m,
.mail_form input.size_m {
  width: 50%;
}

.mail_form form .percent_100 { width: 100%; }
.mail_form form .percent_90 { width: 90%; }
.mail_form form .percent_80 { width: 80%; }
.mail_form form .percent_70 { width: 70%; }
.mail_form form .percent_60 { width: 60%; }
.mail_form form .percent_50 { width: 50%; }
.mail_form form .percent_40 { width: 40%; }
.mail_form form .percent_30 { width: 30%; }
.mail_form form .percent_20 { width: 20%; }
.mail_form form .percent_10 { width: 10%; }


.mail_form input[type="file"] {
  font-size: 16px;
}
.mail_form input[type="radio"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form input[type="checkbox"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: #F5F5F5;
  position: relative;
}
.mail_form .twin {
  display: flex;
  align-items: center;
  gap:10px;
}
.mail_form .twin li{
  flex: 1;
}
.mail_form .twin input {}

.mail_form textarea {
  width: 100%;
  height: 150px;
  background-color: #F5F5F5;
}
.mail_form input[type="text"]:focus,
.mail_form input[type="email"]:focus,
.mail_form textarea:focus,
.mail_form select:focus {
  box-shadow: 0 0 7px #00693F;
}
.btm_text {
  margin-top: 40px;
  text-align: center;
}
.mail_form input[type="submit"] {
    color: #fff;
    padding: 1em;
    background-color: #00693F;
    border: none;
    border-radius: 40px;
    box-shadow: 0 5px 0 #A8AEB2;
    width: 80%;
    max-width: 900px;
  display: block;
    margin: auto;
}
.mail_form .btm_back {
    text-align: center;
    margin-top: 20px;
}
.mail_form .btm_back a {}
.mail_form .submit_button:hover {
    background-color: #014B2E;
    position: relative;
    top: 10px;
    box-shadow: none;
}
.mail_form input[type="reset"],
.mail_form input.back {
    color: #00693F;
    font-weight: bold;
    background: #fff url(../image/icon/arrow_btn_l.svg) no-repeat left 23px center / 18px;
    box-shadow: none;
}
.mail_form input[type="reset"]:hover,
.mail_form input.back:hover {
  background-color: transparent;
}
a.btn_backhome {
  color: #fff;
  font-weight: bold;
  padding: 11px;
  background: #00693F url("../image/icon/arrow_btn_l_white.svg") no-repeat 15px center;
  text-decoration: none;
  display: inline-block;
  width: 80%;
  max-width: 260px;
  border-radius: 50px;
}
a.btn_backhome:hover {
  color: #00693F;
  background-color: #00693F;
}
.form_message {
  background: #FFEEEE;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  margin-bottom: 30px;
}
.form_message .ttl {
    color: #C8004C;
    font-weight: bold;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
}
.form_message .ttl img {
    width: 24px;
}
.form_message .btm_text {
  margin-top: 20px;
}


/* btn_radio  btn_checkbox */
.btn_radio, .btn_checkbox {
  display: inline-block;
  margin-right: 6px;
}
.btn_radio + label, .btn_checkbox + label {
  cursor: pointer;
  display: block;
  padding: 0 0 0 30px;
  position: relative;
}
.btn_radio.size_s + label, .btn_checkbox.size_s + label {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
}
.btn_radio, .btn_checkbox {
  display: none;
  margin: 0;
}
.btn_radio + label, .btn_checkbox + label {
  padding-left: 32px;
  color: #000;
  transition: all .2s;
  -webkit-transition: all .2s;
}
.btn_radio:checked + label,
.btn_checkbox:checked + label {}

.btn_radio + label::before,
.btn_checkbox + label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  background: #FFF;
}
.btn_radio + label::before {
  border: 1px solid #D1D1D1;
  border-radius: 30px;
}
.btn_checkbox + label::before {
  border: 1px solid #D1D1D1;
  border-radius: 5px;
}
.btn_radio:checked + label::after,
.btn_checkbox:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.btn_radio:checked + label::after {
  left: 9px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #00693F;
  border-radius: 8px;
}
.btn_checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: url(../image/icon/check.svg) no-repeat 0 0 / contain;
}


.input_btn_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1.7;
}

.input_btn_list li {}

.input_btn_list label {
    margin: 0 !important;
}

.mail_form input.input_other {
  display: none;
  width: auto;
  margin-left: 10px;
  padding: 10px;
}
.confirm_list {
  margin-bottom: 80px;
}
.confirm_list .form_inner {
  border: 1px solid #00693F;
}



/* tablet */
@media print, screen and (min-width: 768px) {
  /* progressbar */
  .progressbar {
    margin: 70px auto 80px;
  }
  .progressbar li,
  .progressbar li .step {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .progressbar li .icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  .progressbar li:after {
    top: 55px;
  }
  
  /* caution_box */
  .caution_box {
    padding: 40px 50px;
  }
  .caution_box .ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  
  /* .form_message */
  .form_message {
    padding: 40px 30px;
  }
  
  
  /* form */
  .bg_mail_form {
    padding: 70px 40px 100px;
    margin-top: 80px;
  }
  
  .form_inner {
    padding: 40px 50px;
  }
  .form_inner + .form_inner {
    margin-top: 40px;
  }
  .form_inner_ttl {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  
  .btn_radio + label,
  .btn_checkbox + label {
    padding-left: 42px;
  }
  .btn_radio + label::before,
  .btn_checkbox + label::before {
    width: 24px;
    height: 24px;
    border-width: 2px;
    top: 2px;
  }
  .btn_radio:checked + label::after {
    width: 14px;
    height: 14px;
    margin-top: -6px;
    left: 10px;
  }
  .btn_checkbox:checked + label::after {
    width: 22px;
    height: 16px;
    top: 6px;
  }
  
  .mail_form .error {
    font-size: 1.6rem;
  }
  .mail_form .error img { width: 24px; }
  
  .mail_form input[type="submit"] {
    font-size: 3.6rem;
    font-weight: bold;
    padding: 24px;
    border-radius: 60px;
    box-shadow: 0 10px 0 #A8B2AB;
  }
  .mail_form input[type="reset"],
  .mail_form input.back {
    box-shadow: none;
    max-width: 260px;
    font-size: 1.8rem;
    padding: 10px;
  }
  .mail_form .btm_back {
    margin-top: 50px;
    font-weight: 500;
    font-size: 1.8rem;
  }
  
}

/* PC */
@media print, screen and (min-width: 1200px) {
  .mail_form form dl {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .mail_form form dt {
    width: 280px;
  }
  .mail_form form dd {
    flex: 1;
  }
}

/*---------------------------------------------------------------------
	404
---------------------------------------------------------------------*/
.thumb_404 {
  margin-right: 40px;
  float: left;
  width: 20%;
}
.border_box {
  padding: 20px;
  border: 10px solid #fbf4e8;
}
.border_box > ul {
  color: #FF7F00;
  padding-left: 20px !important;
}

.error_head {
  color: #00693F;
  font-size: 24px;
}
.error_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

/* Tablet */
@media print, screen and (min-width: 768px) {
  .error_btns {
    justify-content: space-between;
  }
}

/*---------------------------------------------------------------------
	search
---------------------------------------------------------------------*/
/* google カスタム検索の調整 */
.site_search {}
.site_search #___gcse_0 {
    background: #EDFDF2;
    padding: 15px;
}
.site_search #___gcse_0 .gsc-control-searchbox-only {
  max-width: 500px;
  margin: 0 auto;
}
.site_search table,
.site_search table.gsc-search-box td,
.site_search table.gsc-search-box td.gsc-input {
  padding: 0;
  border: none;
}
.site_search .gsc-adBlock {
    display: none;
}

/* pc */
@media screen and (min-width: 1200px) {
  
  .site_search #___gcse_0 {
    padding: 30px;
  }
  .site_search input#gsc-i-id1 {
    padding: 10px !important;
  }
  .site_search button.gsc-search-button {
    padding: 15px 27px;
    margin-left: 10px;
  }
  .site_search .gsc-above-wrapper-area-container {
    border: none;
  }
  .site_search .gsc-above-wrapper-area-container td {
    border: none;
    padding: 0;
  }
  .site_search .gsc-selected-option-container {
    box-sizing: content-box;
  }
  .site_search .gsc-webResult.gsc-result {
    border: 1px solid #e9e9e9;
    margin: 20px 0;
    padding: 15px 20px;
  }
  .site_search .gsc-results { width: 100%; }
  .site_search .gsc-cursor-box.gs-bidi-start-align {
    text-align: center;
  }
  .site_search .gsc-cursor-page {
    font-size: 1.6rem;
    border: 1px solid #ccc;
    padding: 7px 15px;
    border-radius: 3px;
    display: inline-block !important;
  }
  .site_search {}
  
}



.list_search {}
.list_search .item {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
}
.list_search .item + .item {margin-top: 20px; }
.list_search .ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
.list_search .url {
    color: #808080;
    font-size: 1.2rem;
    margin: 5px 0;
}

/*---------------------------------------------------------------------
	sitemap
---------------------------------------------------------------------*/
.list_sitemap {
  padding: 30px 20px;
  border: 1px solid #00693F;
  border-radius: 10px;
}
.list_sitemap a:hover {
  opacity: .8;
}

.list_sitemap .level01 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 15px;
}
.list_sitemap * + .level01 {
  margin-top: 40px;
}
.list_sitemap .level01 > a {
    display: block;
    background-size: 50px;
    text-decoration: underline;
    color: #00693F;
    font-size: 16px;
    position: relative;
    border-radius: 3px;
}
.list_sitemap .level01 > a::before {
  content: '';
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 0.5em;
  width: 16px;
  height: 16px;
  background: url('../image/arrow_circle.png') no-repeat center center/contain;
}

.list_sitemap .level02 {
  font-size: 0;
  margin-left: 16px;
}
.list_sitemap .level02 >li {
  font-size: 16px;
  border-bottom: 1px dashed #00693F;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 0 0 1.66% 0;
}

.list_sitemap .level02 >li > a {
    display: block;
    text-decoration: underline;
    padding: 12px;
    border-radius: 3px;
    color: #00693F;
    position: relative;
}

.list_sitemap .level03,
.list_sitemap .level04,
.list_sitemap .level05 {
  color: #00693F;
  margin-top: 10px;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 36px;
}
.list_sitemap .level04,
.list_sitemap .level05 {
  margin-left: 24px;
}
.list_sitemap .level03 li + li {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .list_sitemap .level02 >li {
    width: 40%;
    margin: 0 5% 1.6% 0;
  }
  .list_sitemap .level02 >li:nth-child(2n) {
    margin-right: 0;
  }
}

/* PC */
@media screen and (min-width: 1024px) {
  .list_sitemap {
    padding: 50px;
  }
  .list_sitemap .level02 >li {
    width: 30%;
  }
  .list_sitemap .level02 >li:nth-child(2n) {
    margin-right: 5%;
  }
  .list_sitemap .level02 >li:nth-child(3n) {
    margin-right: 0;
  }
}


/*---------------------------------------------------------------------
  error
---------------------------------------------------------------------*/
.error_message {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 40px 0;
  width: 91.66%;
  border-radius: 10px;
  background-color: #E2F1EB;
}


/*---------------------------------------------------------------------
  js-inview
---------------------------------------------------------------------*/
/* 管理画面で見えなくなるので…#container */
#container .js_slide_up {
  opacity: 0;
  position: relative;
  top: 50px;
}
#container .js_slide_down {
  opacity: 0;
  position: relative;
  top: -50px;
}
#container .js_slide_left {
  opacity: 0;
  position: relative;
  left: -50px;
}
#container .js_slide_right {
  opacity: 0;
  position: relative;
  right: -50px;
}
#container .js_fade {
  opacity: 0;
}

/*---------------------------------------------------------------------
	page_scroll
---------------------------------------------------------------------*/
#page_scroll_navi {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: -22px;
    margin-left: -22px;
}
#page_scroll_navi a {
    display: block;
    width: 44px;
}

/* pc */
@media screen and (min-width: 1200px) {
	#page_scroll_navi {
    left: auto;
    right: 30px;
		margin: 0;
    top: -30px;
}
	#page_scroll_navi a {
		width: 60px;
	}
}

/*---------------------------------------------------------------------
	site_footer
---------------------------------------------------------------------*/
#site_footer {
  background: #00693F;
  text-align: center;
  padding: 50px 20px;
  position: relative;
}
#site_footer .inner { padding: 10px; }

.footer_sitename {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.footer_text {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}

.footer_navi {
  color: #fff;
  display: block;
  margin: 40px auto 0;
  padding: 30px 0 0;
  width: 100%;
  max-width: 1200px;
  border-top: 1px solid #fff;
  background: #00693F;
}

a.footer_navi_link, a.footer_navi_link:visited {
  color: #fff;
    text-decoration: none;
    display: block;
    font-size: 1.5rem;
  padding: 10px;
}
a.footer_navi_link:hover {
  color: #FFE100;
  text-decoration: none;
}
.footer_contact { display: none; }

.copyright {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  background-color: #014B2E;
  padding: 7px 0;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  #site_footer .inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer_sitename {
    font-size: 2.8rem;
  }
  footer .footer_contact {
    text-decoration: none;
    color: #00693F;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    position: absolute;
    left: 0;
    top: 18px;
    background: #fff url(../image/icon/mail.svg) no-repeat center top 15px;
    width: 174px;
    padding: 45px 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px  0 #AEAEAE;
    transition: .1s;
  }
  footer .footer_contact:hover {
    top: 23px;
    box-shadow: none;
    background-color: #FFE100;
  }
  .footer_navi {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0 0;
  }
  .copyright {
    font-size: 1.5rem;
  }
}


/* TSUNAGU CITY 2026 リンク (PCヘッダー用) */
.link_tsunagu_city {
  display: none; /* スマホ・タブレットでは非表示 */
}

@media print, screen and (min-width: 1200px) {
  .link_tsunagu_city {
    display: block;
    position: absolute;
    top: 65px;     /* お問い合わせボタンと中心を揃えるために調整 */
    right: 360px;  /* お問い合わせボタン(幅280px + 右60px)の左側に20pxの余白 */
    color: #fff !important;   /* 緑背景に合わせて白文字に変更 */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 101; /* ヘッダー要素より確実に上に表示 */
  }
  .link_tsunagu_city:link,
  .link_tsunagu_city:visited,
  .link_tsunagu_city:active {
    color: #fff !important;   /* 全ての状態で白色を保証 */
  }
  .link_tsunagu_city:hover {
    color: #fff !important;
    text-decoration: underline;
    opacity: 0.9;
  }
}
