*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: min(0.6944444444vw, 10px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body.menu_open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a.txt_link{
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.en {
  font-family: "Lexend Exa", sans-serif;
}


.anim_yurayura{
	animation: anim_yurayura 2s infinite;
	transform: rotate(20deg);
}
@keyframes anim_yurayura {
	50% {
		transform: rotate(-20deg);
	}
    100% {
		transform: rotate(20deg);
	}
}
.anim_fuwafuwa{
	animation: anim_fuwafuwa 2s infinite;
	transform: translateY(2rem);
}
@keyframes anim_fuwafuwa {
	50% {
		transform: translateY(-2rem);
	}
    100% {
		transform: translateY(2rem);
	}
}


#header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 2;
  transition: .2s;
}
#header.bg{
  background: #fff;
}
#header .h_inner {
  position: relative;
  width: min(100%, 144rem);
  margin: 0 auto;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  #header {
    transition: .2s;
  }
  #header.bg {
    background: #fff;
  }
  #header .h_inner {
    padding: 0 1.5rem;
  }
}
#header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
}
@media screen and (max-width: 767px) {
  #header .row {
    height: 6rem;
  }
}
#header .site_ttl {
  width: 37.3rem;
}
@media screen and (max-width: 767px) {
  #header .site_ttl {
    width: 25rem;
  }
}
#header .navs {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#header .navs .nav {
  color: #1C2B53;
  display: flex;
  gap: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
}
#header .navs .nav li {
  position: relative;
  padding-left: 1.6rem;
}
#header .navs .nav li::before, #header .navs .nav li::after {
  content: "";
  background: #2BA79E;
  position: absolute;
  translate: 0 -50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 100%;
}
#header .navs .nav li::before {
  inset: 50% auto auto 0;
}
#header .navs .nav li::after {
  display: none;
  inset: 50% 0 auto auto;
}
#header .navs .btn a {
  background: #1C2B53;
  color: #1C2B53;
  display: block;
  position: relative;
  width: 18rem;
  margin: 0 auto;
  padding: 1.1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 3rem;
}
@media screen and (min-width: 768px) {
	#header .navs .nav li a:hover{
		color: #2B64EE;
	}	
  #header .navs .btn a:hover {
    background: #2B64EE;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #header .navs .btn a {
    font-size: 1.6rem;
    padding: 1.1rem;
  }
}
#header .navs .btn a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  #header .menu_bar {
    display: none;
  }
  #header .menu_btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header .toggle_menu {
    background: linear-gradient(to bottom, #E2F4FC, #fff);
    position: fixed;
    inset: 0 auto auto 0;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    translate: 100% 0;
    transition: 0.2s;
  }
  #header .navs {
    flex-direction: column;
    padding: 8.5rem 0;
    gap: 8rem;
  }
  #header .navs .nav {
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
  }
  #header .navs .nav li {
    padding: 0 1.6rem;
  }
  #header .navs .nav li::after {
    display: block;
  }
  #header.menu_open .toggle_menu {
    translate: 0 0;
  }
  #header.menu_open .toggle_menu .menu_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
    padding: 0 1.5rem;
  }
}

#footer {
  background: #F5F9FF;
  padding: 5.5rem 0 calc(2.4rem + 5.8rem);
}
#footer .f_inner {
  position: relative;
  width: min(100%, 144rem);
  margin: 0 auto;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  #footer .f_inner {
    padding: 0 1.5rem;
  }
}
#footer .btn {
  position: fixed;
  inset: auto 0 calc(10rem + 5.8rem) auto;
  width: 22.2rem;
  z-index: 1;
}
#footer .btn a {
  display: block;
  padding: 0 0 .5rem 0;
}
#footer .btn a::before {
  content: "";
  background: #134DD8;
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: calc(100% - 0.5rem);
  border-radius: 5rem 0 0 5rem;
}
#footer .btn img {
  position: relative;
  display: block;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #footer .btn:hover img {
    translate: 0 .5rem;
  }
}
@media screen and (max-width: 767px) {
  #footer .btn {
    width: 14rem;
    inset: auto 0 calc(8rem + 2.8rem) auto;
  }
}
#footer .gotop {
  background: #1C2B53;
  color: #fff;
  position: fixed;
  inset: auto 2rem calc(2rem + 5.8rem) auto;
  width: 4.2rem;
  height: 4.2rem;
  line-height: 4.2rem;
  font-size: 2rem;
  text-align: center;
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
#footer .gotop::before {
  content: "\f062";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}
