@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

ul,
ol {
  margin-left: 1em;
  list-style-position: outside;
}

table {
  border-collapse: collapse;
}

table th {
  padding: 5px;
  border: 1px solid #BBBBBB;
}

table td {
  padding: 5px;
  border: 1px solid #BBBBBB;
}



/*font*/
.kosugi-maru-regular {
  font-family: "Kosugi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900*/

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/*font*/


a {
  color: #1A4C6C;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  color: #E1001C;
}

a:active {
  color: #CC0066;
}



.photo {
  border: 10px solid #FFF;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  box-shadow: 1px 1px 4px #ccc;
  -moz-box-shadow: 1px 1px 4px #ccc;
  -webkit-box-shadow: 1px 1px 4px #ccc;
}

/*---------------------------------------------------------
  						clearfix
---------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

.clea {
  clear: both;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
    height: auto;
    overflow: hidden;
    /**/
}



h1 {
  width: 500px;
  padding-top: 15px;
}

h1 img {
  width: 100%;
}

#enmei {
  width: 20em;
  text-align: left;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.68);
  border-radius: 15px;
}

h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  background-image: url(images/bg_h2.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 60px;
}



h3 {
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  text-align: left;
  color: #67210D;
  font-size: 24px;
  -moz-background-size: 100% auto;
  font-weight: normal;
  padding-bottom: 20px;
  padding-left: 45px;
  margin-top: 20px;
  padding-top: 20px;
  background-image: url(images/list3.png);
  background-position: left center;
  background-repeat: no-repeat;
  border-bottom: 2px dashed #FF9B00;
}


h4 {
  text-align: left;
  font-size: 20px;
  font-weight: normal;
  color: #F84C67;
  margin-top: 10px;
  margin-bottom: 10px;
}

img {
  vertical-align: bottom;
  border: 0px;

}






/*ページ構成*/
html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  width: 100%;
  text-align: center;
  font-family: "Kosugi Maru", serif;
  font-size: 16px;
  color: #564235;
  background-position: center top;
  background-image: url(images/bg_body.png);
  background-color: #F5E5CE;
  line-height: 1.7em;
}


#system_main {
  width: 100%;
  text-align: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  position: relative;
}


header {
  width: 100%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  background-image: url(images/bg_header.png), url(images/bg_body2.png);
  background-repeat: no-repeat, repeat;
  background-position: center top;
}

#headerbox {
  margin-right: auto;
  margin-left: auto;
  width: 1200px;
  display: flex;
  justify-content: space-between;
}




/*gnavi*/
nav {
  width: 100%;

  background-color: #FFEBA9;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style-type: none;
  margin-left: auto;
  margin-right: auto;
}

.gnavi__wrap {
  width: 100%;
  margin: 0 auto;
}

.gnavi__lists {
  display: flex;
}

.gnavi__list {
  width: calc(100% / 6);
  height: 60px;
  background-color: #fff;
  position: relative;
  transition: all .3s;
}

.gnavi__list:hover {
  background-color: #EF667B;
}

.gnavi__list:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #B07565;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}

.gnavi__list:hover::before {
  background-color: #A63869;
}

.gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #473519;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all .3s;
}

.gnavi__list:hover a {
  color: #fff;
}

.dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #004d80;
  height: 60px;
  transition: all .3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #003558;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

.dropdown__lists {
  visibility: hidden;
  /*デフォルトでは非表示の状態にしておく*/
  opacity: 0;
  /*不透明度0*/
  transition: all .3s;
  /*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  visibility: visible;
  /*Gナビメニューにホバーしたら表示*/
  opacity: 1;
  /*不透明度1*/
}

/*gnav*/




#sidemenu {
  position: fixed;
  right: 0px;
  top: 125px;
  z-index: 999;
}

#sidemenu ul {
  list-style: none;
  margin-right: auto;
  margin-left: auto;
}

#sidemenu ul li {
  margin-bottom: 7px;
}

#sidemenu_sp {
  display: none;
  background-color: #75C11D;
}


footer {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}

footer .copy {
  text-align: center;
  font-size: 12px;
  color: #5A3D1C;
  margin-right: auto;
  margin-left: auto;
}

footer .copy img {
  height: 30px;
}

