@charset "UTF-8";
:root {
  --main-color: #FF008C;
  --sub-color: #272361;
  --hover-color: #736CF7;
  --accent-color: #ffee00;
  --gray-color: #eee;
}

html * {
  margin: 0;
  padding: 0;
  outline: none;
  list-style-type: none;
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Mplus 1p", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: normal;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--gray-color);
  color: var(--sub-color);
}
body img {
  display: block;
}

@media screen and (min-width: 800px) {
  .body {
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0px 0px 5px 3px #c4c4c4;
    background-color: var(--sub-color);
    overflow-x: hidden;
  }
}
@media screen and (max-width: 1400px) {
  body {
    background-color: var(--sub-color);
  }
  body .body {
    box-shadow: none;
  }
}
/* ヘッダー部 */
header {
  position: relative;
}
header img {
  width: 100%;
}
header h1 {
  position: absolute;
  top: 45%;
  right: -1px;
  padding-right: 15px;
  padding-left: 40px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--sub-color);
  color: #fff;
  line-height: 1.5;
  font-size: x-large;
}

/* メニュー部 */
nav {
  background-color: var(--main-color);
  width: 100%;
  border-top: var(--sub-color) 3px solid;
}
nav .menu {
  display: flex;
  justify-content: space-around;
}
nav .menu li {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 200px;
  height: 75px;
}
nav .menu li a {
  display: block;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
nav .menu li.news a {
  background-image: url(../images/mn_news.png);
}
nav .menu li.news a:hover, nav .menu li.news a.current {
  background-image: url(../images/mn_news_h.png);
}
nav .menu li.profiel a {
  background-image: url(../images/mn_profiel.png);
}
nav .menu li.profiel a:hover, nav .menu li.profiel a.current {
  background-image: url(../images/mn_profiel_h.png);
}
nav .menu li.gallery a {
  background-image: url(../images/mn_gallery.png);
}
nav .menu li.gallery a:hover, nav .menu li.gallery a.current {
  background-image: url(../images/mn_gallery_h.png);
}

/* メイン部　*/
main {
  background-color: #fff;
}
main .wrapper {
  position: relative;
}
main .wrapper .news {
  position: absolute;
  top: 35px;
  left: 55px;
}
main .wrapper .news ul {
  background-color: var(--sub-color);
}
main .wrapper .news ul li {
  text-align: center;
  border-bottom: #fff solid 1px;
  padding: 15px;
}
main .wrapper .news ul li:last-child {
  border: none;
}
main .wrapper .news ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
main .wrapper .news ul li a::after {
  content: " >";
}
main .wrapper .news ul li a:hover {
  color: var(--accent-color);
}
main .wrapper .news .readmore {
  text-align: right;
  background-color: var(--sub-color);
  opacity: 0.8;
  padding-right: 5px;
}
main .wrapper .news .readmore a {
  color: #fff;
  text-decoration: none;
}
main .wrapper .news .readmore a:hover {
  color: var(--accent-color);
}
main .pc, main .sp {
  width: 100%;
}
main .sp {
  display: none;
}

/* フッター */
footer {
  background-color: var(--sub-color);
  width: 100%;
  color: #fff;
}
footer ul {
  display: flex;
}
footer ul li {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 162px;
  height: 60px;
}
footer ul li a {
  display: block;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
footer ul li.contact a {
  background-image: url(../images/ft_contact.png);
}
footer ul li.contact a:hover {
  background-image: url(../images/ft_contact_h.png);
}
footer ul li.blog a {
  background-image: url(../images/ft_blog.png);
}
footer ul li.blog a:hover {
  background-image: url(../images/ft_blog_h.png);
}
footer ul li.instagram a {
  background-image: url(../images/ft_insta.png);
}
footer ul li.instagram a:hover {
  background-image: url(../images/ft_insta_h.png);
}
footer ul li.home a {
  background-image: url(../images/ft_home.png);
}
footer ul li.home a:hover {
  background-image: url(../images/ft_home_h.png);
}
footer .copy {
  padding: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: end;
}

@media screen and (max-width: 700px) {
  nav .menu li {
    height: 55px;
  }
  nav .menu li a {
    background-position-y: -2px;
  }
  footer ul li {
    height: 55px;
  }
}
@media screen and (max-width: 800px) {
  header h1 {
    font-size: large;
    top: 38%;
  }
  nav ul li {
    width: 33%;
  }
  main .sp {
    display: block;
  }
  main .pc {
    display: none;
  }
  main .wrapper .news {
    top: 0px;
    left: 0px;
    width: 100%;
  }
  main .wrapper .news br {
    display: none;
  }
  main .wrapper .news ul li {
    border: none;
  }
  main .wrapper .news ul li:not(:first-child) {
    display: none;
  }
  footer ul li {
    width: 25%;
  }
}/*# sourceMappingURL=style.css.map */