@charset "utf-8";
/* CSS Document */

@media print,
screen and (min-width: 768px) {
  .p-top {
    background-image: url("../images/main_bkg.webp");
    position: relative;
    background-position: center;
    background-color: #f0f0f0;
    background-size: cover;
    background-attachment: fixed;
  }
}

@media not all and (min-width: 768px) {
  .p-top {
    background-image: url("../images/main_bkg.webp");
    background-color: #000000;
    padding: 130px 0 50px;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
	h1 span {
        margin-top: .45rem!important;
    }
}

/*追記*/
.menu_wrapp {
  max-width: 1180px;
  margin: -80px auto 0 auto;
}
.p-top__heading {
  font-weight: bold;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in 0.8s;
  animation: fadeIn 1s ease-in 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  text-shadow: 0px 0px 13px #0A84C8, 0px 0px 10px #0A84C8, 0px 0px 10px #0A84C8;
  color: #fff;
}
.p-top__heading {
  font-size: 3.625rem;
  font-style: italic;
  padding: 0 16px;
	line-height: 4.25rem;
}
.sec_cp_mv {
  background-image: url("../images/top/mv.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 580px;
  position: relative;
}
.mv_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  margin: auto;
  height: fit-content;
}
.p-top__heading + a {
  font-weight: bold;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in 0.8s;
  animation: fadeIn 1s ease-in 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  color: #000;
  background-color: #ffcc33;
  display: inline-block;
  width: 300px;
  text-align: center;
  border-radius: 50px;
  padding: 15px 0;
  font-size: 17px;
  margin-top: 15px;
  margin-left: 15px;
  z-index: 1;
  transition: .3s;
  position: relative;
  overflow: hidden;
  transition: ease .2s;
  border: solid 2px #ffcc33;
}
.p-top__heading + a span {
  position: relative;
  z-index: 3;
  color: #444;
  transition: ease .4s;
}
.p-top__heading + a:hover span {
  color: #ffcc33;
}
.p-top__heading + a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.p-top__heading + a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.sec_menu {
  position: sticky;
}
.main_menu {
  padding: 40px 25px 20px 25px;
  background-color: #fff;
}
.main_menu ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.main_menu li {
  width: calc(97%/3);
  height: fit-content;
}
.main_menu a {
  background: linear-gradient(-12deg, #000 0%, #000 50%, #333 50%, #333 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 20px;
  color: #fff;
  transition: .3s;
}
.main_menu a:hover {
  opacity: .8;
}
.btn_menu ul {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
}
.btns {
  position: relative;
  overflow: hidden;
}
.btns .btn_cap {
  position: absolute;
  font-size: 20px;
  color: #fff;
  left: 10px;
  bottom: 10px;
  transition: .3s ease-in-out;
  overflow: hidden;
  z-index: 5;
}
.btns .btn_txt {
  position: absolute;
  font-size: 16px;
  opacity: 0;
  color: #fff;
  left: 10px;
  bottom: 10px;
  transition: .5s ease-in-out;
  overflow: hidden;
  z-index: 3;
  transform: translateY(100%);
}
.ol_b {
  position: absolute;
  display: block;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 182px;
  background-color: rgba(0, 0, 0, .6);
}
.btns .ol {
  position: absolute;
  display: block;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 182px;
}
.btns .ol::before {
  content: '';
  background: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .2s ease-in-out;
  transform: translateY(100%);
}
.btns:hover .ol::before {
  opacity: 1;
  transform: translateY(0);
}
.btns:hover .btn_cap {
  opacity: 1;
  bottom: 60px;
}
.btns:hover .btn_txt {
  opacity: 1;
  transform: translateY(0);
}
.btn_menu {
  background: rgb(81, 210, 188);
  background: linear-gradient(156deg, rgba(81, 210, 188, 1) 19%, rgba(13, 124, 255, 1) 100%);
  padding: 20px 24px;
}
@media screen and (max-width:1200px) {
  .menu_wrapp {
    max-width: 90%;
  }
  .main_menu a {
    font-size: 18px;
  }
  .btn_menu a span {
    font-size: 18px;
  }
}
@media screen and (max-width:910px) {
  .main_menu a {
    font-size: 16px;
  }
  .btn_menu a span {
    font-size: 16px;
  }
}
@media screen and (max-width:840px) {
  .main_menu ul {
    display: block;
  }
  .main_menu li {
    width: 100%;
    margin-bottom: 10px;
  }
  .main_menu a {
    background: linear-gradient(-6deg, #000 0%, #000 50%, #333 50%, #333 100%);
  }
  .btn_menu a img {
    height: 182px;
    width: 100%;
    object-fit: cover;
  }
  .btn_menu li {
    width: 100%;
  }
  .btn_menu a {
    width: 100%;
  }
}