@charset "utf-8";
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: #000;
  line-height: 1.75;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: .1rem;
}
.mincho {
  font-family: 'Noto Serif JP', serif;
}
.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.en {
  font-family: 'Dancing Script', cursive;
}
main {
  position: relative;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
.bg {
  background: #00479d;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: .7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.wide {
  max-width: 1100px;
}
.short {
  max-width: 830px;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width:1200px) {
  body {
    font-size: 1.6rem;
  }
  .wide {
    width: 100%;
  }
}
@media (max-width:767px) {
  body {
    font-size: 2rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}
/* common style
-------------------------------------------------------------- */
.txtGreen {
  color: #03af7a;
}
#sv {
  margin-bottom: 140px;
  padding: 70px 0 60px;
  background: #03af7a;
  color: #fff;
  text-align: center;
}
#sv h1 {
  position: relative;
  padding-bottom: 30px;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
#sv h1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: 10px;
  background: #fff;
  content: "";
}
.btn a {
  display: inline-block;
  max-width: 480px;
}
.pageBack {
  padding-top: 200px;
}
.kiran a {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.kiran a::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.kiran a:hover::before {
  animation: kiran 0.5s linear;
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.poyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@media (max-width: 1200px) {
  #sv {
    margin-bottom: 100px;
    padding: 50px 0;
  }
  #sv h1 {
    font-size: 3.4rem;
  }
  #sv h1::after {
    width: 120px;
    height: 6px;
  }
  .pageBack {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  #sv {
    margin-bottom: 70px;
    padding: 30px 0;
  }
  #sv h1 {
    padding-bottom: 20px;
    font-size: 3rem;
  }
  #sv h1::after {
    width: 60px;
    height: 4px;
  }
  .pageBack {
    padding-top: 100px;
  }
}
/* cvArea
-------------------------------------------------------------- */
.cvArea p {
  padding-bottom: 40px;
  font-size: 3rem;
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
}
.cvArea .btn a {
  max-width: 920px;
}
@media (max-width:1200px) {
  .cvArea p {
    padding-bottom: 30px;
    font-size: 2.8rem;
  }
}
@media (max-width:767px) {
  .cvArea p {
    padding-bottom: 20px;
    font-size: 2.4rem;
  }
}
/* cvArea2
-------------------------------------------------------------- */
.cvArea2 p {
  padding-bottom: 50px;
  line-height: 1.4;
}
.cvArea2 .flex {
  align-items: center;
}
.cvArea2 figure {
  padding: 0 20px !important;
  width: 28% !important;
}
.cvArea2 ul {
  width: 60%;
}
.cvArea2 li {
  padding-bottom: 20px;
}
@media (max-width:1200px) {
  .cvArea2 p {
    padding-bottom: 50px;
  }
}
@media (max-width:767px) {
  .cvArea2 p {
    padding-bottom: 20px;
  }
  .cvArea2 figure {
    padding: 0 20px 50px !important;
    width: 60% !important;
  }
  .cvArea2 ul {
    width: 100%;
  }
  .cvArea2 li {
    padding-bottom: 10px;
  }
}
/* form
-------------------------------------------------------------- */
.form .txtArea {
  padding-top: 130px;
  text-align: center;
}
.form .txtArea .leadtxt {
  font-size: 7.5rem;
  line-height: 1.2;
}
.form .txtArea .arrow {
  padding: 60px 0;
}
.form .txtArea .arrow img {
  max-width: 230px;
}
.form .txtArea .img img {
  max-width: 732px;
}
.form .txtArea .txt {
  padding: 130px 0 80px;
  font-size: 2.2rem;
  text-align: left;
}
.form .ttl {
  background: #03af7a;
  color: #fff;
  font-weight: 600;
  font-size: 4.5rem;
  text-align: center;
}
.form .imp {
  padding-bottom: 100px;
  color: #f00;
  font-size: 2.2rem;
}
@media (max-width: 1470px) {
  .form .txtArea .leadtxt {
    font-size: 5rem;
  }
}
@media (max-width: 767px) {
  .form .txtArea {
    padding-top: 100px;
  }
  .form .txtArea .leadtxt {
    font-size: 8vw;
  }
  .form .txtArea .arrow {
    padding: 40px 0;
  }
  .form .txtArea .arrow img {
    max-width: 40%;
  }
  .form .txtArea .img img {
    max-width: 100%;
  }
  .form .txtArea .txt {
    padding: 80px 0 40px;
    font-size: 1.5rem;
  }
  .form .ttl {
    font-size: 2.6rem;
  }
  .form .imp {
    padding-bottom: 60px;
    font-size: 1.5rem;
  }
}
/* footer
-------------------------------------------------------------- */
footer {
  margin-top: 200px;
  padding: 10px 0;
  text-align: center;
  background: #03af7a;
}
footer .copy {
  padding: 10px;
  color: #fff;
  font-size: 1.8rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 12%;
  right: 3%;
  max-width: 30px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 1200px) {
  footer {
    margin-top: 150px;
  }
  footer .copy {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  footer {
    margin-top: 100px;
  }
  footer .copy {
    font-size: 2.5vw;
  }
  #Pagetop {
    max-width: 20px;
    bottom: 10%;
  }
}