@charset "UTF-8";
/*
loading
------------------------------------------------------------------------------------*/
#loader-wrap {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  backface-visibility: hidden;
  overflow: hidden;
}

#loader {
  position: relative;
  bottom: 75px;
}
#loader img {
  width: 300px;
  height: auto;
}
#loader::before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 100%;
  animation: loadLogo 1.5s;
}

@keyframes loadLogo {
  0% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-weight: bold;
}

/*
common
------------------------------------------------------------------------------------*/
body > div#content {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: ContentFadeIn 1s forwards;
}

@keyframes ContentFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrapper {
  width: 100%;
  display: block;
  position: relative;
}

.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 0;
}

/*
font
------------------------------------------------------------------------------------*/
/*
header menu
------------------------------------------------------------------------------------*/
#header {
  width: 100%;
  z-index: 9090;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: absolute;
  top: 0;
}
#header.fixed {
  position: fixed;
}
#header .headerNavWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: min(1.171875vw, 15px) min(3.125vw, 40px) 0 min(2.34375vw, 30px);
}
#header #header_spMode {
  padding-bottom: min(1.5625vw, 20px);
}
#header #header_spMode h1 {
  font-size: 1.8rem;
  line-height: 1;
  margin-right: 5px;
}
#header #header_spMode h1 a {
  display: block;
}
#header #header_spMode h1 em {
  font-size: 3rem;
  margin-top: 18px;
  display: inline-block;
  margin-right: 10px;
}
#header ul.snsMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
#header ul.snsMenu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 5px;
}
#header ul.snsMenu li.x img {
  height: 15px;
}
#header ul.snsMenu li.fb {
  align-items: flex-end;
}
#header ul.snsMenu li.fb img {
  height: 20px;
}
#header ul.snsMenu li.is img {
  height: 17px;
}
#header ul.snsMenu li.yt img {
  height: 11px;
}
#header ul.snsMenu li.tt img {
  height: 17px;
}
#header ul.snsMenu li.line img {
  height: 18px;
}
#header ul.contentMenu {
  display: flex;
  align-items: center;
}
#header ul.contentMenu > li {
  font-weight: bold;
}
#header ul.contentMenu > li > a {
  display: block;
  position: relative;
  overflow-x: hidden;
  padding-bottom: min(1.953125vw, 25px);
}
#header ul.contentMenu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #293e83;
  transform: translateX(-150%);
  transition: transform 0.3s ease-out;
}
#header ul.contentMenu > li:hover > .contentMenuSubWrap {
  opacity: 1;
  visibility: visible;
}
#header ul.contentMenu > li#menu-support > a, #header ul.contentMenu > li#menu-activity > a {
  cursor: pointer;
}
#header .contentMenuSubWrap {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background-color: rgba(41, 62, 131, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
#header .contentMenuSubWrap ul.contentMenuSub {
  display: flex;
  max-width: 1000px;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}

div:not(.contentPage) > #header h1 a {
  color: #293e83;
}
div:not(.contentPage) > #header ul li a {
  color: #293e83;
}

.contentPage #header {
  background-color: transparent;
}
.contentPage #header a {
  color: #ffffff;
}
.contentPage #header a::after {
  background-color: #ffffff !important;
}
.contentPage #header .toggleMenuBtn span {
  background-color: #ffffff;
}
.contentPage #header .toggleMenuBtn::after {
  color: #ffffff;
}
.contentPage #header .toggleMenuBtn.active span {
  background-color: #293e83;
}
.contentPage #header .toggleMenuBtn.active::after {
  color: #293e83;
}
.contentPage #header.fixed {
  background-color: rgba(255, 255, 255, 0.9);
}
.contentPage #header.fixed a {
  color: #2a3e83;
}
.contentPage #header.fixed a::after {
  background-color: #293e83 !important;
}
.contentPage #header.fixed .toggleMenuBtn span {
  background-color: #293e83;
}
.contentPage #header.fixed .toggleMenuBtn::after {
  color: #2a3e83;
}
.contentPage #header .navWrap.active a {
  color: #293e83;
}
/*.fixed {
position: fixed;
}*/
.shadow {
  box-shadow: 0px 3px 10px -6px rgba(0, 0, 0, 0.3);
}

/*
content
------------------------------------------------------------------------------------*/
main {
  position: relative;
}

.bg01 {
  background-color: #eef5f6;
  padding: min(1.5625vw, 20px);
}

.Navy {
  color: #293e83;
}

.ttlWrap {
  margin: 0 auto;
}

.ttl01 {
  font-size: 4.8rem;
  color: #293e83;
  display: inline-block;
}
.ttl01 span {
  font-size: 2rem;
  display: block;
}
.ttl01::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #293e83;
  display: block;
}

.ttl02 {
  font-size: 2.4rem;
  color: #293e83;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.arrowLink {
  position: relative;
}
.arrowLink::after {
  content: "\e5c8";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght" 600, "FILL" 0;
  position: relative;
  margin-left: 15px;
  line-height: 1;
}

.txtLink {
  text-decoration: underline;
}

.txtLink02 {
  border-bottom: 1px solid;
}

