@charset "UTF-8";

body{
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
}


}

::selection{
  background-color: #4055ff;
  color: #fff;
}

.m-header{
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
  padding: .4em 0;
  position: sticky;
  text-align: center;
  z-index: 10;

  top: 0;
}
.m-header-inner{
  margin: auto;
  position: relative;
  max-width: 1050px;
}

.title{
  font-size: 30px;
  font-weight: 400;
}
.title a{
  color: #000;
}





/* hamburger */
.m-hamburger{
	height: 30px;
	width: 30px;
	position: absolute;
  transform: translateY(-50%);
	right: 1em;
  top: 50%;
}
.m-hamburger > div{
	background: #333;
	height: 2px;
	margin: 5px 0;
}
.m-hamburger::before,
.m-hamburger::after{
	background: #333;
	content: "";
	display: block;
	height: 2px;
}





/* kv */
.kv-box{
  align-items: center;
  background-color: #87ceeb;
  background-image: url(../img/kv.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  height: 40vw;
  margin-bottom: -10vh;
  position: relative;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .kv-box{
    height: 120vw;
  }
}

.kv-box::before{
  background-color: #87ceeb;
  content: "";
  display: block;
  mix-blend-mode: hard-light;
  position: absolute;
  width: 100%;
  height: 200%;
  opacity: .9;
  z-index: -1;
}

.kv-box img{
  width: 100%;
}



/* title */
.m-title{
  color: #4055ff;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 120px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width:768px) {
  .m-title{
    font-size: 70px;
  }
  
}
.m-title-small{
  display: block;
  font-size: 40px;
  margin-top: -1em;
}
@media screen and (max-width:768px) {
  .m-title-small{
    font-size: 24px;
  }
}




/* profile */
.profile{
  align-items: center;
  display: flex;
  margin-top: 3em;
}
@media screen and (max-width:768px) {
  .profile{
    display: block;
    margin-top: 1em;
  }
}

.profile-imgbox{
  margin: auto;
  width: 40%;
}
@media screen and (max-width:768px) {
  .profile-imgbox{
    width: 60%;
  }
}

.profile-txtbox{
  margin-left: 2.5em;
  width: calc(70% - 2.5em);
}
@media screen and (max-width:768px) {
  .profile-txtbox{
    margin-top: 1em;
    margin-left: 0;
    width: 100%;
  }
}

.profile-name-box{
  display: flex;
}
.profile-name-box::before{
  background: #4055ff;
  border-radius: 100px;
  content: "";
  display: inline-block;
  margin-right: .5em;
  width: .3em;
}

.profile-name-box :where(.ruby,.name){
  display: block;
}
.ruby{
  font-size: 70%;
}





/* sns-linkbox */
.m-sns-linkbox{
  display: flex;
}
.m-sns-linkbox a{
  display: block;
  margin-right: .5em;
  transition: .3s;
  width: 2em;
}
@media screen and (max-width:768px) {
  .m-sns-linkbox a{
    width: 3em;
  }
}  

.m-sns-linkbox a img{
  display: block;
}
@media screen and (min-width:768px) {
  .m-sns-linkbox a:hover{
    opacity: .4;
    transform: scale(1.15);
  }

}





/* headline */
.m-headline-type2{
  align-items: center;
  color: #4055ff;
  display: flex;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 2em;
  white-space: nowrap;
}
.m-headline-type2::before{
  background: #4055ff;
  border-radius: 100px;
  content: "";
  display: inline-block;
  height: 1em;
  margin-right: .5em;
  width: .28em;
}
.m-headline-type2::after{
  background: #4055ff;
  content: "";
  display: block;
  height: .1em;
  margin-left: 1em;
  width: 100%;
}

.m-list-type1 > li{
  margin-top: .4em;
}





/* slick */
.slick-slide{
  margin: .5em;
}
@media screen and (max-width:768px) {
  .slick-slide{
    margin: .1em;
  }
}




/* modal */
.modal {
	position: relative;
	z-index: 100;
}
.modal-overlay {
  align-items: center;
  background: rgba(255,255,255,.95);
  display: flex;
  justify-content: center;
	position: fixed;

	top: 0;
  left: 0;
  right: 0;
  bottom: 0;

	height: 100%;
}
.modal-container {
  height: 100vh;
  overflow-y: hidden;
	padding: 80px 5% 20px;
	position: relative;
	width: 100%;
  max-width: 950px;
	z-index: 1000;
}
.m-modalnav-list > li{
	margin-top: 10px;
}
.m-modalnav-list a{
  color: #333;
  display: inline-block;
  font-size: 32px;
  letter-spacing: .1em;
  line-height: 1;
  overflow: hidden;
}
.m-modalnav-list a::after{
  background: #4055ff;
  content: "";
  display: inline-block;
  height: 5px;
  width: 100%;
  margin: 0 auto 0;
  opacity: 0;
  transition: .25s ease;
  transform: translateY(-0.5em) translateX(120%);
}
@media screen and (min-width:768px) {
  .m-modalnav-list a:hover::after{
    opacity: 1;
    transform: translateY(-0.5em) translateX(0);
  }
}
.modal-close {
  background: transparent;
  border: 0;
	position: absolute;
	top: 2em;
	right: 2em;
}

.modal-title .modal-close::before {
	font-size: 30px;
	color: #4055ff;
	content: "\2715";
  display: block;
	line-height: 1;
  margin-top: .5em;
}





/* animation */
@keyframes mmfadeIn {
	from { opacity: 0; }
		to { opacity: 1; }
}

@keyframes mmfadeOut {
	from { opacity: 1; }
		to { opacity: 0; }
}

@keyframes mmslideIn {
from { transform: translateY(10%); }
	to { transform: translateY(0); }
}

@keyframes mmslideOut {
	from { transform: translateY(0); }
		to { transform: translateY(-10%); }
}

.micromodal-slide {
display: none;
}

.micromodal-slide.is-open {
display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
animation: mmfadeIn .3s;
}

.micromodal-slide[aria-hidden="false"] .modal-container {
animation: mmslideIn .3s;
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
animation: mmfadeOut .3s;
}

.micromodal-slide[aria-hidden="true"] .modal-container {
animation: mmslideOut .3s;
}





.m-content-inner{
  margin: auto;
  padding: 8em;
  max-width: 950px;
}
@media screen and (max-width:768px) {
  .m-content-inner{
    padding: 4em 8%;
  }
}

@media screen and (min-width:769px) {
  .m-content-inner:has(.profile){
    padding-right: 0;
    padding-left: 0;
  }
}


.m-content-inner-type2{
  margin: auto;
  padding: 8em 0;
}
@media screen and (max-width:768px) {
  .m-content-inner-type2{
    padding: 4em 0;
  }
}

.m-headline{
  color: #4055ff;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 52px;
  letter-spacing: .05em;
  text-align: center;
	text-indent: .05em;
}



/* cta */
.m-cta{
  align-items: center;
  background: #4055ff;
  box-shadow: 8px 8px 0 #87ceeb;
  color: #fff;
  display: flex;
  justify-content: center;
  letter-spacing: .1em;
  padding: .9em 1.5em;
  position: relative;
  text-align: center;
  transform: skew(-3deg);
  transition: .3s;
  margin: auto;
  max-width: 350px;
}

.m-cta::after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: .7em;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  transition: .3s;
  width: .7em;

  top: 50%;
  right: 1em;
}
@media screen and (min-width:768px) {
  .m-cta:hover{
    box-shadow: none;
  }
  .m-cta:hover::after{
    right: .6em;
  }
}

