@charset "UTF-8";
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url(../font/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "Zen Kaku Gothic New M";
  src: url(../font/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "Zen Kaku Gothic New B";
  src: url(../font/ZenKakuGothicNew-Bold.ttf);
}
/*=======================================
 	             SMACSS  base
 ========================================*/
p, ul, ol, dl {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

body {
  background-color: #f9f9f9;
}

/*=======================================
                  PC   
========================================*/
/* ===================
	　　 General
=================== */
#page-lp {
  width: 100rem;
  margin: 8rem auto;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.15em;
  background: center no-repeat url(../img/bg_pc.jpg);
  background-attachment: fixed;
}
#page-lp a {
  text-decoration: none;
  transition: 1s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: unset;
}
#page-lp a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: 1s;
}
#page-lp img {
  width: 100%;
}

/* ===================
	　　　 top
=================== */
.lp-top {
  width: 41.7rem;
  margin: 0 auto;
  padding: 6rem 0;
}

/* ===================
	　　 section
=================== */
.lp-inner {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20rem 20rem 0 0;
  width: 80rem;
  margin: 0 auto;
}
.lp-inner .lp-ttl .fullmoon {
  width: 19.3rem;
  margin: 0 auto;
  padding-top: 3rem;
}
.lp-inner .lp-ttl .ttl {
  font-family: "Zen Kaku Gothic New M";
  font-size: 2rem;
  padding-top: 0.7rem;
}
.lp-inner .lp-text .subttl {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 2rem;
  padding-top: 5rem;
  color: #12244A;
}
.lp-inner .lp-text .article-inner {
  padding: 4rem;
  position: relative;
}
.lp-inner .lp-text .article-inner .article {
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: justify;
  height: 72rem;
  overflow: hidden;
}
.lp-inner .lp-text .article-inner .readmore {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  padding-top: 18rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%);
  cursor: pointer;
  transition: bottom 0.2s;
  text-decoration: underline;
  letter-spacing: 0.08em;
}

.profile {
  width: 80rem;
  margin: 0 auto;
  padding: 4rem 0;
}
.profile .inner {
  background-color: #12244A;
  color: #fff;
  padding: 3rem 5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.profile .inner .img {
  width: 14rem;
  padding-right: 3rem;
}
.profile .inner .txt {
  width: 53rem;
  text-align: justify;
}
.profile .inner .name {
  font-family: "Zen Kaku Gothic New B";
  font-size: 1.8rem;
  display: inline-block;
  padding-right: 2rem;
}
.profile .inner .job {
  font-family: "Zen Kaku Gothic New B";
  font-size: 1.6rem;
  display: inline-block;
}
.profile .inner .detail {
  font-size: 1.3rem;
  padding-top: 1rem;
}

/*=======================================
               Responsive   
========================================*/
/* for PC */
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
  html {
    font-size: 62.5%;
  }
}
/* for tablet */
@media screen and (min-device-width: 768px) and (max-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1) {
  html {
    font-size: 0.8333333333vw;
  }
}
/* for SP */
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
  html {
    font-size: 1.3333333333vw !important;
  }
  /*=======================================
                    SP    
  ========================================*/
  /* ===================
  	　　 General
  =================== */
  #page-lp {
    width: 100%;
    margin: 0 auto;
    font-size: 3.4666666667vw;
    background: unset;
    background-attachment: unset;
  }
  #page-lp::before {
    background: url(../img/bg_sp.jpg) no-repeat center; /* 画像（ここにfixedは入れない） */
    background-size: cover; /* cover指定できる */
    content: "";
    display: block;
    position: fixed; /* 擬似要素ごと固定 */
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%; /* 横幅いっぱい */
    height: 100vh; /* 縦幅いっぱい */
  }
  /* ===================
  	　　　 top
  =================== */
  .lp-top {
    width: 78.1333333333vw;
    padding: 10.6666666667vw 0;
    z-index: 2;
    position: relative;
  }
  /* ===================
  	　　 section
  =================== */
  .lp-inner {
    border-radius: 26.6666666667vw 26.6666666667vw 0 0;
    width: 89.3333333333vw;
    z-index: 2;
    position: relative;
  }
  .lp-inner .lp-ttl .fullmoon {
    width: 51.4666666667vw;
    padding-top: 8vw;
  }
  .lp-inner .lp-ttl .ttl {
    font-family: "Zen Kaku Gothic New";
    font-size: 4.8vw;
    padding-top: 2.1333333333vw;
  }
  .lp-inner .lp-text .subttl {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
    font-size: 4.8vw;
    padding-top: 10.6666666667vw;
    color: #12244A;
  }
  .lp-inner .lp-text .article-inner {
    padding: 8vw 5.3333333333vw;
    position: relative;
  }
  .lp-inner .lp-text .article-inner .article {
    height: 160vw;
    overflow: hidden;
  }
  .lp-inner .lp-text .article-inner .readmore {
    height: 53.3333333333vw;
    padding-top: 40vw;
  }
  .profile {
    width: 89.3333333333vw;
    padding: 10.6666666667vw 0 5.3333333333vw;
    z-index: 2;
    position: relative;
  }
  .profile .inner {
    background-color: #12244A;
    color: #fff;
    padding: 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 89.3333333333vw;
  }
  .profile .inner .img {
    width: 29.3333333333vw;
    padding-right: unset;
  }
  .profile .inner .txt {
    width: 73.3333333333vw;
    text-align: justify;
  }
  .profile .inner .name {
    font-family: "Zen Kaku Gothic New B";
    font-size: 4.8vw;
    display: block;
    padding-right: 0;
    padding-bottom: 5.3333333333vw;
    text-align: left;
  }
  .profile .inner .job {
    font-family: "Zen Kaku Gothic New B";
    font-size: 3.7333333333vw;
    display: inline-block;
    text-align: left;
  }
  .profile .inner .detail {
    font-size: 3.4666666667vw;
    padding-top: 4vw;
  }
  #FooterWrap {
    z-index: 2;
    position: relative;
  }
  #share {
    z-index: 22 !important;
    left: 3% !important;
  }
}
/*# sourceMappingURL=style.css.map */