<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";



/* ---------------- common ---------------- */

.logo img{
  height: 75px;
}

.head{
  display: inline-block;
  width: 100%;

  background-color: #61a6ce;
  color: #FFFFFF;
  text-align: left;
  border-radius: 3px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.head2{
  background-color: #FFFFFF;
  color: #61a6ce;
  text-align: left;
  border-style: solid;
  border-color: #61a6ce;
  border-width: 1px;
  border-radius: 3px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.head_Bi{
  width: 600px;
}

@media screen and (max-width: 768px){
  .head_Bi{
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
  }
}

.head_Bo{
  text-align: center;
}



.myimg, .myimg2{
  text-align: center;
}

.myimg img{
  width: 500px;
  height: auto;
}

.myimg2 img{
  width: 800px;
  height: auto;
}

@media screen and (max-width: 768px){
  .myimg img, .myimg2 img, .myimg3 img{
    width: 100%;
    height: auto;
  }
}





.mytable table, .mytable th, .mytable td, .mytable tr{
  border-style: solid;
  border-width: 1px;
  border-color: #000;
}

.mytable table, .mytable2 table{
  width: 600px;
}

@media screen and (max-width: 768px){
  /* .scroll table{
    width:100%;
  }
  .scroll{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .scroll::-webkit-scrollbar{
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track{
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }   */

  .mytable table, .mytable2 table{
    width: 100%;
  }
}



.jumbo{
  background-color: #61a6ce;
  text-align: center;
  color:rgb(255, 255, 255);
}





.mybutton, .mybutton2{
  text-align: center;
}

.mybutton a, .mybutton2 a{
  display: inline-block;
  
  background-color: #91cb65;
  color: #FFF;
  text-decoration: none;
  padding: 20px;
  border-radius: 20px;

  
}

.mybutton a{
  font-size: 40px;
  width: 300px;
}

.mybutton2 a{
  font-size: 20px;
  width: 300px;
}

.mybutton a:hover, .mybutton2 a:hover{
  background-color: #91cb65bb;
}


/* ---------------- top-button ---------------- */


#pagetop{
  z-index: 5;

  width: 50px;
  height: 50px;
  position: fixed;
  right: 25px;
  bottom: 50px;
  /* background: #91cb65; */
  background: #61a6ce;
  opacity: 0.6;
  border-radius: 50%;
}
#pagetop a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-align: center;
}
#pagetop a::before{
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: auto;
}




/* ---------------- section-nav ---------------- */

header {
  display: flex;
  padding: 0 16px;
}

header h1 {
  margin: 0;
  font-size: 22px;
  line-height: 64px;
}

.sp-menu {
  margin-left: auto;
}

.sp-menu #open {
  font-size: 32px;
  line-height: 64px;
  cursor: pointer;
}

.sp-menu #open.hide {
  display: none;
}

.overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(100, 100, 100, 0.95);
  text-align: center;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay #close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
}

.overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.overlay li {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay.show li:nth-child(1) {
  transition-delay: .1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: .2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: .3s;
}

.overlay.show li:nth-child(4) {
  transition-delay: .4s;
}

.overlay.show li:nth-child(5) {
  transition-delay: .5s;
}

.overlay.show li:nth-child(6) {
  transition-delay: .6s;
}

.pc-menu {
  display: none;
}

@media (min-width: 850px) {
  .pc-menu {
    display: block;
    margin-left: auto;
  }

  .pc-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .pc-menu a {
    display: block;
    width: 100px;
    line-height: 64px;
    text-align: center;

    color: #61a6ce;
  }

  .pc-menu a:hover {
    /* background: #f2f2f2; */
    color: #61a6ceaa;
  }

  .sp-menu {
    display: none;
  }
}

.sp-menu .material-icons{
  color: #61a6ce;
  margin-top: 10px;
  margin-right: 10px;
}
.overlay .material-icons{
  color: rgb(255, 255, 255);
  margin-top: 10px;
  margin-right: 10px;
}

.overlay a{
  color:rgb(255, 255, 255);
  text-decoration: none;
}

.overlay a:hover{
  color: #91c4e2;
}





/* ---------------- section-footer ---------------- */
.section-footer{
  padding-top: 30px;
  color: #FFFFFF;
  background-color: #61a6ce;
}

.section-footer ul{
  list-style-type: none;
}
.footer-link li{
  display: inline-block;
}

.footer-link li:not(:first-child)::before {
  content: "｜";
}

.footer-link a{
  color: #FFFFFF;
  text-decoration: none;
  font-size: 80%;
}

.footer-title{
  text-align: center;
}

.footer-menu li{
  display: inline-block;
}

.footer-menu li:not(:first-child)::before {
  content: "　";
}


.footer-menu a{
  color: #FFFFFF;
  text-decoration: none;
}  

.copyright{
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}




</pre></body></html>