.m-cta-ghost{
  background: #fff;
  border: 2px solid #4055ff;
  color: #4055ff;
}
.m-cta-ghost::after{
  border-color: #87ceeb;
}

.m-cta-icon{
  margin-right: .5em;
  width: 1.5em;
}





/* footer */
.m-footer{
  background: #111;
  color: #fff;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
  padding: 2em;
}
.m-footer a{
  color: #fff;
}

.m-footer-inner{
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .m-footer-inner{
    display: block;
  }
}

.m-footer-inner a{
  display: block;
}

.m-footer-nav ul{
  display: flex;
  margin-left: 2em;
}
@media screen and (max-width:768px) {
  .m-footer-nav ul{
    display: block;
    margin-left: 0;
  }
}

.m-footer-nav li{
  font-size: 20px;
  margin: 0 1em;
}
@media screen and (max-width:768px) {
  .m-footer-nav li{
    margin: 1em 0;
  }
}

.m-footer-toplink{
  font-size: 160%;
}


@media screen and (min-width:768px) {
  .m-footer-inner a:hover{
    opacity: .5;
    transform: translateX(.1em) translateY(.1em);
  }
}

.m-footer .m-sns-linkbox{
  justify-content: flex-end;
}
@media screen and (max-width:768px) {
  .m-footer .m-sns-linkbox{
    border-top: 2px solid #999;
    justify-content: center;
    padding-top: 2em;
  }
  .m-footer .m-sns-linkbox li{
    margin: 0 .5em;
  }
}

.m-footer .m-sns-linkbox img{
  filter: invert(1);
}




/* state */

/* state */
@media screen and (max-width:767px){
	.is-pc{display: none !important;}
}
@media screen and (min-width:768px){
	.is-pc{display:block}
}
@media screen and (max-width:767px){
	.is-sp{display:block}
}
@media screen and (min-width:768px){
	.is-sp{display: none !important;}
}


.is-bg-skew{
  position: relative;
}
.is-bg-skew::before{
	content: "";
	display: block;
	transform: skewY(-8deg);
	height: 100%;
	position: absolute;
	width: 100%;

	z-index: -1;
}
@media screen and (max-width:768px) {
  .is-bg-skew::before{
  	transform: skewY(-9deg);
  }
}

.is-bg-w.is-bg-skew::before{
  background: #fff;
}
.is-bg-g.is-bg-skew::before{
  background: #87ceeb;
}



.is-txtlink{
  color: #4055ff;
  display: inline-block;
	overflow-wrap: break-word;
	text-decoration: underline;
}
.is-txtlink::after{
	background-image: url(../img/new_window.svg);
  background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1em;
	margin-left: .5em;
	width: 1em;
}
@media screen and (min-width:768px) {
  .is-txtlink:hover{
    opacity: .5;
    transform: translateX(.1em) translateY(.1em);
  }
}

.is-pdf-link::after{
  background-image: url(../img/new_pdf.svg);
  background-repeat: no-repeat;
	background-size: contain;
  border: none;
	content: "";
	display: inline-block;
	height: 1em;
	margin-left: .5em;
  transform: translateY(-50%) rotate(0) scale(1.3);
	width: 1em;
}



.is-mt-short{
  margin-top: 1em;
}

.is-ta-c{
  text-align: center;
}
