/* ==========================================================================
  Animation
  ========================================================================== */
.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.8s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeInUp {
  opacity: 0;
}

.anim-fadeInUp.is-show {
  animation: fadeInUp 1s both cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 80px);
  }
  70% {
    transform: translate(0, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes bounce-repeat {
  0%, 90%, 92%, 94%, 96%, 98%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  92% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  94% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  96% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  98% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
#machigai.main {
  width: 100%;
  max-width: 100%;
  padding: 0 0 40px;
}
#machigai .machigai-container {
  margin-bottom: 20px;
}
#machigai .l-inner {
  max-width: 1240px;
  margin: 0 auto;
  line-height: 1.714;
  padding: 0 20px;
}
#machigai img {
  display: block;
  width: 100%;
  height: auto;
}
#machigai .btn {
  display: block;
}

#machigai .kv {
  position: relative;
  min-height: 570px;
  background: url(../images/kv-bg-wave.svg) center bottom repeat-x #f7d178;
  background-size: 600px auto;
  padding: 60px 0 0;
}
#machigai .kv .l-inner {
  position: relative;
}
#machigai .kv .l-inner h1 {
  z-index: 3;
  width: 70%;
  max-width: 1100px;
  margin: 0;
  padding-bottom: 15%;
}
#machigai .kv .l-inner .chara {
  position: absolute;
  top: 25%;
  right: 5%;
  z-index: 2;
  margin: 0;
  width: auto;
  max-height: 400px;
  display: flex;
}

@media screen and (max-width: 767px) {
  #machigai .kv {
    min-height: 450px;
    background-size: 360px auto;
    padding: 10% 0 0;
  }
  #machigai .kv .l-inner h1 {
    width: 90%;
    margin: 0 auto 30px;
    padding-bottom: 3%;
  }
  #machigai .kv .l-inner .chara {
    position: static;
    top: 0;
    right: 0;
    margin: 0 auto;
    width: 50%;
  }
}
#machigai .cnts {
  position: relative;
  background: #f7d178;
  padding: 60px 0 120px;
}
#machigai .cnts::before {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  width: 100%;
  background: url(../images/prof-bg-wave-2.svg) center bottom repeat-x;
  background-size: auto 30px;
  top: -30px;
  bottom: auto;
}
#machigai .cnts .explain {
  max-width: 960px;
  margin: 0 auto 60px;
}
#machigai .cnts .explain .ttl {
  position: absolute;
  width: 100%;
  top: -130px;
  left: 0;
  padding-bottom: 2.5%;
  margin-bottom: 5%;
}
#machigai .cnts .explain .ttl img {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}
#machigai .cnts .explain .lead {
  max-width: 600px;
  margin: 180px auto 0;
}
#machigai .cnts .illust {
  max-width: 960px;
  margin: 0 auto 60px;
}
#machigai .cnts .illust.illust1 {
  margin-bottom: 120px;
}
#machigai .cnts .illust .illust-wrap {
  padding: 5%;
  background: #f6f0d8;
  border-radius: 18px;
  margin-bottom: 15px;
}
#machigai .cnts .illust h3 {
  width: 35%;
  max-width: 452px;
  margin: 0 auto 30px;
}
#machigai .cnts .illust ul {
  display: flex;
  justify-content: space-between;
}
#machigai .cnts .illust ul li {
  width: 47.5%;
}
#machigai .cnts .illust ul li img {
  display: block;
  width: 100%;
  height: auto;
}
#machigai .cnts .illust a.btn-zoom {
  width: 20%;
  min-width: 100px;
  max-width: 180px;
  margin: 0 0 30px auto;
}
#machigai .cnts .illust a.btn-judge {
  width: 45%;
  min-width: 260px;
  max-width: 520px;
  margin: 0 auto;
}
#machigai .cnts .machigai-sns {
  width: 250px;
  margin: 0 auto;
  justify-content: space-around;
  display: flex;
}
#machigai .cnts .machigai-sns li {
  width: 100%;
  height: auto;
  display: contents;
}
#machigai .cnts .machigai-sns li img {
  width: auto;
  height: 50px;
}
#machigai .cnts .machigai-sns li a {
  display: block;
}
#machigai .cnts .machigai-sns li a:hover {
  opacity: 0.8;
}

