@charset "UTF-8";

/******************************
common
******************************/
.link-txtunder,
.singlecontent a {
  color: #1E5896;
  text-decoration: underline;
}
.link-txtunder:hover,
.singlecontent a:hover {
  text-decoration: none;
}
.singlecontent p,
.txtbox p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.kome,
.ten {
  padding-left: 2rem;
  position: relative;
}
.kome::before,
.ten::before {
  content:"※";
  position: absolute;
  top: 0;
  left: 0;
}
.ten::before {
  content:"・";
}
.anchor {
  scroll-margin-top: 100px;
}
.cmnbg{
  background: #e5f2ff;
}
@media only screen and (max-width: 1180px) { 
  .anchor {
    scroll-margin-top: 50px;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .anchor {
    scroll-margin-top: 10px;
  }
}

/******************************
inner
******************************/
.inner1,
.inner2,
.inner3 {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 2rem;
}
.inner2 {
  max-width: 1920px;
}
.inner3 {
  max-width: 1280px;
}
.innernp {
  margin: 0 auto;
  max-width: 1920px;
}
.inner2 .inner1,
.inner2 .inner3,
.inner3 .inner1 {
  padding: 0 !important;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/******************************
flex
******************************/
.flexbox1 {
  display: flex;
  flex-wrap: wrap;
}
.flexbox2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex {
  display: flex;
}
.frr {
  flex-direction: row-reverse;
}
.fac {
  align-items: center;
}
.fast {
  align-items: stretch;
}
.fafe {
  align-items: flex-end;
}
.fafs {
  align-items: flex-start;
}
.fabl {
  align-items: baseline;
}
.fbox,
.ftxtbox,
.fimgbox {
  width: 48%;
}
.fimgbox {
  text-align: center;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .fbox,
  .ftxtbox,
  .fimgbox {
    width: 100%;
  }
}

/******************************
ttl
******************************/
.ttlbox1 {
  margin-bottom: 2rem;
}
.ttlbox1 .ttl {
  color: #1E5896;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: .5rem;
  position: relative;
}
.ttlbox1 .enttl {
  font-family: "M PLUS 2", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
}
.ttlbox2 {
  margin-bottom: 3rem;
}
.ttlbox2 .ttl {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
}
.ttlbox2 .ttl::first-letter {
  color: #1E5896;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .ttlbox1 .enttl {
    font-size: 3rem;
  }
  .ttlbox2 .ttl {
    font-size: 2rem;
  }
  .ttlbox2 {
    margin-bottom: 1rem;
  }
}

/******************************
btn
******************************/
.morebtn1 a {
  background: #1E5896;
  border-radius: 25px;
  border: 2px solid #1E5896;
  color: #fff;
  display: inline-block;
  min-width: 250px;
  opacity: 1;
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
  text-align: center;
  transition: .5s;
}
.morebtn1 a::before {
  content: '';
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 18px;
  right: 20px;
  height: 10px;
  width: 10px;
  transition: .5s;
}
.morebtn1 a:hover {
  background: #fff;
  color: #1E5896;
}
.morebtn1 a:hover::before {
  background: #1E5896;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .morebtn1 a {
    min-width: 220px;
    padding: .5rem 1rem;
  }
  .morebtn1 a::before {
    top: 12px;
    right: 15px;
  }
}

/******************************
tbl
******************************/
.summarybox {
  margin: 0 auto;
  max-width: 800px;
}
.tblbox1 .tbl{
  background: #fff;
}
.tblbox1 .tbl:nth-of-type(even){
  background: #f9f9f9;
}
.tblbox1 .tblttl,
.tblbox1 .tblcontent {
  padding: 1.5rem 2rem;
}
.tblbox1 .tblttl {
  width: 150px;
}
.tblbox1 .tblcontent {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .tblbox1 .tblttl{
    font-weight: bold;
  }
  .tblbox1 .tblttl,
  .tblbox1 .tblcontent {
    padding: 1rem 1.5rem;
    width: 100%;
  }
}