#footer .gotop.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  #footer .gotop:hover {
    background: linear-gradient(to right, #9ADFD9, #B1E4FF);
    color: #1C2B53;
  }
}
@media screen and (max-width: 767px) {
	#footer .gotop{
		inset: auto 2rem calc(2rem + 3.8rem) auto;
	}
}
#footer .site_logo {
  width: 37.3rem;
  margin: 0 auto 5.2rem;
}
@media screen and (max-width: 767px) {
  #footer .site_logo {
    margin: 0 auto 2rem;
    width: 28rem;
  }
}
#footer .policy {
  position: absolute;
  inset: auto auto 0 3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .policy {
    position: initial;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
  }
}
#footer .copy {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 1.2rem;
  }
}

main {
  background: #F5F9FF;
  overflow: hidden;
}
main .box {
  background: #fff;
  position: relative;
  width: min(100% - 4rem, 126rem);
  min-height: 64rem;
  margin: 0 auto;
  padding: 12rem 0;
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  main .box {
    padding: 6rem 0;
    border-radius: 2rem;
  }
}
main .inner {
  width: min(100%, 100rem);
  margin: 0 auto;
  padding: 0 2rem;
}

h2 {
  color: #1C2B53;
  position: relative;
  margin-bottom: 6rem;
  padding-left: 4rem;
  font-size: 4.2rem;
  font-weight: 900;
}
h2::before {
  content: "";
  background: linear-gradient(to right, #9ADFD9, #B1E4FF);
  position: absolute;
  inset: 1.8rem auto auto 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 100%;
  -webkit-mask-image: radial-gradient(transparent 0%, transparent 0.6rem, #000 0.6rem, #000);
}
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 2.2rem;
    padding-left: 3.6rem;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  h2::before {
    inset: 0.4rem auto auto 0;
    width: 2.4rem;
    height: 2.4rem;
  }
}

h3 {
  color: #1C2B53;
  position: relative;
  margin: 6rem 0 2rem;
  padding-left: 1.8rem;
  font-size: 2.4rem;
  font-weight: 900;
}
h3::before {
  content: "";
  background: #2BA79E;
  position: absolute;
  inset: 1.8rem auto auto 0;
  translate: 0 -50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  h3 {
    margin: 2.2rem 0 1.5rem;
    padding-left: 1.6rem;
    font-size: 1.8rem;
  }
  h3::before {
    inset: 1.4rem auto auto 0;
    width: 0.6rem;
    height: 0.6rem;
  }
}

.txt {
	font-size: 2rem;
	line-height: 1.8;
}
.cap{
	font-size: 1.3rem;
}
.blue{
	color: #2B63EE;
}
ul.txt{
	margin: 2rem 0;
}
ul.txt > li, ol.txt > li{
	padding-left: 1em;
	text-indent: -1em;
}
ul.txt > li + li{
	margin-top: 1rem;
}
ul.txt > li::before{
	content: '・';
}
ol.txt > li::before{
	display: none;
}
@media screen and (max-width: 767px) {
	.txt {
		font-size: 1.6rem;
		}
	.cap{
		font-size: 1rem;
	}
}

.news_list {
  color: #1C2B53;
}
.news_list li + li {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .news_list li + li {
    margin-top: 2rem;
  }
}
.news_list a {
  text-decoration: underline;
}
.news_list .day {
  display: inline-block;
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.news_list .day::before {
  content: "";
  background: #2BA79E;
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 100%;
}
.news_list .new {
  background: #FDE67C;
  display: inline-block;
  width: 5rem;
  margin-left: 1rem;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 1.5rem;
}
.news_list .txt {
  margin-top: 0.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
	.news_list a:hover{
		color: #2B64EE;
	}
}
@media screen and (max-width: 767px) {
	.news_list .day{
		font-size: 1.2rem;
	}
	.news_list .new{
		line-height: 1;
	}
}

.pagination{
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
    font-size: 2rem;
    font-weight: 700;
}
.pagination a, .pagination span{
	background: #1C2B53;
    color: #fff;
    display: block;
    width: 4.2rem;
    height: 4.2rem;
    line-height: 4.2rem;
    text-align: center;
    border-radius: 100%;
}
.pagination .current{
	background: #2B64EE;
	user-select: none;
}
.pagination .prev, .pagination .next{
	background: none;
    color: #1C2B53;
    font-size: 2.4rem;
}
.pagination .prev{
	margin-right: -1rem;
}
.pagination .prev::before{
	content: "\f0d9";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
}
.pagination .next{
	margin-left: -1rem;
}
.pagination .next::before{
	content: "\f0da";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
}
@media screen and (max-width: 767px) {
	.pagination{
		margin-top: 4rem;
        font-size: 1.4rem;
	}
	.pagination a, .pagination span{
		width: 3rem;
        height: 3rem;
        line-height: 3rem;
	}
	.pagination .prev, .pagination .next{
		font-size: 2rem;
	}
}


.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 6rem;
  font-size: 2rem;
  font-weight: 700;
}
.pager a {
  background: #1C2B53;
  color: #fff;
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  line-height: 4.2rem;
  text-align: center;
  border-radius: 100%;
}
.pager a.active {
  background: #2B64EE;
}
.pager .prev, .pager .next {
  background: none;
  color: #1C2B53;
  font-size: 2.4rem;
}
.pager .prev {
  margin-right: -1rem;
}
.pager .prev::before {
  content: "\f0d9";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}
.pager .next {
  margin-left: -1rem;
}
.pager .next::before {
  content: "\f0da";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 4rem;
    font-size: 1.4rem;
  }
  .pager a {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }
  .pager .prev, .pager .next {
    font-size: 2rem;
  }
}