#machigai .cnts-movie {
  position: static;
  background: #f6f0d8;
}
#machigai .cnts-movie .movie {
  max-width: 960px;
  margin: 0 auto 60px;
}
#machigai .cnts-movie .movie .ttl {
  width: 100%;
  top: -130px;
  left: 0;
  padding-bottom: 2.5%;
  margin-bottom: 0;
}
#machigai .cnts-movie .movie .ttl img {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}
#machigai .cnts-movie .movie .lead {
  max-width: 670px;
  margin: 0 auto 60px;
}
#machigai .cnts-movie .movie .youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  z-index: 0;
}
#machigai .cnts-movie .movie .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  #machigai .cnts-movie .movie .lead {
    max-width: 90%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  #machigai .cnts {
    padding: 10% 0 10%;
  }
  #machigai .cnts .explain {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  #machigai .cnts .explain .ttl {
    position: absolute;
    width: 100%;
    top: -80px;
    left: 0;
    right: 0;
    padding-bottom: 2.5%;
    margin: 0 auto;
  }
  #machigai .cnts .explain .ttl img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
  #machigai .cnts .explain .lead {
    max-width: 100%;
    margin: 40px auto 0;
  }
  #machigai .cnts .illust {
    margin: 0 auto 10%;
  }
  #machigai .cnts .illust.illust1 {
    margin-bottom: 20%;
  }
  #machigai .cnts .illust .illust-wrap {
    border-radius: 12px;
  }
  #machigai .cnts .illust h3 {
    width: 50%;
    margin: 0 auto 5%;
  }
  #machigai .cnts .illust ul {
    flex-direction: column;
    justify-content: center;
  }
  #machigai .cnts .illust ul li {
    width: 75%;
    margin: 0 auto 5%;
  }
  #machigai .cnts .illust ul li img {
    display: block;
    width: 100%;
    height: auto;
  }
  #machigai .cnts .illust a.btn-zoom {
    width: 100px;
    margin: 0 0 10% auto;
  }
  #machigai .cnts .illust a.btn-judge {
    width: 80%;
    max-width: 520px;
    margin: 0 auto;
  }
  #machigai .cnts .machigai-sns {
    width: 60%;
    margin: 0 auto 30px;
    justify-content: space-around;
    display: flex;
  }
  #machigai .cnts .machigai-sns li {
    width: 100%;
    height: auto;
    display: contents;
  }
  #machigai .cnts .machigai-sns li img {
    width: auto;
    height: 50px;
  }
}
#machigai .profile {
  position: relative;
  background: #f6f0d8;
  padding-bottom: 60px;
}
#machigai .profile::before {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  width: 100%;
  background: url(../images/prof-bg-wave.svg) center bottom repeat-x;
  background-size: auto 30px;
  top: -30px;
  bottom: auto;
}
#machigai .profile .prof-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
}
#machigai .profile .prof-wrap .prof-name {
  width: 40%;
}
#machigai .profile .prof-wrap .prof-spec {
  width: 55%;
}
#machigai .profile .prof-name h4 {
  width: 80%;
  max-width: 434px;
  margin-bottom: 20%;
}
#machigai .profile .prof-name .chara {
  width: 70%;
  margin: 0 auto;
}
#machigai .profile .prof-spec .lead {
  margin-bottom: 60px;
}
#machigai .profile .prof-spec .prof-table {
  border: 2px solid #ec1234;
  border-radius: 18px;
  overflow: hidden;
}
#machigai .profile .prof-spec .creator {
  color: #ec1234;
  padding: 10px 0 0 4px;
  font-weight: bold;
}
#machigai .profile .prof-spec table {
  background: #fff;
  border-collapse: collapse;
}
#machigai .profile .prof-spec table th, #machigai .profile .prof-spec table td {
  padding: 0.75em 1.5em;
  border: 2px solid #ec1234;
  vertical-align: middle;
  font-size: 100%;
  color: #ec1234;
}
#machigai .profile .prof-spec table th:first-child, #machigai .profile .prof-spec table td:first-child {
  border-left: none;
}
#machigai .profile .prof-spec table th:last-child, #machigai .profile .prof-spec table td:last-child {
  border-right: none;
}
#machigai .profile .prof-spec table th {
  background: #fcede4;
  text-align: justify;
  text-align: center;
  text-align-last: justify;
  text-justify: inter-ideograph;
}
#machigai .profile .prof-spec table th {
  width: 30%;
}
#machigai .profile .prof-spec table td {
  width: 70%;
}
#machigai .profile .prof-spec table td b {
  font-weight: bold;
}
#machigai .profile .prof-spec table td strong {
  font-size: 120%;
}
#machigai .profile .prof-spec table td ul {
  padding-left: 1em;
}
#machigai .profile .prof-spec table td ul li {
  list-style: outside disc;
}
#machigai .profile .prof-spec table tr:first-child th, #machigai .profile .prof-spec table tr:first-child td {
  border-top: none;
}
#machigai .profile .prof-spec table tr:last-child th, #machigai .profile .prof-spec table tr:last-child td {
  border-bottom: none;
}
#machigai .profile .prof-spec .prof-copy {
  margin-top: 10px;
}
#machigai .profile .prof-spec .prof-copy img {
  width: 50%;
  height: auto;
  float: right;
}

