@charset "UTF-8";

/******************************
header
******************************/
.cmnhead {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.cmnhead > .inner2 {
  padding-right: 0;
}
.cmnhead .logo {
  width: 250px;
}
.cmnnav .navinner {
  gap: 3rem;
}
.cmnnav .navlist {
  gap: 2rem;
}
.cmnnav .navlist a {
  font-weight: bold;
  letter-spacing: 2px;
  position: relative;
}
.cmnnav .navlist a::before {
  content: "";
  background: #233b6c;
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transition: .15s ease-out;
  height: 1px;
  width: 100%;
}
.cmnnav .navlist a:hover,
.cmnnav .navlist .nowpage {
  color: #233b6c;
}
.cmnnav .navlist a:hover::before,
.cmnnav .navlist .nowpage::before {
  transform: scaleX(1);
}

.headcontact {
  height: 100%;
}
.headcontact li {
  height: 50%;
}
.headcontact li a {
  background: #233b6c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  gap: 1rem;
  line-height: 1;
  min-width: 250px;
  padding: 1rem 1rem;
}
.headcontact li:last-of-type a {
  background: #eef4ff;
  color: #233b6c;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.headcontact li:first-of-type a span {
  aspect-ratio: 4 / 3;
  background: url(../images/common/icon_mail.svg) no-repeat center / contain;
  width: 25px;
}
.headcontact li:last-of-type a span {
  aspect-ratio: 1 / 1 ;
  background: url(../images/common/icon_tel.svg) no-repeat center / contain;
  width: 25px;
}

.spbtn,
.splogo {
  display: none;
}
.spbtn {
  cursor: pointer;
  border-radius: 5px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  height:50px;
  width: 50px;
}
.spbtn span {
  background: #233b6c;
  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;
}
.spbtn span:nth-of-type(3) {
  top:31px;
}
.spbtn.active {
  z-index: 1;
}
.spbtn.active span {
  background: #fff;
  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);
}
@media only screen and (max-width: 1180px) {
  .cmnhead .cmnnavgr .cmnnav {
    gap: 2rem;
  }
  .cmnhead .cmnnavgr .navlist {
    gap: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .spbtn,
  .splogo {
    display: block;
  }
  .cmnhead .logo {
    max-width: 250px;
    padding: 2rem 0;
    width: 100%;
  }
  .cmnnav {
    background: rgba(2,27,59,.9);
    padding: 4rem 3rem;
    opacity: 0;
    max-width: 340px;
    overflow: hidden;
    padding: 4rem 2rem;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100lvh;
    width: 100vw;
    transition: 1s;
  }
  .cmnnav.active {
    opacity: 1;
    pointer-events: all;
  }
  .cmnnav::before,
  .cmnnav::after {
    content: "";
    aspect-ratio: 8/3;
    background: rgba(3,16,80, .7);
    position: absolute;
    top: 20%;
    left: -10rem;
    width: 210%;
    transform: rotate(-25deg);
    z-index: -1;
  }
  .cmnnav::after {
    aspect-ratio: 4/1;
    background: rgba(133, 186, 255, .2);
    top: 63%;
    transform: rotate(22deg);
    z-index: -2;
  }
  .cmnnav .navinner {
    display: block;
    height: 100%;
    overflow: scroll;
    position: relative;
    z-index: 1;
  }
  .cmnnav .splogo {
    filter: brightness(0) invert(1);
    margin: 3rem auto 0;
    max-width: 220px;
  }
  .cmnnav .navlist {
    gap: 0;
    margin: 2rem 0;
  }
  .cmnnav .navlist li {
    width: 100%;
  }
  .cmnnav .navlist li {
    border-bottom: 1px solid #fff;
  }
  .cmnnav .navlist li:last-of-type {
    border-bottom: none;
  }
  .cmnnav .navlist a {
    color: #fff;
    display: block;
    padding: .5rem 3rem;
  }
  .cmnnav .navlist a::before {
    display: none;
  }
  .cmnnav .navlist a::after {
    content: "\f105";
    color: #fff;
    font: var(--fa-font-solid);
    position: absolute;
    top: 11px;
    left: 1rem;
  }
  .cmnnav .navlist a.nowpage::after {
    color: #233b6c;
  }
  .cmnnav .navlist a:hover,
  .cmnnav .navlist .nowpage {
    color: #fff;
  }
  .headcontact,
  .headcontact li {
    height: auto;
    width: 100%;
  }
  .headcontact li {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .cmnhead .logo {
    max-width: 60vw;
  }
}

/******************************
footer
******************************/
.fotsec {
  background: #F2F6FB;
  padding: 8rem 0;
}
.fotsec .ttlbox1 {
  text-align: center;
}
.fotsec .mes {
  margin: 3rem auto 6rem;
  text-align: center;
}
.fotsec ul {
  gap: 2rem;
  margin: 0 auto;
  max-width: 700px;
}
.fotsec li {
  width: calc(50% - 2rem);
}
.fotsec li a {
  background: #233b6c;
  color: #fff;
  border: 1px solid #233b6c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  gap: 1rem;
  height: 100%;
  line-height: 1;
  padding: 1rem 1rem;
  text-align: center;
}
.fotsec li:last-of-type a {
  background: #fff;
  color: #233b6c;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.fotsec li:first-of-type a .icon {
  aspect-ratio: 4 / 3;
  background: url(../images/common/icon_mail.svg) no-repeat center / contain;
  width: 25px;
}
.fotsec li:last-of-type a .icon {
  aspect-ratio: 1 / 1 ;
  background: url(../images/common/icon_tel.svg) no-repeat center / contain;
  width: 25px;
}
.fotsec li a .txt {
  font-weight: 500;
}
.fotsec li a .txt span {
  display: block;
  font-weight: bold;
}

.cmnfot {
  background: #233b6c;
  color: #fff;
  padding: 7rem 0 1rem;
}
.cmnfot a {
  color: #fff;
}
.cmnfot .fotlogo {
  display: inline-block;
  margin-bottom: 2rem;
  max-width: 220px;
  width: 100%;
}
.cmnfot .box1 {
  display: flex;
  gap: 2rem;
}
.cmnfot .isobox {
  background: #fff;
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem;
}
.cmnfot .isobox > div {
  width: 100px;
}
.cmnfot .box2 {
  gap: 2rem;
}
.cmnfot .flink {
  gap: 2rem;
}
.cmnfot .flink a {
  padding-left: 2rem;
  position: relative;
}
.cmnfot .flink > li > a::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

.cmnfot .fotcopy {
  border-top: 1px solid #fff;
  margin-top: 3rem;
  padding-top: 2rem;
  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) {
  .fotsec {
    padding: 6rem 0;
  }
  .fotsec .mes {
    margin: 3rem auto 4rem;
    max-width: 330px;
    text-align: left;
  }
  .fotsec .mes p:first-of-type {
    margin-bottom: 1rem;
  }
  .fotsec li {
    max-width: 330px;
    width: 100%;
  }
  .cmnfot {
    padding: 6rem 0 2rem;
  }
  .cmnfot .box1 {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .cmnfot .isobox > div {
    width: 80px;
  }
}

/******************************
common
******************************/
.link-txtunder,
.singlecontent a {
  color: #233b6c;
  text-decoration: underline;
}
.link-txtunder:hover,
.singlecontent a:hover {
  text-decoration: none;
}
.singlecontent p,
.txtbox p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.kome li,
.ten li {
  padding-left: 2rem;
  position: relative;
}
.kome li::before,
.ten li::before {
  content:"※";
  position: absolute;
  top: 0;
  left: 0;
}
.ten li::before {
  content:"・";
}
/* .anchor {
  scroll-margin-top: 100px;
} */
@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) {
}

/******************************
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,
.ttlbox2 {
  font-family: "Noto Serif JP", serif;
  color: #233b6c;
}
.ttlbox1 {
  padding-bottom: 2rem;
}
.ttlbox1 .enttl {
  font-size: 8rem;
  font-family: "Newsreader", serif;
  font-weight: bold;
  line-height: 1;
}
.ttlbox1 .ttl {
  font-size: 2.4rem;
  font-weight: 500;
}

.ttlbox2 {
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
}
.ttlbox2::before {
  content: "";
  background: #233b6c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 30px;
}
.ttlbox2 .enttl {
  font-size: 4.4rem;
  font-family: "Newsreader", serif;
  line-height: 1;
  font-weight: bold;
}
.ttlbox2 .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

@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: 5rem;
  }
  .ttlbox1 .ttl {
    font-size: 1.8rem;
  }
  .ttlbox2 .enttl {
    font-size: 3.4rem;
  }
}

/******************************
btn
******************************/
.morebtn1 a {
  color: #233b6c;
  border: 1px solid #233b6c;
  display: inline-block;
  opacity: 1;
  padding: 1rem ;
  min-width: 200px;
  text-align: center;
  transition: .5s;
}
.morebtn1 a:hover {
  background: #233b6c;
  color: #fff;
}

/******************************
tbl
******************************/
.tblbox1 {
  margin: 0 auto;
  max-width: 800px;
}
.tblbox1 .tbl {
  background: #fff;
}
.tblbox1 .tbl:nth-of-type(odd) {
  background: #f1f6ff;
}
.tblbox1 .tbl .tblttl,
.tblbox1 .tbl .tblcontent {
  padding: 1rem 2rem;
}
.tblbox1 .tbl .tblttl {
  width: 200px;
}
.tblbox1 .tbl .tblcontent {
  width: calc(100% - 200px);
}
@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 .tbl .tblttl,
  .tblbox1 .tbl .tblcontent {
    padding: .5rem 1rem 1.5rem;
    width: 100%;
  }
  .tblbox1 .tbl .tblttl {
    font-weight: bold;
    padding: 1rem ;
  }
  .tblbox1 .tbl .tblttl {
    background: #f1f6ff;
  }
  .tblbox1 .tbl .tblcontent {
    background: #fff;
  }
}

.newslist {
  margin: 0 auto;
  max-width: 800px;
}
.newslist li {
  margin-bottom: 1rem;
}
.newslist li a {
  display: block;
  opacity: 1 !important;
  padding: 2rem ;
}
.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: #233b6c;
  transition: 0.3s;
  width: 70px;
}
.newslist li a:hover::after {
  width: 100%;
}
.newslist li .newsinfo {
  margin-bottom: 1rem;
}
.newslist li .newsinfo time {
  color: #233b6c;
  font-weight: bold;
}
.newslist li .newsinfo .cat {
  background: #233b6c;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 1rem;
  padding: .5rem 1rem;
}

/******************************
スクルール連動アニメーション
******************************/
.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 .leftover-box-in::before {
  content: "";
  background: #fff;
  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);
}
.leftover-box.animated .leftover-box-in::before {
  transform: scale(0, 1);
}