footer ul {
  margin-right: auto;
  margin-left: auto;
  width: 30%;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

footer li {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;

}

footer li a {
  display: block;
  padding: 10px;
  color: #484E4E;
}

footer li:nth-child(1) {
  background-color: #DCC6AD;
}

footer li:nth-child(2) {
  background-color: #8CF4D5;
}

footer li:nth-child(3) {
  background-color: #A0C5E1;
}

footer li:nth-child(4) {
  background-color: #FCBED3;
}

footer li:nth-child(5) {
  background-color: #FF7676;
}

.pagetop {
  text-align: right;
  padding-top: 1em;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 1em;
  width: 94%;
}

.anchor {
  padding-top: 100px;
  /* ヘッダーの高さを入力 */
  margin-top: -100px;
  /* ヘッダーの高さを入力 */
}

/*スライダー*/

#topslide {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

#topimg2 {
  position: absolute;
  bottom: -2px;
  left: 0px;
}

#topimg1 {
  position: absolute;
  top: 0px;
  right: 0px;
}

#topimg1 img {
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  vertical-align: top;
}

#topimg2 img {
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.slider div img {
  height: 40vw;
  object-fit: cover;
}


main {
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  display: block;
  background-color: #ECECEC;
  padding-top: 50px;
  -webkit-box-shadow: 0px 0px 6px #AF9595;
  box-shadow: 0px 0px 6px #AF9595;
}

/* トップ */

#news {
  margin-bottom: 50px;
}

#news div {
  text-align: left;
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  border-radius: 20px;
  margin-bottom: 60px;
}

#news ul {
  text-align: left;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

#news li {
  text-align: left;
  border-bottom: 1px dashed #DB8DA3;
  margin-bottom: 10px;
  padding-bottom: 10px;
  background-image: url(images/flower4.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
  padding-top: 10px;
  list-style-type: none;
}

#policy {
  margin-bottom: 50px;
}

#policy div {
  text-align: left;
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  border-radius: 20px;
  margin-bottom: 60px;
}

#kihon {
  margin-bottom: 50px;
}

#kihon div {
  text-align: left;
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  border-radius: 20px;
  margin-bottom: 60px;
}

#kihon table {
  margin-right: auto;
  margin-left: auto;
  width: 48%;
  border-spacing: 4px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
}

#kihon th {
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  text-align: left;
  font-weight: normal;
  border-width: 0px;
  border-bottom: 2px dashed #FFBF36;
  font-size: 1.1rem;
  background-color: #FFF0D2;
}

#kihon td {
  padding-top: 0.6em;
  padding-right: 0.6em;
  padding-left: 0.6em;
  padding-bottom: 0.6em;
  text-align: left;
  background-color: #FFFFFF;
  border-width: 0px;
  border-bottom: 2px dashed #FFBF36;
}

#map {
  margin-bottom: 20px;
  width: 48%;
}

#map iframe {
  width: 100%;
  height: 330px;
}

.flex {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
}



#outline {
  margin-bottom: 80px;
}

#outline table {
  margin-right: auto;
  margin-left: auto;
  border-spacing: 4px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  width: 100%;
}

#outline th {
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  text-align: left;
  font-weight: normal;
  border-width: 0px;
  border-bottom: 2px dashed #FFBF36;
  font-size: 1.1rem;
  background-color: #FFF0D2;
}

#outline td {
  padding-top: 0.6em;
  padding-right: 0.6em;
  padding-left: 0.6em;
  padding-bottom: 0.6em;
  text-align: left;
  background-color: #FFFFFF;
  border-width: 0px;
  border-bottom: 2px dashed #FFBF36;
}


#download {
  margin-bottom: 80px;
}

#download ul {
  text-align: left;
  padding: 1em;
  background-color: #FFF4DA;
  border-radius: 20px;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

#download li {
  text-align: left;
  border-bottom: 1px dashed #A89888;
  margin-bottom: 15px;
  padding-bottom: 10px;
  background-image: url(images/list_file2.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-left: 40px;
  padding-top: 5px;
}


#tokushoku {
  margin-bottom: 80px;
}

.ttxt {
  margin-bottom: 20px;
  text-align: center;
}

.tflex article dl {}

.tflex article dt {
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
  text-align: left;
  font-weight: normal;
  background-color: #FFDE6E;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tflex article dd {
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  text-align: left;
  background-color: #FFFEFB;
  border-width: 0px;
}