/*****************************
news
*****************************/
.newsbox input[type="radio"]{
  display: none;
}
.newsbox .tabarea {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.newsbox .tabarea .tab{
  background: #ccc;
  border-radius: 50px;
  min-width: 150px;
  position: relative;
  text-align: center;
}
.newsbox .tabarea .tab .newsbtn{
  border-radius: 50px;
  cursor: pointer;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 1;
  padding: .3rem 0;
  position: relative;
  width: 100%;
  z-index: 1;
}
.newsbox .tabarea .tab:hover a,
.newsbox .tabarea .tab.current a{
  color: #fff;
}
.newsbox .panel{
  display: none;
}


.newslist {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.newslist li a {
  /* background: rgba(255,255,255,.8); */
  align-items: flex-start;
  gap: 2rem;
  opacity: 1;
  padding: 1rem .5rem;
  position: relative;
}
.newslist li a .info{
  gap: 2rem;
}
.newslist li a .info .cat{
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  min-width: 150px;
}
.newslist li a::before,
.newslist li a::after {
  background: #ccc;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.newslist li a::after {
  background: #1E5896;
  transition: .3s;
  width: 70px;
}
.newslist li a:hover::after {
  width: 100%;
}

.tabarea .newstab-all.current,
.tabarea .newstab-all:hover,
.topsec-news #newsbtn-all:checked ~ .tabarea .newstab-all{
  background: #1E5896;
  color: #fff;
}
.newslist li a .info .cat-news,
.tabarea .newstab-news.current,
.tabarea .newstab-news:hover,
.topsec-news #newsbtn-news:checked ~ .tabarea .newstab-news{
  background: #1e9642;
  color: #fff;
}
.newslist li a .info .cat-event,
.tabarea .newstab-event.current,
.tabarea .newstab-event:hover,
.topsec-news #newsbtn-event:checked ~ .tabarea .newstab-event{
  background: #d37222;
  color: #fff;
}
.newslist li a .info .cat-media,
.tabarea .newstab-media.current,
.tabarea .newstab-media:hover,
.topsec-news #newsbtn-media:checked ~ .tabarea .newstab-media{
  background: #7322d3;
  color: #fff;
}
.newslist li a .info .cat-recruit,
.tabarea .newstab-recruit.current,
.tabarea .newstab-recruit:hover,
.topsec-news #newsbtn-recruit:checked ~ .tabarea .newstab-recruit{
  background: #22a2d3;
  color: #fff;
}
.topsec-news #newsbtn-all:checked ~ .panelarea #newspanel-all,
.topsec-news #newsbtn-news:checked ~ .panelarea #newspanel-news,
.topsec-news #newsbtn-event:checked ~ .panelarea #newspanel-event,
.topsec-news #newsbtn-media:checked ~ .panelarea #newspanel-media,
.topsec-news #newsbtn-recruit:checked ~ .panelarea #newspanel-recruit{
  display:block;
}

@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .newsbox .tabarea .tab {
    width: calc(50% - 1rem);
  }
  .newslist li a,
  .newslist li a .info {
    gap: 1rem;
  }
  .newslist li a .info time{
    font-weight: bold;
  }
  .newslist .ttl {
    font-size: 1.6rem;
    width: 100%;
  }

}

/******************************
ルミナスsp調整
******************************/
@media screen and (max-width: 767px) {
  .lum-gallery-button {
    top: initial;
    transform: initial;
    bottom: 0;
  }
}

/******************************
スクルール連動アニメーション
******************************/
.leftover-box {
  overflow: hidden;
}
.leftover-box .leftover-box-in {
  overflow: hidden;
  position: relative;
  transition-delay: 0.1s;
  transform: translate3d(-100.5%, 0px, 0px);
  transition-delay: 0s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: left center;
  transition-property: transform, -webkit-transform;
}
.leftover-box.animated .leftover-box-in::before {
  transform: scale(0, 1);
}
.leftover-box .leftover-box-in::before {
  background: #1E5896;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transform: scaleX(1);
  transition-delay: 0.4s;
  transition-duration: 1.5s;
  transform-origin: right center;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 5;
}
.leftover-box .leftover-box-in img {
  transform: scale(1);
  transition-duration: 4s;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}