.buttonA {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border: 1px solid #293e83;
  color: #293e83;
  padding: 13px 10px;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}
.buttonA:hover {
  opacity: 1 !important;
  background-color: #293e83;
  color: #ffffff;
}

.buttonB {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 10px 13px;
  border-radius: 3px;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}
.buttonB:hover {
  opacity: 1 !important;
  background-color: #ffffff;
  color: #293e83;
}

.buttonC {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border: 1px solid #293e83;
  background-color: #293e83;
  color: #ffffff;
  padding: 13px 10px;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}
.buttonC::after {
  content: "\f090";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght" 600, "FILL" 0;
  position: relative;
  margin-left: 15px;
  line-height: 1;
}
.buttonC:hover {
  opacity: 1 !important;
  background-color: #ffffff;
  color: #293e83;
}

.listA li {
  margin-left: 1em;
  position: relative;
  line-height: 1.7;
}
.listA li:not(:last-child) {
  margin-bottom: 5px;
}
.listA li::before {
  content: "・";
  display: block;
  position: absolute;
  z-index: 1;
  left: -1em;
}

.noteA {
  counter-reset: serialNum;
}
.noteA li {
  text-indent: -1.5em;
  margin-left: 3em;
}
.noteA li:not(:last-child) {
  margin-bottom: 5px;
}
.noteA li::before {
  content: "※" counter(serialNum) "：";
  counter-increment: serialNum;
  display: inline-block;
  position: relative;
}

/*
footer
------------------------------------------------------------------------------------*/
footer {
  position: relative;
  background-color: rgba(41, 62, 131, 0.8);
}
footer #footer1st {
  padding: 50px 0 40px;
  color: #ffffff;
}
footer #footer1st a {
  color: #ffffff;
}
footer #footer1st .row {
  align-items: flex-end;
}
footer #footer1st .row > div {
  width: 50%;
  align-self: flex-start;
}
footer #footer1st .row .owner {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
footer #footer1st .row .owner em {
  font-size: 2.4rem;
  margin-right: 0.5em;
}
footer #footer1st .row address p {
  margin-bottom: 15px;
}
footer .footer1stL .snsNav {
  display: flex;
  gap: 5px;
}
footer .footer1stL .snsNav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 5px;
}
footer .footer1stL .snsNav li.x img {
  height: 15px;
}
footer .footer1stL .snsNav li.fb {
  align-items: flex-end;
}
footer .footer1stL .snsNav li.fb img {
  height: 20px;
}
footer .footer1stL .snsNav li.is img {
  height: 17px;
}
footer .footer1stL .snsNav li.yt img {
  height: 11px;
}
footer .footer1stL .snsNav li.tt img {
  height: 17px;
}
footer #footerBtm {
  font-size: 1.2rem;
  color: #ffffff;
}
footer #footerBtm .inner {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 30px;
  padding-bottom: 30px;
}
footer #footerBtm .inner .row {
  justify-content: space-between;
}
footer #footerBtm .inner .row small p {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1;
  white-space: pre;
}
footer #footerBtm .inner .row .footerNav {
  display: flex;
  line-height: 1;
  flex-wrap: wrap;
}
footer #footerBtm .inner .row .footerNav li:not(:last-child)::after {
  content: "|";
  padding: 0 3.25px;
}
footer #footerBtm .inner .row .footerNav li a {
  letter-spacing: 0;
  color: #ffffff;
}