.sec_contact{
	margin-top: 12rem;
}
.sec_contact .wide_box {
  background: linear-gradient(to right, rgba(154, 223, 217, 0.4), rgba(177, 228, 255, 0.4));
}
.sec_contact .btn {
  margin-bottom: 6rem;
}
.sec_contact .btn a {
  background: #1C2B53;
  color: #fff;
  display: block;
  width: 48rem;
  margin: 0 auto;
  padding: 2.7rem 0;
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  border-radius: 6rem;
}
.sec_contact .ttl{
	color: #1C2B53;
	padding-bottom: 1.5rem;
	font-size: 2.4rem;
	font-weight: 700;
}
.sec_contact .txt{
	padding-bottom: 1.5rem;
}
.sec_contact .txt a{
	text-decoration: underline;
	word-break: break-all;
}
@media screen and (min-width: 768px) {
  .sec_contact .btn a:hover {
    background: #2B64EE;
  }
}
@media screen and (max-width: 767px) {
	.sec_contact{
		margin-top: 8rem;
	}
  .sec_contact .btn {
    margin-bottom: 2rem;
  }
  .sec_contact .btn a {
    width: 100%;
    padding: 1.5rem 0;
    font-size: 2.4rem;
  }
	.sec_contact .ttl{
		font-size: 2rem;
	}
}

.sec_connect{
	margin-top: 12rem;
}
.sec_connect .connect_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sec_connect .connect_lists a{
	transition: .2s;
}
.sec_connect .connect_lists img{
	width: 100%;
}
@media screen and (min-width: 768px) {
	.sec_connect .connect_lists a:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 767px) {
	.sec_connect{
		margin-top: 8rem;
	}
  .sec_connect .connect_lists {
    grid-template-columns: repeat(1, 1fr);
  }
}