.tflex {
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.tflex article {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 30px;
}

.tflex article img {
  width: 100%;
  border-radius: 20px;
}

.tflex article figure {
  margin-top: 10px;
  padding: 20px;
}



#floor {
  margin-bottom: 80px;
}

.photoflex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 15px;
}

.photoflex figure {
  width: calc(100% / 4 - 2%);
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
}

.photoflex figure img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 170px;
}

.photoflex figure figcaption {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  margin-top: 10px;
}



#daily {
  margin-bottom: 50px;
}

#daybox {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-bottom: 30px;

}

#day1 {
  width: calc(50% - 20px);
  background-color: #FFE9C1;
  padding: 20px;
  border-radius: 20px;

}

#day1 th {
  white-space: nowrap;
  background-color: #FDB836;
  padding: 7px;
  color: rgba(255, 255, 255, 1.00);
  border-width: 0px;
}

#day2 {
  width: calc(50% - 20px);
  background-color: #CCE5F8;
  padding: 20px;
  border-radius: 20px;
}

#day2 th {
  white-space: nowrap;
  background-color: #339AE4;
  padding: 7px;
  color: rgba(255, 255, 255, 1.00);
  border-width: 0px;
}

#daybox img {
  width: 100%;
}

#daybox table {
  border-spacing: 8px;
  margin-bottom: 10px;
  border-collapse: separate;
  width: 100%;
}

#daybox td {
  padding: 7px;
  background-color: #FFFFFF;
  text-align: left;
  border-width: 0px;
}

#daybox caption {

  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-radius: 10px;
  margin-bottom: 4px;
  margin-left: 5px;
  margin-right: 5px;
}

.daymidashi1 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0058A0;
  background-color: #E8F3F9;
}

.daymidashi2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #B51446;
  background-color: #FFDCDD;
}

#daybox p a {
  width: 70%;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 7px;
  font-size: 1.1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#daybox p a:hover {
  background-color: rgba(120, 67, 21, 1.00);
  color: rgba(255, 255, 255, 1.00);
}


#event {
  margin-bottom: 50px;
}

#eventbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

#eventbox table {
  width: 65%;
  border-spacing: 4px;
  margin-bottom: 10px;
  border-collapse: separate;
}

#eventbox td {
  padding: 7px;
  background-color: #FFFFFF;
  text-align: left;
  border-width: 0px;
}

#eventbox tr th {
  white-space: nowrap;
  padding: 7px;
  color: rgba(255, 255, 255, 1.00);
  border-width: 0px;
}

#eventbox tr:nth-child(1) th {
  background-color: #F5859E;
}

#eventbox tr:nth-child(2) th {
  background-color: #F585C3;
}

#eventbox tr:nth-child(3) th {
  background-color: #EC87EB;
}

#eventbox tr:nth-child(4) th {
  background-color: #CE8CE7;
}

#eventbox tr:nth-child(5) th {
  background-color: #9B8CE7;
}

#eventbox tr:nth-child(6) th {
  background-color: #8CB5E7;
}

#eventbox tr:nth-child(7) th {
  background-color: #8CCEE7;
}

#eventbox tr:nth-child(8) th {
  background-color: #84DBC6;
}

#eventbox tr:nth-child(9) th {
  background-color: #91D870;
}

#eventbox tr:nth-child(10) th {
  background-color: #A6C858;
}

#eventbox tr:nth-child(11) th {
  background-color: #EFC23E;
}

#eventbox tr:nth-child(12) th {
  background-color: #E79C63;
}

#eventbox tr:nth-child(13) th {
  background-color: #DC7664;
}


#eventbox ul {
  width: 30%;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

#eventbox ul li {
  margin-bottom: 16px;
}

#eventbox ul img {
  width: 100%;
  object-fit: cover;
  height: 220px;
  border-radius: 10px;
}



#recruit1 {
  margin-bottom: 50px;
}

#recruit1 div {
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFFFFF;
}






#recruit2 {
  margin-bottom: 50px;
}

#recruit2 dl {
  padding-top: 20px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 20px;
  background-color: #FFFFFF;
}

#recruit2 dt {
  text-align: left;
  font-size: 1.2em;

  padding-bottom: 5px;
  padding-top: 5px;
}