@media screen and (max-width: 767px) {
  #machigai .profile {
    padding-bottom: 10%;
  }
  #machigai .profile::before {
    height: 15px;
    background: url(../images/prof-bg-wave.svg) center bottom repeat-x;
    background-size: auto 15px;
    top: -15px;
  }
  #machigai .profile .prof-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 10% 0;
    flex-direction: column;
    justify-content: center;
  }
  #machigai .profile .prof-wrap .prof-name {
    width: 100%;
    margin: 0 auto 10%;
  }
  #machigai .profile .prof-wrap .prof-spec {
    width: 100%;
    margin: 0 auto;
  }
  #machigai .profile .prof-name h4 {
    width: 50%;
    max-width: 434px;
    margin: 0 auto 5%;
  }
  #machigai .profile .prof-name .chara {
    width: 40%;
    margin: 0 auto;
  }
  #machigai .profile .prof-spec .lead {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 5%;
  }
  #machigai .profile .prof-spec .prof-table {
    border-radius: 12px;
  }
  #machigai .profile .prof-spec .creator {
    font-size: 1.2rem;
  }
  #machigai .profile .prof-spec table th {
    width: 30%;
  }
  #machigai .profile .prof-spec table td {
    width: 70%;
  }
  #machigai .profile .prof-spec table th, #machigai .profile .prof-spec table td {
    padding: 0.75em 1em;
    font-size: 90%;
    line-height: 1.4;
  }
  #machigai .profile .prof-spec table th {
    letter-spacing: 0.1em;
    text-align: center;
    text-align-last: center;
    text-justify: center;
    line-height: 1.4;
  }
}
#machigai .attention {
  text-align: right;
  color: #666;
}

#machigai .snsList {
  max-width: 1240px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-close {
  position: absolute;
  left: auto;
  right: -25px;
  top: -25px;
  bottom: auto;
  margin: auto;
  color: #000;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: white !important;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:before,
.modaal-close:after {
  background: #000 !important;
}

@media screen and (min-width: 768px) {
  button.modaal-close:hover {
    opacity: 1;
    transform: scale(1.2);
  }

  .modaal-close:hover:before,
.modaal-close:hover:after {
    background: #ccc !important;
  }
}
@media screen and (max-width: 767px) {
  .modaal-close {
    top: -15px;
    transform: scale(0.75);
  }
}

/*# sourceMappingURL=style-machigai.css.map */