.leftover-box.animated .leftover-box-in {
  transform: translate3d(0px, 0px, 0px);
}


/******************************
ネジアニメ
******************************/
.nejianime path {
  fill: transparent;
  stroke: transparent;
}
 
.nejianime.animated path {
  animation: stroke 2s ease-in-out forwards; 
  stroke: #333;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 5px;
}
@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    fill: #666;
    stroke-opacity: 0;
    stroke-dashoffset: 0;
  }
}

/******************************
header
******************************/
.cmnhead {
  background: #fff;
  box-shadow: 3px 3px 10px #ccc;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: .5s;
  width: 100%;
  z-index: 9;
}
.cmnhead .logo {
  padding-left: 2rem;
  transition: .5s;
}
.cmnhead .logo a {
  display: block;
  transition: .5s;
  width: 150px;
}
.cmnhead .logo img {
  transition: .5s;
}
.cmnnav ul {
  gap: 2rem;
}
.cmnnav ul > li > a {
  position: relative;
  text-align: center;
}
.cmnnav ul > li:not(:last-child) > a::before {
  background: #1E5896;
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transition: .15s ease-out;
  height: 1px;
  width: 100%;
}
.cmnnav ul > li > a:hover::before {
  transform: scaleX(1);
}
.cmnnav ul > li > a > span {
  color: #181818;
  display: block;
  padding-left: 3rem;
  position: relative;
}
.cmnnav ul > li > a > span::before,
.cmnnav ul > li > a > span::after{
  content: "";
  aspect-ratio: 14 / 25;
  background: url(../images/common/nav_screw.svg) no-repeat center / cover;
  position: absolute;
  top: 55%;
  left: 0;
  height: 100%;
  width: auto;
  transform: translateY(-50%);
}
.cmnnav ul > li > a > span::after{
  background: url(../images/common/nav_screw_color.svg) no-repeat center / cover;
  opacity: 0;
}
.cmnnav ul > li:last-of-type > a > span::after{
  filter: brightness(0) invert(1);
}
.cmnnav ul > li > a.nowpage > span::before,
.cmnnav ul > li > a:hover > span::before,
.cmnnav ul > li:last-of-type > a > span::before{
  opacity: 0;
}
.cmnnav ul > li > a.nowpage > span::after,
.cmnnav ul > li > a:hover > span::after,
.cmnnav ul > li:last-of-type > a > span::after{
  opacity: 1;
}

