@charset "UTF-8";

html{
  height: 100%;
  scroll-behavior: smooth;
  background: var(--white);
  background-repeat: repeat-y;
}

body{
  max-width: 100%;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

body > footer {
  position: sticky;
  top: 100vh;
}

img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.inner,
.inner_large{
  margin-left: auto;
  margin-right: auto;
}

h2,h3,h4{
  display: block;
  color: var(--blue);
}

h2.top_tit{
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 2px;
  position: relative;
}

h3{
  font-size: 1.35em;
}

h4{
  font-size: 1.25em;
}

@media screen and (min-width: 0px) {
  body{
    font-size: 16px;
  }

  section{
    margin-bottom: 50px;
    padding: 0em 1.5em;
  }

  .inner,
  .inner_large{
    max-width: 100%;
  }

  h2.top_tit {
    margin-bottom: 2.25em;
    font-size: 1.75em;
  }

}

@media screen and (min-width: 768px) {
  body{
    font-size: 18px;
  }
  
  section{
    padding-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  
  section{
    margin-bottom: 100px;
  }

  h2.top_tit {
    font-size: 2em;
  }

}

@media screen and (min-width: 1440px) {

  h2.top_tit {
    font-size: 2.25em;
  }

  .inner{
    max-width: 1300px;
  }
}

/*====================================
ロゴマーク
=====================================*/
.logo{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}

.logo h1,
.logo a{
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}

.logo img{
  width: auto;
  height: 50px;
}

@media screen and (min-width: 0px) {
  .logo{
    font-size: 0.75em;
  }

  .logo .sietit_facilityname{
    font-size: 1em;
    font-weight: 600;
  }
}

@media screen and (min-width: 768px) {
  .logo{
    font-size: 1.25em;
  }

  .logo .sietit_facilityname{
    font-size: 1.25em;
    font-weight: 600;
  }
}

@media screen and (min-width: 1024px) {
  .logo{
    font-size: 0.9em;
  }
}

@media screen and (min-width: 1440px) {
  .logo{
      font-size: 1.25em;
  }
}

/*====================================
電話リンク有効
=====================================*/
/* pcではタップ電話NG */
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
}
  /* spではタップ電話OK */
  @media only screen and (max-width: 768px) {
    a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*====================================
breadcrumbs
=====================================*/
.breadcrumbs {
  margin: 1rem 0;
  font-weight: 500;
  display: inline-block;
}

.breadcrumbs span a:link,
.breadcrumbs span a:visited  {
  color: #757474;
}

/*====================================
ページネーション
=====================================*/
.pager-archive .wp-pagenavi{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-pagenavi a, .wp-pagenavi span {
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

/*====================================
ページャー
=====================================*/
.pager {
  margin-top: 3em;
  padding-top: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px var(--border);
}

.pager-prev,
.pager-next {
  width: calc(50% - 1em);
}

.pager-prev a {
  padding: 1em 1em 1em 3em;
}

.pager-next a {
  padding: 1em 3em 1em 1em;
}

.pager-prev a, .pager-next a {
  width: 100%;
  display: flex;
  align-items: center;
  border: solid 1px var(--gray2);
  background-color: var(--white);
  border-radius: 10px;
  text-decoration: unset;
  position: relative;
  transition: .3s;
}

.pager-prev a::before,
.pager-next a::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
}

.pager-prev a::after,
.pager-next a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  position: absolute;
}

.pager-prev a::before {
  left: 18px;
}

.pager-prev a::after {
  transform: rotate(225deg);
  left: 18px;
}

.pager-next a::before {
  right: 18px;
}

.pager-next a::after {
  transform: rotate(45deg);
  right: 18px;
}

/*====================================
 reCAPTCHA
=====================================*/
.grecaptcha-badge { 
  visibility: hidden; 
}

/*====================================
本文へスキップ
=====================================*/
#blockskip a {
  padding: 10px 20px 15px 20px;
  display: block;
  position: absolute;
  left: -9999px;
  background-color: var(--border);
  font-size: 100%;
  font-weight: bold;
  text-decoration: underline;
  color: var(--black);
}

#blockskip .show{
	position:absolute; 
	left:0;
	z-index:1000;
  top: 10px;
  left: 10px;
}

.skip {
  position: absolute;
  left: -9999px;
}

/*====================================
  Youtube動画 レスポンシブ対応
=====================================*/
.editor iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