#recruit2 dd {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: nowrap;
  border-bottom: 2px dashed hsla(70, 93%, 39%, 1.00);
}

.rtxt {
  width: 80%;
  text-align: left;
}

.rpdf {
  width: 20%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.rpdf a {
  display: block;
  background-color: #ECECEC;
  padding: 7px;
  width: 100%;
  color: #563E3E;
  border-radius: 6px;
  text-align: center;
}

.rpdf a:hover {
  background-color: #E9385E;
  color: #FFFFFF;
}



#recruit3 {
  margin-bottom: 50px;
}

#recruit3 dl {
  padding: 30px;
  background-color: #FDFFE2;
  margin-bottom: 30px;
  border-radius: 20px;
}

#recruit3 dt {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.2em;
  background-image: url(images/lists4.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-left: 30px;
  border-bottom: 3px double hsla(37, 100%, 68%, 1.00);
  padding-bottom: 10px;
  padding-top: 2px;
}

#recruit3 dd {
  text-align: left;
  margin-bottom: 10px;
}



#blog {
  margin-bottom: 50px;
}

#blog h4 {
  width: 100%;
  background-color: #FFBCE7;
  letter-spacing: 2px;
  border-radius: 10px;
  border-width: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  background-repeat: repeat;
  background-image: url(images/bg240.png);
  color: #460708;
}

#blogbox {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
}

#blogside {
  width: 26%;
  margin-bottom: 20px;
}

#blogside ul {
  counter-reset: list;
  list-style-type: none;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
  text-align: left;
  background-color: #FFFFFF;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  border-radius: 20px;
}

#blogside ul li {
  position: relative;
  padding-top: 0;
  padding-right: 0;
  padding-left: 20px;
  margin-top: 7px;
  margin-right: 0;
  margin-left: 0px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 30px;
  border-bottom: 1px dashed #9FA0A0;
}

#blogside ul li:before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #FF91BC;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#blogside ul li:after {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


#blog_o {
  text-align: center;
  width: 70%;
  margin-top: 0px;
  margin-bottom: 20px;
}

#blog .blogmain {
  text-align: center;
  margin-bottom: 55px;
  padding: 30px;
  background-color: #FFFFFF;
  margin-bottom: 30px;
  border-radius: 20px;
}

#blog table {
  width: 100%;
  border-spacing: 6px 6px;
  padding-bottom: 10px;
}

#blog table tr .blogtext {
  text-align: left;
  padding-left: 30px;
  width: auto;
  background-repeat: no-repeat;
  background-position: left top;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-top: 10px;
  background-color: #FBF7E5;
  border-radius: 15px;
  border-width: 0px;
}


#blog .blogphoto {
  width: 33%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-width: 0px;
}


#blog .blogphoto img {
  width: 98%;
  border-radius: 10px;
}

#blog table tr .blogcomment {

  font-size: 75%;
  text-align: center;
  padding: 5px;
  margin: 5px;
  background-color: #FFF276;
  border-radius: 7px;
}

#blog .blogdate {
  font-size: 12px;
  text-align: right;
  padding: 5px;
  border-radius: 6px;
  width: auto;
  background-color: #FBF7E5;
  border-width: 0px;
}

#blog dl {}

#blog dt {
  text-align: center;
}

#blog dd {
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  border-radius: 10px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #FBF7E5;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.blogyoutube {
  text-align: center;

  border-width: 0px;
}

.blogpdf {
  text-align: center;
  padding: 10px;
  border-width: 0px;
}

.blogpdf a {
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  padding: 6px;
  display: block;
  background-color: #D1F4FF;
  border-radius: 12px;
  color: #4D330D;
  text-decoration: none;
  background-image: url(images/bg240.png);
}

.blogpdf a:hover {
  background-color: #096B7B;
  color: #FFFFFF;
  background-image: url(none);
}





.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 15px;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


/*ページ送り*/
.pager ul.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}


.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background-color: #F99A20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  font-size: 0.9em;
}

.pager .pagination li:has(.next),
.pager .pagination li:has(.prev) {
  display: none;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
  color: #000;
  background-color: #FFFFFF;
  border-radius: 50%;
}



