@charset "UTF-8";
/*基本カラー：水色：#4486CA／紺：#1D2088(29,32,136,)*/
html {
    font-size: 62.5%;
}
* {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
}
*,
::before,
::after {
    box-sizing: border-box;
}
body {
    /*overflow-x: hidden;*/
}
address {
    font-style: normal;
}
strong {
    font-weight: 600;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
}
ul,
ol,
dl,
blockquote {
    /*margin-bottom: 0.5em;*/
}
p,
li,
dt,
dd,
th,
td,
input,
textarea,
address {
    font-size: 1.6rem;
    line-height: 1.5;
    /*margin-bottom: 0.5em;*/
}
hr {
    margin: 4em auto;
    border: #383838 solid;
    border-width: 1px 0 0 0;
}


/*header*/




/*汎用*/
.inner {
    /*width: 80%;*/
    max-width: 108rem;
    margin: auto;
}
.br::before {
    content: "\A";
    white-space: pre;
}
/*不要なら削除*/
.br::after {
    content: "\A";
    border-top: solid 1px rgba(255, 255, 255, 0.8);
}
/*不要なら削除*/
.flexbox {
    display: flex;
    justify-content: space-between;
}





/*header*/
header h1 {
    background: #1D2088;
    color: #fff;
    padding: 1em;
    display: inline-block;
    width: 21rem;
}
header h2 {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
    font-weight: 600;
    text-align: center;
}




/*main*/
main {
    width: 100%;
    border-bottom: 1px solid #1D2088;
    background: #f5f3f1;
}


/*SpMenu*/
.navToggle {
    display: none;
}
.globalMenuSp {}
nav {
    width: 100%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9;
}
nav ul {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
}
nav ul li {
    list-style: none;
    width: 154px;
    margin: 1em auto;
    border-right: 1px solid #000;
}
nav ul li:first-child {
    border-left: 1px solid #000;
}
nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}
nav ul li span {
    font-size: 1.2rem;
    color: #1D2088;
}




/*footer*/
footer {
    background: #4486CA;
    padding: 4em 0;
}
footer .inner {
    display: flex;
    gap: 5rem;
    color: #fff;
}
footer .logo {
    width: 20%;
    /*font-size: 3.6rem*/
}
footer .logo img {
    width: 100%;
}
footer .info {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .info p {
    width: 100%;
    display: block;
}
footer .info p strong {
    font-size: 2rem;
}
footer .info address {
    width: 50%;
}
.footer_nav {
    display: none;
}
footer .info dl {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
footer .info dt {
    width: 30%;
}
footer .info dt::after {
    content: "："
}
footer .info dd {
    width: 70%;
}
footer .inner {
    margin: 0 auto 5rem;
}
footer .copyright {
    font-size: 1.2rem;
    font-family: sans-serif;
    color: #fff;
    text-align: center;
    margin: 0 0 2rem;
}
footer .hojo {
    font-size: 1.2rem;
    font-family: sans-serif;
    color: yellow;
    text-align: center;
}

.PRm {
    background: rgba(255, 255, 255, 0.3);
    border: solid 1px #4486CA;
    border-radius: 0.5em 0 0 0.5em;
    position: absolute;
    top: 70px;
    right: 0;
    font-size: 1.6rem;
    padding: 1em 0.5em;
    text-align: center;
    width: 6rem;
}
.Sm {
    background: rgba(255, 255, 255, 0.3);
    border: solid 1px #4486CA;
    border-radius: 0.5em 0 0 0.5em;
    position: absolute;
    top: 190px;
    right: 0;
    font-size: 1.6rem;
    padding: 1em 0.5em;
    text-align: center;
    width: 6rem;
}
.fb {
    background: rgba(255, 255, 255, 0.3);
    border: solid 1px #4486CA;
    border-radius: 0.5em 0 0 0.5em;
    position: absolute;
    top: 310px;
    right: 0;
    font-size: 1.6rem;
    padding: 1em 0.5em;
    text-align: center;
    width: 6rem;
}
.PRm img,
.Sm img,
.fb img {
    width: 4rem;
}
.PRm a,
.Sm a,
.fb a {
    text-decoration: none;
    color: #000;
    font-family: serif;
}
/*アコーディオン*/
.set {
    display: block;
    cursor: pointer;
}
.set1 {
    display: none;
    /*最初から開いておく場合にはここをコメントアウト*/
}
.set2 {
    display: initial;
}







/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
    overflow: hidden;
      display: block;
  }
  
  .slide-in_inner {
    display: block;
  
  }
  
  /*左右のアニメーション*/
  .leftAnime{
      opacity: 0;/*事前に透過0にして消しておく*/
  }
  
  .slideAnimeLeftRight {
    animation-name:slideTextX100;
    animation-duration:2s;
    animation-fill-mode:forwards;
      opacity: 0;
  }
  
  @keyframes slideTextX100 {
    from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
          opacity: 0;
    }
  
    to {
    transform: translateX(0);/*要素を元の位置に移動*/
      opacity: 1;
    }
  }
  
  .slideAnimeRightLeft {
    animation-name:slideTextX-100;
    animation-duration:2s;
    animation-fill-mode:forwards;
      opacity: 0;
  }
  
  
  @keyframes slideTextX-100 {
    from {
    transform: translateX(100%);/*要素を右の枠外に移動*/
      opacity: 0;
    }
  
    to {
    transform: translateX(0);/*要素を元の位置に移動*/
      opacity: 1;
    }
  }