/*
追加アニメーション
------------------------------------------------------------------------------------*/
@-webkit-keyframes fadeInUpMin {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpMin {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpMin {
  -webkit-animation-name: fadeInUpMin;
  animation-name: fadeInUpMin;
}

@keyframes puff-in-hor {
  0% {
    transform: scaleX(2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.animate__puff-in-hor {
  animation: puff-in-hor 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.animate__focus-in-contract {
  animation: focus-in-contract 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes bounce-in-left {
  0% {
    transform: translateX(-600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
.animate__bounce-in-left {
  animation: bounce-in-left 1.1s both;
}

@keyframes bounce-in-right {
  0% {
    transform: translateX(600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(32px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
.animate__bounce-in-right {
  animation: bounce-in-right 1.1s both;
}

@keyframes puff-in-center {
  0% {
    transform: scale(2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.animate__puff-in-center {
  animation: puff-in-center 3s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.marker {
  background: linear-gradient(#ffff99, #ffff99) no-repeat 0 100%/0 45%;
  transition: 2s;
}
.marker.markerPink {
  background-image: linear-gradient(#ffd8e8, #ffd8e8);
}
.marker.markerBlue {
  background-image: linear-gradient(#d8f7ff, #d8f7ff);
}
.marker.markerGreen {
  background-image: linear-gradient(#e1ffd8, #e1ffd8);
}
.marker.markerOrange {
  background-image: linear-gradient(#ffe2d8, #ffe2d8);
}
.marker.animate__marker {
  background-size: 100% 50%;
}

/*
トップへ戻る
------------------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  display: none;
  width: 35px;
  height: 35px;
  bottom: 85px;
  right: 20px;
  z-index: 9000;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: rgba(41, 62, 131, 0.8);
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght" 400;
}
#page-top:hover {
  cursor: pointer;
}
#page-top span {
  top: 5px;
  position: relative;
}

@media screen and (min-width: 481px){
  #header #header_spMode h1 br.brsp {
    display: none;
  }
}

@media screen and (min-width: 781px){
  #header ul.contentMenu {
    margin-top: 10px;
  }
  #header ul.contentMenu > li {
    padding: 0 0 0 clamp(20px, 2.734375vw, 35px);
  }
  #header ul.contentMenu > li:last-of-type {
    padding-right: 0;
  }
  #header ul.contentMenu > li > a {
    opacity: 1;
    font-size: 1.4rem;
  }
  #header ul.contentMenu > li > a:hover::after {
    transform: translateX(0);
  }
  #header ul.contentMenu > li:hover a::after {
    transform: translateX(0);
  }
  #header .contentMenuSubWrap ul.contentMenuSub li a {
    color: #ffffff !important;
  }
}

@media screen and (max-width: 1000px){
  footer #footerBtm .inner .row {
    flex-direction: column-reverse;
    align-items: center;
  }
  footer #footerBtm .inner .row .footerNav {
    line-height: 2;
    margin-bottom: 30px;
  }
  .inner {
    padding: 0px 10px;
  }
}

@media screen and (max-width: 780px){
  #header .navWrap {
    display: flex;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding-bottom: 30px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.05);
    transition: right 0.3s ease;
  }
  #header .navWrap.active {
    right: 0;
    padding: 0 10px;
    overflow-y: scroll;
  }
  #header .navWrap.active nav {
    margin-top: 90px;
  }
  #header ul.contentMenu {
    flex-direction: column;
  }
  #header ul.contentMenu > li {
    font-size: 2.4rem;
    width: 100%;
  }
  #header ul.contentMenu > li > a {
    padding: 15px 10px;
  }
  #header ul.contentMenu > li:hover#menu-support > .contentMenuSubWrap {
    height: 200px;
  }
  #header ul.contentMenu > li:hover#menu-activity > .contentMenuSubWrap {
    height: 200px;
  }
  #header .contentMenuSubWrap {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
    background-color: transparent;
  }
  #header .contentMenuSubWrap ul.contentMenuSub {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 0.5em;
    height: auto;
  }
  #header .contentMenuSubWrap ul.contentMenuSub li {
    width: 100%;
  }
  #header .contentMenuSubWrap ul.contentMenuSub li a {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.2;
    display: flex;
    padding: 10px 0;
  }
  #header .contentMenuSubWrap ul.contentMenuSub li a::before {
    content: "\e5cc";
    font-family: "Material Symbols Rounded";
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  }
  #header_spMode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .toggleMenuBtn {
    position: relative;
    width: 40px;
    height: 38px;
    animation: menu-close 0.6s;
    z-index: 9091;
    margin-top: -1.2rem;
  }
  .toggleMenuBtn, .toggleMenuBtn span {
    display: inline-block;
    transition: all 0.4s ease;
    box-sizing: border-box;
  }
  .toggleMenuBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #293e83;
    border-radius: 2px;
  }
  .toggleMenuBtn span:nth-of-type(1) {
    top: 0;
  }
  .toggleMenuBtn span:nth-of-type(2) {
    top: 17px;
  }
  .toggleMenuBtn span:nth-of-type(3) {
    bottom: 0;
  }
  .toggleMenuBtn.active {
    animation: menu-open 0.6s;
  }
  .toggleMenuBtn.active span {
    top: 50%;
    bottom: auto;
    transform-origin: center;
  }
  .toggleMenuBtn.active span:nth-of-type(1) {
    transform: translateY(-50%) rotate(45deg);
  }
  .toggleMenuBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .toggleMenuBtn.active span:nth-of-type(3) {
    transform: translateY(-50%) rotate(-45deg);
  }
  .toggleMenuBtn:hover {
    cursor: pointer;
  }
  .toggleMenuBtn::after {
    content: "MENU";
    color: #2a3e83;
    font-size: 1.2rem;
    bottom: -2.5em;
    position: relative;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
    margin-top: 1.5em;
  }
  .bg01 {
    padding: 2.5641025641vw;
  }
  footer #footer1st .row {
    flex-direction: column;
  }
  footer #footer1st .row > div {
    width: 100%;
  }
  footer .footer1stL {
    margin-bottom: 20px;
  }
  #page-top {
    right: 5px;
  }
}

@media screen and (max-width: 480px){
  #header {
    position: relative;
  }
  #header .headerNavWrap {
    padding: 10px 10px 15px;
  }
  #header #header_spMode h1 {
    font-size: 1.4rem;
  }
  #header #header_spMode h1 em {
    font-size: 2.4rem;
    margin-top: 10px;
  }
  .contentPage #header {
    background-color: #293e83;
    position: absolute;
  }
  .ttl01 {
    font-size: 3.2rem;
  }
  .ttl01 span {
    font-size: 1.6rem;
  }
  .ttl02 {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=common.css.map */