.cmnnav ul > li:last-child a {
  background: #1E5896;
  display: block;
  padding: 1.5rem 3rem 1rem;
  padding: 2.5rem 3rem 2rem;
}
.cmnnav ul > li:last-child > a > span {
  color: #fff !important;
}
.spbtn,
.splogo {
  display: none;
}
@media only screen and (max-width: 1180px) {
  .cmnhead {
    box-shadow: none;
    padding: 1rem 0;
  }
  .cmnhead .logo{
    padding-left: 2rem;
  }
  .cmnhead .logo a{
    width: 200px;
  }
  .spbtn,
  .splogo {
    display: block;
  }
  .spbtn {
    background: #1E5896;
    border-radius: 5px;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    right: 1rem;
    transition: .5s;
    height: 50px;
    width: 50px;
    z-index: 99;
  }
  .spbtn span {
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    position: absolute;
    right: 14px;
    transition: all .4s;
    height: 3px;
    width: 45%;
  }
  .spbtn span:nth-of-type(1) {
    top: 15px;
  }
  .spbtn span:nth-of-type(2) {
    top: 23px;
    width: 35%;
  }
  .spbtn span:nth-of-type(3) {
    top: 31px;
    width: 25%;
  }
  .spbtn.active {
    z-index: 100;
  }
  .spbtn.active span {
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    width: 30%;
  }
  .spbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .spbtn.active span:nth-of-type(3) {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .cmnnav {
    background: rgba(0,0,0,.8);
    color: #fff;
    max-width: 340px;
    opacity: 0;
    padding: 8rem 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100lvh;
    width: 100vw;
    transition: 1s;
    z-index: 99;
  }
  .cmnnav.active {
    opacity: 1;
    pointer-events: all;
  }
  .splogo {
    display: block;
    filter: brightness(0) invert(1);
    text-align: center;
    margin: 0 auto 2rem;
    width: 200px;
  }
  .cmnnav > ul {
    padding: 0 2rem;
  }
  .cmnnav ul > li {
    width: 100%;
  }
  .cmnnav ul > li > a {
    border-bottom: 1px solid #fff;
    display: block;
    padding: 1rem 2rem;
    position: relative;
    text-align: left;
  }
  .cmnhead ul > li > a > span {
    color: #fff;
  }
  .cmnnav ul > li:last-child a {
    background: initial;
    padding: 1rem 2rem;
  }
  .cmnnav ul > li:last-child a .en {
    color: #fff !important;
  }
  .cmnnavgr a::before {
    display: none;
  }

  .cmnnav ul > li > a > span::before,
  .cmnnav ul > li > a > span::after{
    filter: brightness(0) invert(1);
  }
  .cmnnav ul > li > a.nowpage > span::before,
  .cmnnav ul > li > a:hover > span::before,
  .cmnnav ul > li:last-of-type > a.nowpage > span::before,
  .cmnnav ul > li:last-of-type > a:hover > span::before,
  .cmnnav ul > li:last-of-type > a > span::after{
    opacity: 0;
  }
    .cmnnav ul > li:last-of-type > a > span::before,
  .cmnnav ul > li > a.nowpage > span::after,
  .cmnnav ul > li > a:hover > span::after,
  .cmnnav ul > li:last-of-type > a.nowpage > span::after,
  .cmnnav ul > li:last-of-type > a:hover  > span::after{
    opacity: 1;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .cmnhead {
    position: relative;
  }
  .cmnhead .logo{
    padding-top: 1rem;
  }
  .cmnhead .logo a {
    width: 180px;
  }
}

/******************************
footer
******************************/
.cmnfot {
  padding: 4rem 0 2rem;
  position: relative;
}
.page .cmnfot {
  background: #e5f2ff;
}
.cmnfot .fotbox1 .fotlogo {
  margin: 0 auto 2rem;
  max-width: 250px;
  width: 100%;
}
.cmnfot .fotbox1 .linkbox {
  margin: 0 auto ;
  max-width: 250px;
  width: 100%;
  text-align: center;
}

.fotcopy{
  font-size: 1.4rem;
  margin-top: 2rem;
  text-align: center;
}

.fixinsta{
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}
.fixinsta a{
  aspect-ratio: 1/1;
  background: linear-gradient(#4C64D3, #CF2E92, #F26939, #FFDD83);
  border-image: linear-gradient(#4C64D3, #CF2E92, #F26939, #FFDD83);
  border-image-slice: 1;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  opacity: 1;
  width: 100px;
}
.fixinsta a i{
  font-size: 5rem;
}
.fixinsta a span{
  font-size: 1.5rem;
}
.fixinsta a:hover{
  background: #fff;
}
.fixinsta a:hover span,
.fixinsta a:hover i::before {
  background: linear-gradient(225deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .cmnfot {
    padding: 5rem 0 3rem;
  }
  .cmnfot .fotbox2 {
    width: 60%;
  }
  .fotnavbox {
    display: none;
  }
  .fotcopy{
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .cmnfot .fotbox1,
  .cmnfot .fotbox2 {
    width: 100%;
  }
  .cmnfot .fotbox1{
    margin-bottom: 3rem;
  }
  .cmnfot .fotbox1 .fotlogo {
    max-width: 200px;
  }
  .fotcopy{
    margin-top: 1rem;
    text-align: left;
  }

  .fixinsta a{
    line-height: 1.4;
    width: 65px;
  }
  .fixinsta a i {
    font-size: 3.2rem;
  }
  .fixinsta a span {
    font-size: 1.2rem;
  }
}