@media screen and (max-width:768px) {

  header,
  footer,
  main,
  #mainnav,
  #mainnav ul,
  #system_main {
    width: 100%;
    height: auto;
  }

  #system_main {}


  /*gnavi*/
  .gnavi__wrap {
    width: 100%;
    margin: 0 auto;
  }

  .gnavi__lists {
    display: flex;
    flex-wrap: wrap;
  }

  .gnavi__list {
    width: calc(100% / 3);
    height: 60px;
    border-bottom: 1px solid #B07565;
  }

  .dropdown__list {
    display: none;
  }

  /*gnavi*/


  h1 {
    width: 70%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  #enmei {
    margin-left: auto;
    margin-right: auto;
  }

  #headerbox {
    margin-right: auto;
    margin-left: auto;
    width: auto;
    display: block;
  }

  header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  main {
    margin-top: auto;
    margin-bottom: auto;
    width: auto;

    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }




  .pagetop {
    text-align: right;
    padding-bottom: 10px;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  footer .copy img {
    width: 80%;
    height: auto;
  }

  footer .address img {
    width: 80%;
  }

  #kihon table {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }

  #map {
    width: 100%;
  }

  footer ul {
    width: 100%;
  }



  .photoflex figure {
    width: calc(100% - 2%);
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 20px;
  }

  .photoflex figure img {
    height: auto;
  }




  #blog td {
    width: auto;
    display: block;
  }

  #blog table tr .blogphoto {
    width: auto;
    padding: 10px;
  }

  #blogside,
  #blog_o {
    width: 100%;
  }



  /*ページ送り*/
  .pager .pagination li.pre,
  .pager .pagination li.next {
    display: inline-block;
    width: 40%;
    height: 40px;
    text-align: center;

  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a {
    width: 100%;
    text-align: center;

  }

  .pager .pagination li.pre span::after {
    content: "　前の10件へ";
  }

  .pager .pagination li.next span::before {
    content: "次の10件へ　";

  }



  .pager .pagination li {
    border-radius: 0%;
  }

  .pager .pagination li a:hover,
  .pager .pagination li a.active {
    border-radius: 0%;
  }



}

@media screen and (max-width:480px) {

  header {
    width: 100%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 20px;
    padding-top: 15px;
    background-image: url(images/bg_header_sp.png), url(images/bg_body2.png);
    background-repeat: no-repeat, repeat;
    background-position: center top;
    background-size: 100% auto, auto auto;
  }

  h1 {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }

  h2 {
    margin-bottom: 30px;
    background-image: url(images/bg_h2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 50px;
    background-size: 100% auto;
  }


  h3 {
    font-size: 20px;
  }


  footer .copy img {
    width: 100%
  }

  .pagetop img {
    width: 30%;
  }


  #sidemenu {
    display: none;
  }

  footer {
    padding-bottom: 100px;
  }

  #sidemenu_sp {
    display: block;
    background-color: #8FC32A;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
  }

  #sidemenu_sp ul {
    padding: 10px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    font-size: 0.5em;
  }

  #sidemenu_sp ul li {
    width: 100%;
    background-color: #fff;
    line-height: 1em;
  }

  #sidemenu_sp ul li:nth-child(1) {

    padding-top: 0em;
    padding-bottom: 0em;
  }

  #sidemenu_sp ul li:nth-child(2) {
    padding-top: 0em;
    padding-bottom: 0em;

  }

  #sidemenu_sp ul li:nth-child(3) {
    padding-top: 0em;
    padding-bottom: 0em;

  }

  #shimaien ul {
    display: block;
    display: flex;
  }

  #shimaien li {
    width: 50%;
    margin-bottom: 5px;
  }

  .tflex article figure {
    margin-top: 10px;
    padding: 0px;
  }

  .tflex article {
    width: 100%;
  }

  #daybox table {
    width: 100%;
  }

  #day1 {
    display: block;
    width: 100%;
  }

  #day2 {
    display: block;
    width: 100%;
  }

  #eventbox {
    display: block;
  }

  #eventbox table {

    width: 100%;
  }

  #eventbox ul {
    width: 100%;
  }

  #eventbox ul img {
    width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 10px;
  }

  #recruit2 dd {
    display: block;
  }

  .rtxt {
    width: 100%;
  }

  .rpdf {
    width: 100%;
  }





}