/*====================================
  詳細ボタン 矢印
=====================================*/
.more_bt{
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.circle_arrow{
  display: flex;
  border-radius: 50%;
  border: solid 2px var(--blue);
  position: relative;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.circle_arrow::before{
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
  transition: var(--transition);
}

.circle_arrow::after{
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
  position: absolute;
  right: 25px;
  transition: var(--transition);
}

.more_bt{
  gap: 1em;
}

.more_bt:hover{
  color: var(--blue);
}

.more_bt:hover .circle_arrow{
  background-color: var(--blue);
}

.more_bt:hover .circle_arrow::before{
  background-color: var(--white);
}
.more_bt:hover .circle_arrow::after{
  border-color: var(--white);
}

@media screen and (min-width: 0px) {
  .circle_arrow{
    min-width: 50px;
    width: 50px;
    height: 50px;
  }

  .circle_arrow::after{
    right: 15px;
  }
}

@media screen and (min-width: 768px) {
  .circle_arrow{
    min-width: 70px;
    width: 70px;
    height: 70px;
  }

  .circle_arrow::after{
    right: 25px;
  }
}

/*====================================
  詳細ボタン 長方形
=====================================*/
.more_bt2{
  padding: 1.05em 2em;
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: solid 1px var(--blue);
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.more_bt2:hover{
  background-color: var(--blue);
  color: var(--white);
}

/*====================================
  ボタン 矢印のみ
=====================================*/
.arrow{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.arrow::before{
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
  left: 0;
}

.arrow::after{
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
  position: absolute;
  right: 0;
}

.back_gradation{
  width: 50%;
  height: 100%;
  background-image: -moz-radial-gradient( 50% 50%, circle closest-side, rgb(209,249,255,40%) 0%, rgb(255,255,255) 91%, rgb(255,255,255,0%) 100%);
  background-image: -webkit-radial-gradient( 50% 50%, circle closest-side, rgb(209,249,255,40%) 0%, rgb(255,255,255) 91%, rgb(255,255,255,0%) 100%);
  background-image: -ms-radial-gradient( 50% 50%, circle closest-side, rgb(209,249,255,40%) 0%, rgb(255,255,255) 91%, rgb(255,255,255,0%) 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/*====================================
  カルーセル
=====================================*/
.splide__arrows {
  width: 100%;
  margin-top: 2.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}

.splide_circle__arrow {
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 50%;
  border: solid 2px var(--blue);
  position: relative;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.splide__arrow--next .splide_circle__arrow::before,
.splide__arrow--prev .splide_circle__arrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
}

.splide__arrow--next .splide_circle__arrow::after,
.splide__arrow--prev .splide_circle__arrow::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  position: absolute;
}

.splide__arrow--next .splide_circle__arrow::after{
  transform: rotate(45deg);
  right: 18px;
}

.splide__arrow--prev .splide_circle__arrow::after {
  transform: rotate(225deg);
  left: 18px;
}

.splide__pagination__page {
  padding: 0;
  margin: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: var(--white);
  border: solid 1px var(--blue);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .2s linear;
  opacity: 0.9;
}

.splide__pagination__page.is-active {
  background: var(--blue);
  transform: unset;
}

/* 再生・停止ボタン */
.splide .toggle_bt__area {
  margin-top: 1em;
  width: 100%;
  display: none;
}

.splide.is-overflow .toggle_bt__area {
  display: flex;
}

.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

.splide__toggle {
  padding: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  border: 1px solid var(--blue);
  border-radius: 20PX;
  background-color: var(--white);
  font-size: 0.75em;
  line-height: 1;
}

.splide__toggle::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 11px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 8px solid var(--blue);
  border-bottom: 6px solid transparent;
}

.splide__toggle.is-active::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 1em;
  height: 1em;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 100%) 0.45em 0.3em, linear-gradient(to bottom, var(--blue) 0%, var(--blue) 100%) 0.75em 0.3em;
  background-size: 0.2em 0.8em;
  background-repeat: no-repeat;
  border-top: unset;
  border-left: unset;
  border-bottom: unset;
}


@media screen and (min-width: 0px) {
  .splide__arrows {
    justify-content: center;
  }

  .splide.is-overflow .toggle_bt__area {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {

}

@media screen and (min-width: 1024px) {
  .splide__arrows {
    justify-content: flex-start;
  }

  .splide.is-overflow .splide__toggle {
    justify-content: left;
  }

}