@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');


*,
::before,
::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1.5;
  font-size: 1.6rem;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
}

article, aside, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

audio, canvas, iframe, img, svg, video {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.header_title{
  max-width: 1280px;
  margin: 20px auto 0;
  color: #2F794C;
}



footer{
  background-color: #F2F2F2;
  
}

footer ul{
  padding: 50px 0 ;
  width: 60%;
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

footer li{
  width: 32%;
}

.footer_copyright{
  background-color: #3F3F3F;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.breadcrumb{
  text-align: center;
  margin: 0 auto;
}

.breadcrumb ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  justify-content: center;
  margin: 15px 0;
  font-size: 0.9em;
}

.breadcrumb li::after{
  content: ">";
  color: #A3A3A3;
  margin: 0 15px;
}

.breadcrumb li:last-child::after{
  content: "　";

}


.header{
  background-color: #26BA46;
  text-align: center;
  font-size: 65%;
}

.header .header_title{
  color: #ffffff;
}

.block_btn{
  border-radius: 6px;
  border: 0px;
  background-color: #26BA46;
  color: #ffffff;
  font-size: 120%;
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.block_btn:focus,.block_btn:hover,.block_btn:active{
  opacity: 0.8;
}

.loader_overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.8);
}

.custom-loader {
  width:50px;
  height:50px;
  border-radius:50%;
  border:8px solid;
  border-color:#E4E4ED;
  border-right-color: #26BA46;
  animation:s2 1s infinite linear;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
}
@keyframes s2 {to{transform: rotate(1turn)}}

/* フェードイン・フェードアウト中の設定 */
.fade-enter-active, .fade-leave-active {
  transition: opacity .2s;
}
/* フェードイン開始時・フェードアウト終了時の設定 */
.fade-enter, .fade-leave-to {
  opacity: 0;
}


@media screen and (max-width: 989px){
  footer ul{
    width: 90%;
    padding: 20px 0;
  }

  .header_title{
    margin: 10px ;
    color: #2F794C;
    font-size: 1.2em;
  }

}