@charset "UTF-8";
.home #contents > .inner {
  /* トップページ幅 100% */
  width: 100%;
  max-width: 100%;
}

.topinner {
  /* コンテンツは1000pxに */
  width: 1400px;
  margin: 0 auto;
  max-width: calc(100% - 40px);
}

/* tinyMCE用に見出しをリセット */
.page-top h3,
.page-top h4,
.page-top h5 {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.page-top h3::before,
.page-top h3::after,
.page-top h4::before,
.page-top h4::after,
.page-top h5::before,
.page-top h5::after {
  display: none;
}

/*==========================
flex設定
==========================*/
@media screen and (min-width: 768px) {
  .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .columns.jcsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .columns.jcs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .columns.jcc {
    -moz-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .columns.jce {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .columns.ais {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .columns.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .columns.aie {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /*IE10*/
    -webkit-flex-wrap: wrap;
    /* Safari6.1以降 */
  }
  .columns.reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
  .columns.col2 > *,
  .columns > .col2 {
    width: calc((100% - 60px) / 2);
  }
  .columns.col3 > *,
  .columns > .col3 {
    width: 32%;
  }
  .columns.col4 > *,
  .columns > .col4 {
    width: 24%;
  }
  .columns.col5 > *,
  .columns > .col5 {
    width: 20%;
  }
  .columns.col6 > *,
  .columns > .col6 {
    width: 16.6666%;
  }
}
@media (max-width: 767px) {
  .sp_columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .sp_columns > .col2,
  .sp_columns > .col3,
  .sp_columns > .col4,
  .sp_columns > .col5,
  .sp_columns > .col6,
  .sp_columns.col2 > *,
  .sp_columns.col3 > *,
  .sp_columns.col4 > *,
  .sp_columns.col5 > *,
  .sp_columns.col6 > * {
    max-width: 49%;
    -webkit-box-flex-basis: 49%;
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
  }
}
/*==========================
	汎用に使えるボタン
==========================*/
.btn-style {
  text-align: center;
}

.btn-style a {
  background: transparent;
  width: 290px;
  max-width: 98%;
  padding: 1em 1.3em;
  text-align: center;
  color: #fff;
  background: #fd9e50;
  border-radius: 100px;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  position: relative;
  font-weight: bold;
}

.btn-style a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: #fff 1px solid;
  border-right: #fff 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-style a:hover {
  color: #fff;
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.under .btn-style a {
  width: auto;
  min-width: 280px;
}

@media (min-width: 768px) {
  .btn-style a {
    font-size: 18px;
  }
}
/*==========================
	　mainimage
==========================*/
/*-- スライダーの時 ------------*/
.slick-slide img {
  margin: 0 auto;
}

button.slick-arrow {
  /* 矢印ボタン */
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  height: 40px;
  width: 16px;
  text-indent: -9px;
  z-index: 1;
}

button.slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}

button.slick-prev {
  /* 矢印（前へ）ボタン */
  background: url(img/btn_prev.png) no-repeat;
  left: 18%;
  margin-left: -16px;
}

button.slick-next {
  /* 矢印（次へ）ボタン */
  background: url(img/btn_next.png) no-repeat;
  right: 18%;
  margin-right: -16px;
}

@media screen and (max-width: 1650px) {
  button.slick-prev {
    left: 13.7%;
  }
  button.slick-next {
    right: 13.7%;
  }
}
@media screen and (max-width: 1400px) {
  button.slick-prev {
    left: 8%;
  }
  button.slick-next {
    right: 8%;
  }
}
@media screen and (min-width: 1200px) {
  .mainimage .slick-slide:not(.slick-center) {
    /* 前と次の画像を半透明に */
    opacity: 0.4;
    -moz-opacity: 0.4;
    filter: alpha(opacity=40);
  }
}
.slick-dots li button:before {
  color: #509ece;
  font-size: 30px;
}

.slick-dots li.slick-active button:before {
  color: #509ece;
}

@media (min-width: 768px) {
  .slick-dots li {
    display: none;
  }
}
/*==========================
	　TOP コンテンツ
==========================*/
.loopSliderWrap {
  top: 0;
  left: 0;
  height: 180px;
  overflow: hidden;
  position: absolute;
}

.loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 180px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.loopSlider ul {
  height: 180px;
  float: left;
  overflow: hidden;
}

.loopSlider ul li {
  width: 250px;
  height: 180px;
  float: left;
  display: inline;
  overflow: hidden;
}

.loopSlider ul li img {
  width: 100%;
}

.top .mainblock a {
  text-decoration: none;
}

.link_box {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.link_box:hover {
  cursor: pointer;
  opacity: 0.7;
}

.link_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.link_box a span.link {
  display: none;
}

.f_maru {
  font-family: "Zen Maru Gothic", serif;
}

/*-- 新着情報 --------------*/
.sec_news h3 {
  color: #0068b7;
  font-size: 30px;
  margin-bottom: 15px;
}

.sec_news .news {
  position: relative;
}

.sec_news .news dl {
  line-height: 1.3;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.sec_news .news dl:first-of-type {
  margin-top: 20px;
}

.sec_news .news dt {
  color: #333333;
  padding: 20px 10px 20px 0;
  width: 120px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.sec_news .newscategory {
  color: #fff;
  line-height: 1;
  font-weight: bold;
  padding: 4px 15px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-bottom: 10px;
}

.sec_news .catname-news {
  background: #0068b7;
}

.sec_news .catname-column {
  background: #00a273;
}

.news dd a {
  text-decoration: none;
  color: #333333;
}

.sec_news .news dd {
  display: inline-block;
  padding: 20px 10px 20px 0px;
  border-bottom: 1px solid #eee;
  width: calc(100% - 120px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

.sec_news .news dd a:hover {
  text-decoration: underline;
}

.sec_news .news .btn a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
}

.sec_news .news .btn a {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  background: #f1ab49;
  display: table;
  padding: 4px 14px 2px;
  text-decoration: none;
  line-height: 1.5;
}

.sec_news .news .btn a span {
  position: relative;
  padding-right: 1em;
}

.sec_news .news .btn a span:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 5%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sec_news .news .btn a:hover span:after {
  right: 3%;
}

/********************************
	Responsive
*********************************/
@media screen and (min-width: 768px) {
  .sec_news .news dd {
    margin-top: 2.2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1259px) {
  .sec_news p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1259px) {
  .sec_news .news dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 0;
  }
  .sec_news .news dd {
    width: 100%;
    display: block;
    padding: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  /* スマホ */
  .topinner {
    width: 420px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .top #contents,
  .top #aside {
    margin-bottom: 0;
  }
  /*==========================
  	　mainimage
  ==========================*/
  .mainimage,
  .slider {
    margin-bottom: 0;
  }
  .mainimage img {
    height: auto;
    max-width: none;
    max-height: none;
    width: 100%;
  }
  /*==========================
  	ボタン
  ==========================*/
  .link_btn a {
    margin: 0 auto 10px;
    font-size: 14px !important;
  }
  .link_btn.btns a {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
  /*==========================
  	loop
  ==========================*/
  .loopSlider {
    height: 100px;
  }
  .loopSlider ul {
    height: 100px;
  }
  .loopSlider ul li {
    width: 150px;
    height: 100px;
  }
}
@media screen and (max-width: 480px) {
  /* スマホ480px */
}
@media screen and (max-width: 320px) {
  /* スマホ320px */
}
/*googleカレンダー*/
.cal_wrapper {
  max-width: 900px;
  /* 最大幅 */
  min-width: 260px;
  /* 最小幅 */
  margin: 2.0833% auto;
  padding: 0 0.5em;
}

.googlecal {
  position: relative;
  padding-bottom: 100%;
  /* 縦横比 */
  height: 0;
  overflow: hidden;
}

.googlecal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.calendar-container {
  position: relative !important;
  padding-bottom: 80%;
  padding-top: 30px;
  height: 0;
}

.calendar-container iframe,
.calendar-container object,
.calendar-container embed {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 460px) {
  .calendar-container {
    padding-bottom: 140%;
  }
}
.entry-content img,
#content embed,
#content object,
#content iframe,
#content video {
  padding: 6px !important;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .cal_wrapper {
    padding: 0 !important;
  }
}
.under table ul,
.under table ul li:last-child {
  margin-bottom: 0;
}

.under table th {
  width: 200px;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 767px) {
  .under table ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4%;
  }
  .under table ul li {
    width: 48%;
  }
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .under table ul li {
    width: 100%;
  }
}
.under-page #contents > .inner {
  width: 1200px;
}

.anchor_lsit li a {
  text-decoration: none;
  display: block;
  padding: 10px 10px;
  position: relative;
  border-bottom: solid 2px #66a6d7;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 22px);
}
.anchor_lsit_2 li a {
  text-decoration: none;
  display: block;
  padding: 10px 10px;
  position: relative;
  border-bottom: solid 2px #66a6d7;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 22px);
}
.anchor_lsit li a:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #66a6d7;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.anchor_lsit_2 li a:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #66a6d7;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}

@media (max-width: 767px) {
  .anchor_lsit li:not(:last-child) {
    margin-bottom: 10px;
  }
  .anchor_lsit_2 li:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .anchor_lsit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .anchor_lsit_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .anchor_lsit.link_col_3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .anchor_lsit_2.link_col_3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .ul01.list_col_2, .ol_decimal.list_col_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ul01.list_col_3, .ol_decimal.list_col_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}/*# sourceMappingURL=index.css.map */