.wide_box {
  background: rgba(154, 223, 217, 0.15);
  position: relative;
  inset: 0 auto auto 50%;
  translate: -50% 0;
  width: 113rem;
  margin: 0 auto;
  padding: 9rem 8.5rem;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .wide_box {
    width: calc(100% + 4rem);
    padding: 4rem 2rem;
    border-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .sp_scroll {
    position: relative;
    overflow: scroll;
  }
  .sp_scroll img {
    max-width: none;
  }
  .sp_scroll::before {
    content: "";
    background: url(../img/scroll.png) no-repeat center/cover;
    position: absolute;
    inset: 50% auto auto 50%;
    translate: -50% -50%;
    width: 12rem;
    height: 12rem;
    transition: 0.2s;
  }
  .sp_scroll.hide::before {
    opacity: 0;
    visibility: hidden;
  }
}
.top_sec {
  position: relative;
}
.top_sec + .top_sec {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top_sec + .top_sec {
    margin-top: 8rem;
  }
}

.top_mv {
  background: url(../img/top_mv_bg.png) no-repeat center bottom -4rem/192rem, linear-gradient(to bottom, #AEE4F3, #EBF7FE);
  padding-top: 7rem;
}
@media screen and (max-width: 767px) {
  .top_mv {
    background: url(../img/top_mv_bg_sp.png) no-repeat center top 17rem/100%, linear-gradient(to bottom, #AEE4F3, #EBF7FE);
    padding-top: 6rem;
  }
}
.top_mv .mv_inner {
  position: relative;
  width: min(100%, 132rem);
  margin: 0 auto;
  padding-bottom: 16rem;
}
.top_mv .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top_mv .row {
    flex-direction: column-reverse;
    overflow: hidden;
  }
}
.top_mv h1 {
  color: #1C2B53;
  position: relative;
  font-size: 13rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.top_mv h1 span {
  display: inline-block;
  margin-left: 3rem;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .top_mv h1 {
    width: 100%;
    margin-top: -5rem;
    padding-left: 2rem;
    font-size: 5.5rem;
  }
  .top_mv h1 span {
    margin-left: 1rem;
    font-size: 1.9rem;
  }
}
.top_mv .mask {
  background: url(../img/movie_mask01.svg) no-repeat left bottom/cover;
  width: 66.6rem;
  margin-right: -4rem;
  padding: 0 3.2rem 2.2rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_mv .mask {
    margin-left: -3rem;
    padding: 0 1.2rem 0.8rem 0;
    width: 25.6rem;
  }
}
.top_mv .mask .movie {
  aspect-ratio: 7/6.2;
  -webkit-mask-image: url(../img/movie_mask01.svg);
          mask-image: url(../img/movie_mask01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.top_mv .mask .movie video {
  display: block;
  width: auto;
  height: 100%;
}
.top_mv .doodle {
  position: absolute;
  z-index: 1;
}
.top_mv .doodle01 {
  width: 4.45rem;
  inset: 12rem auto auto 13.8rem;
}
.top_mv .doodle02 {
  width: 6.63rem;
  inset: 8.6rem auto auto 32.4rem;
}
.top_mv .doodle03 {
  width: 12.8rem;
  inset: 8.6rem auto auto 47.4rem;
}
.top_mv .doodle04 {
  width: 10.7rem;
  inset: 55rem auto auto 13.6rem;
}
.top_mv .doodle05 {
  width: 20.6rem;
  inset: 50rem auto auto 70rem;
}
@media screen and (max-width: 767px) {
  .top_mv .doodle01 {
    inset: 37rem auto auto 1.7rem;
    width: 2.8rem;
  }
  .top_mv .doodle02 {
    inset: 12rem auto auto 2rem;
    width: 2.9rem;
  }
  .top_mv .doodle03 {
    inset: 6rem auto auto 6rem;
    width: 6.3rem;
  }
  .top_mv .doodle04 {
    width: 5.7rem;
    inset: 35rem auto auto 9rem;
  }
  .top_mv .doodle05 {
    inset: 36rem auto auto 21rem;
    width: 10.4rem;
  }
}

.top_lead {
  background: url(../img/top_lead_bg.png) no-repeat center top 4rem/192rem;
}
@media screen and (max-width: 767px) {
  .top_lead {
    background: url(../img/top_lead_bg_sp.png) no-repeat center top/145%, linear-gradient(to bottom, #EBF7FE, #F5F9FF);
    padding: 8rem 0;
  }
}
.top_lead .lead_inner {
  position: relative;
  width: min(100%, 120rem);
  margin: 0 auto;
	padding-bottom: 25.6rem;
}
@media screen and (max-width: 767px) {
  .top_lead .lead_inner {
    padding-bottom: 13.5rem;
  }
}
.top_lead .row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  .top_lead .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 2rem;
    margin-top: -14rem;
  }
}
.top_lead .mask {
  background: url(../img/movie_mask02.svg) no-repeat left bottom/cover;
  width: 45.5rem;
  margin-left: -9rem;
  padding: 0 1.7rem 1rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_lead .mask {
    width: 19.7rem;
    margin-left: -4rem;
    padding: 0 0.7rem 0.5rem 0;
  }
}
.top_lead .mask .movie {
  aspect-ratio: 7/6.15;
  -webkit-mask-image: url(../img/movie_mask02.svg);
          mask-image: url(../img/movie_mask02.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.top_lead .mask .movie video {
  display: block;
  width: auto;
  height: 100%;
}
.top_lead dl {
  color: #1C2B53;
  flex: 1;
}
.top_lead dl dt {
  margin-bottom: 2rem;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.4;
}
.top_lead dl dt span {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
}
.top_lead dl dd {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top_lead dl {
    margin-top: -6rem;
  }
  .top_lead dl dt {
    font-size: 4rem;
    text-align: right;
  }
  .top_lead dl dt span {
    font-size: 1.9rem;
  }
  .top_lead dl dd {
    font-size: 1.6rem;
  }
}
.top_lead .doodle {
  position: absolute;
  z-index: 1;
}
.top_lead .doodle01 {
  width: 9.3rem;
  inset: 9rem auto auto 120rem;
}
.top_lead .doodle02 {
  width: 13.8rem;
  inset: 45rem auto auto 27rem;
}
.top_lead .doodle03 {
  width: 13rem;
  inset: 45rem auto auto 84rem;
}
.top_lead .doodle04 {
  width: 18rem;
  inset: 45rem auto auto 100rem;
}
@media screen and (max-width: 767px) {
  .top_lead .doodle01 {
    inset: 0rem auto auto 18rem;
    width: 4rem;
  }
  .top_lead .doodle02 {
    inset: 68rem auto auto 1.5rem;
    width: 4.9rem;
  }
  .top_lead .doodle03 {
    inset: 69rem auto auto 28rem;
    width: 4.7rem;
  }
  .top_lead .doodle04 {
    inset: 75rem auto auto 28rem;
    width: 6.4rem;
  }
}

.top_box .doodle {
  position: absolute;
  z-index: 1;
}
.top_box .doodle01 {
  width: 10.5rem;
  inset: -10rem auto auto 10rem;
}
.top_box .doodle02 {
  width: 34.9rem;
  inset: -19rem auto auto 48rem;
}
.top_box .doodle03 {
  width: 25.5rem;
  inset: 5rem auto auto 95rem;
}
.top_box .doodle04 {
  width: 16.1rem;
  inset: 35rem auto auto 100rem;
}
@media screen and (max-width: 767px) {
  .top_box .doodle01 {
    inset: -3rem auto auto 1.5rem;
    width: 5.5rem;
  }
  .top_box .doodle02 {
    inset: -11em auto auto 8rem;
    width: 16.3rem;
  }
  .top_box .doodle03 {
    inset: 4rem auto auto 23rem;
    width: 11.3rem;
  }
  .top_box .doodle04 {
    inset: 5rem auto auto 16rem;
    width: 5.6rem;
  }
}

.top_news .btn a {
  background: linear-gradient(to right, #9ADFD9, #B1E4FF);
  color: #1C2B53;
  display: block;
  position: relative;
  width: 18rem;
  margin: 0 auto;
  padding: 1.1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 3rem;
}
@media screen and (min-width: 768px) {
  .top_news .btn a:hover {
    background: #2B64EE;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .top_news .btn a {
    font-size: 1.6rem;
    padding: 1.1rem;
  }
}
.top_news .btn a {
  margin: 4rem 0 0;
}

.top_business .txt {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top_business .txt {
    margin-bottom: 2rem;
  }
}
.top_business .ttl {
  color: #1C2B53;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_business .ttl {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: left;
  }
}
.top_business .img {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top_business .img {
    margin-bottom: 2rem;
  }
  .top_business .img .sp_scroll img {
    width: 210%;
  }
}
.top_business .btn a {
  background: linear-gradient(to right, #9ADFD9, #B1E4FF);
  color: #1C2B53;
  display: block;
  position: relative;
  width: 28rem;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 3rem;
}
@media screen and (min-width: 768px) {
  .top_business .btn a:hover {
    background: #2B64EE;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .top_business .btn a {
    font-size: 1.6rem;
    padding: 1.1rem;
  }
}

.top_rec .txt {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top_rec .txt {
    margin-bottom: 2rem;
  }
}
.top_rec .btn a {
  background: linear-gradient(to right, #9ADFD9, #B1E4FF);
  color: #1C2B53;
  display: block;
  position: relative;
  width: 28rem;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 3rem;
}
@media screen and (min-width: 768px) {
  .top_rec .btn a:hover {
    background: #2B64EE;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .top_rec .btn a {
    font-size: 1.6rem;
    padding: 1.1rem;
  }
}

.low_sec {
  position: relative;
}
.low_sec + .low_sec {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .low_sec + .low_sec {
    margin-top: 8rem;
  }
}

.low_head {
  position: relative;
  padding: 7rem 0 6rem;
}
.low_head::before {
  content: "";
  background: linear-gradient(to bottom, #AEE4F3, #F5F9FF);
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 81rem;
}
@media screen and (max-width: 767px) {
  .low_head {
    padding: 8.5rem 0 7rem;
  }
}
.low_head .breadcrumbs {
  position: relative;
  width: min(100%, 144rem);
  margin: 0 auto;
  padding: 0 3rem 2.5rem;
}
.low_head .breadcrumbs ul {
  color: #1C2B53;
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
}
.low_head .breadcrumbs li + li::before {
  content: "\f0da";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  padding: 0 0.8rem 0 1.2rem;
}
.low_head .breadcrumbs a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .low_head .breadcrumbs {
    display: none;
  }
}
.low_head h1 {
  color: #1C2B53;
  position: relative;
  padding: 0 3rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
.low_head h1 span {
  display: inline-block;
  position: relative;
  padding: 0 5.7rem;
}
.low_head h1 span::before, .low_head h1 span::after {
  content: "";
  background: url(../img/low_ttl.svg) no-repeat center/cover;
  position: absolute;
  translate: 0 -50%;
  width: 3.2rem;
  height: 2.8rem;
}
.low_head h1 span::before {
  inset: 50% auto auto 0;
}
.low_head h1 span::after {
  inset: 50% 0 auto auto;
}
@media screen and (max-width: 767px) {
  .low_head h1 {
    padding: 0 1.5rem;
    font-size: 2.8rem;
  }
  .low_head h1 span {
    padding: 0 4.7rem;
  }
}

.low_box .doodle {
  position: absolute;
}
.low_box .doodle01 {
  inset: -9.6rem auto auto 5.9rem;
  width: 18.7rem;
}
.low_box .doodle02 {
  inset: -5.6rem auto auto 27rem;
  width: 8.5rem;
}
.low_box .doodle03 {
  inset: 10.4rem auto auto 3.8rem;
  width: 6rem;
}
.low_box .doodle04 {
  inset: -6.9rem auto auto 92rem;
  width: 6.7rem;
}
.low_box .doodle05 {
  inset: -14.6rem auto auto 101rem;
  width: 30rem;
}
.low_box .doodle06 {
  inset: 5.4rem auto auto 82.8rem;
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .low_box .doodle01 {
    inset: -4.2rem auto auto 2rem;
    width: 9.4rem;
  }
  .low_box .doodle02 {
    inset: -2.2rem auto auto 12.8rem;
    width: 4.3rem;
  }
  .low_box .doodle04 {
    inset: -2.4rem auto auto 21rem;
    width: 3.2rem;
  }
  .low_box .doodle05 {
    inset: -6.2rem auto auto 25rem;
    width: 14.4rem;
  }
  .low_box .doodle03, .low_box .doodle06 {
    display: none;
  }
}

.business_position .ttl {
  color: #1C2B53;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business_position .ttl {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .business_position .img .sp_scroll img {
    width: 210%;
  }
}

.business_scheme .img {
  margin: 6rem 0 2.8rem;
}
@media screen and (max-width: 767px) {
  .business_scheme .img .sp_scroll img {
    margin: 2rem 0 2.8rem;
    width: 210%;
  }
}

@media screen and (max-width: 767px) {
  .business_schedule .img .sp_scroll img {
    width: 210%;
  }
}

.low_btn a{
	background: linear-gradient(to right, #9ADFD9, #B1E4FF);
    color: #1C2B53;
    display: block;
    position: relative;
    width: 28rem;
    margin: 3rem auto 0;
    padding: 1.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 3rem;
}
.low_btn a:hover{
	background: #2B64EE;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.low_btn a{
		padding: 1.1rem;
		font-size: 1.6rem;
	}
}


.rec_flow{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6rem;
	margin-top: 3rem;
}
.rec_flow li{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	gap: 0;
	position: relative;
	border-radius: 2rem;
}
.rec_flow li + li::before{
	content: '\f0da';
	color: #00CCB1;
	position: absolute;
	inset: 50% auto auto -3rem;
	translate: -50% -50%;
	font-size: 5rem;
	font-weight: 600;
	font-family: "Font Awesome 6 Free";
}
.rec_flow li .flow{
	background: #1C2B53;
	padding: 4rem 0 2.5rem;
	border-radius: 2rem 2rem 0 0;
}
.rec_flow li .flow img{
	width: 13rem;
	margin: 0 auto 2.4rem;
}
.rec_flow li .flow .flow_txt{
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}
.rec_flow li .flow .flow_txt span{
	display: block;
	font-size: 1.6rem;
}
.rec_flow li .day{
	color: #1C2B53;
	padding: 2.5rem 0;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	border: 1px solid #1C2B53;
	border-radius: 0 0 2rem 2rem;
}
@media screen and (max-width: 767px) {
	.rec_flow{
		grid-template-columns: repeat(1, 1fr);
	}
	.rec_flow li{
	}
	.rec_flow li + li::before{
		content: '\f0dd';
		inset: -4rem auto auto 50%;
	}
	.rec_flow li .flow{
		padding: 3rem 0 2rem;
	}
	.rec_flow li .flow img{
		width: 8rem;
		margin: 0 auto 1rem;
	}
	.rec_flow li .day{
		padding: 1rem;
	}
}

.page_sitepolicy :is(.doodle, .sec_contact, .sec_connect){
	display: none;
}


.news_detail p {
  margin-bottom: 6rem;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .news_detail p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}
.news_detail img {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .news_detail img {
    margin-bottom: 2rem;
  }
}
.news_detail .btn {
  margin-top: 6rem;
}
.news_detail .btn a {
  background: linear-gradient(to right, #9ADFD9, #B1E4FF);
  color: #1C2B53;
  display: block;
  position: relative;
  width: 24rem;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 3rem;
}
@media screen and (min-width: 768px) {
  .news_detail .btn a:hover {
    background: #2B64EE;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .news_detail .btn a {
    font-size: 1.6rem;
    padding: 1.1rem;
  }
}
.news_detail .btn a::before {
  content: "\f060";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  inset: 50% auto auto 2rem;
  translate: 0 -50%;
}

#cookie-banner {
  background: #333;
  color: #fff;
  display: block;
  position: fixed;
  inset: auto auto 0 0;
  width: 100vw;
  padding: 1em 0;
  font-size: 1.6rem;
  text-align: center;
  z-index: 1000;
}
#cookie-banner button {
  background: #2A64EE;
  color: #fff;
  margin-left: 1rem;
  padding: 0.2rem 1rem;
  border: none;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
	#cookie-banner {
		font-size: 1rem;
	}
	#cookie-banner button {
		font-size: 1rem;
	}
}