/* index css */
body {
  background-color: #F7F7F7;
  font-family: a-otf-jun-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
}

p {
  font-family: 'メイリオ', 'Meiryo', sans-serif;
}

a {
  color: #901E34;
}

.mt15{margin-top: 15px;}

.contents {
  width: 100%;
  margin: 0 auto;
}

.contents_indent {
  margin: 0 3%;
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .contents {
    max-width: 960px;
  }
}


/* header footer */
.header_txt,.footer_txt {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}

.footer_txt {
  margin-top: 60px;
}

.header_txt a{
  font-size: 1.5em;
  color: #707070;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .header_txt a{
    font-size: 2.5em;
  }
}

/* mv */
.mv img {
  width: 100%;
}


/* name */
.name h1 {
  color: #901E34;
  font-size: 1.8em;
}

.name span {
  color: #707070;
  font-size: 1em;
}

@media screen and (min-width: 768px) {
  .name h1 {
    font-size: 2.5em;
  }

  .name span {
    font-size: 1.5em;
  }
}

/* gallery */

.flex_gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: space-around;
  justify-content: space-around;
  row-gap: 5px;
  max-width: 799px;
  margin: 0 auto;
}

.zoom_img {
  max-width: 32%;
}

.zoom_img img {
  max-width: 100%;
  height: auto;
}

.lum-lightbox-inner img {
  max-width: 100%;
  margin: 0 auto;
}

.lum-lightbox-image-wrapper {
  width: auto!important;
}

@media screen and (min-width: 768px) {
  .flex_gallery {
    justify-content: space-between;
    max-width: 100%;
  }
  
  .zoom_img {
    max-width: 16%;
  }

  .lum-lightbox-inner {
    display: flex!important;
    justify-content: center;
    align-items: center;
  }
  
  .lum-lightbox-image-wrapper {
    display: flex!important;
    justify-content: center;
    align-items: center;
    height: auto!important;
    max-height: 80%!important;
  }

  .lum-img {
    max-height: 80vh!important;
  }
}


/* about */
.about h2 {
  color: #901E34;
  font-size: 1.5em;
}

.flex_about {
  margin-top: 20px;
}

.profile img {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}

.about_name {
  font-weight: bold;
}

.history {
  margin-top: 30px;
}

.hist_block {
  border-left: #C36889 solid 1px;
  padding-left: 1em;
}

.hist_block:nth-child(n+2) {
  padding-top: 30px;
}

.history h3 {
  position: relative;
  font-size: 1.1em;
}

.history h3:before {
  position: absolute;
  content: url(/img/about_icon_01.svg);
  left: -23px;
}

@media screen and (min-width: 768px) {
  .about h2 {
    font-size: 2em;
  }

  .flex_about {
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }

  .profile {
    max-width: 45%;
  }
}

/* contact */
.contact h2 {
  color: #901E34;
  font-size: 1.5em;
}

@media screen and (min-width: 768px) {
  .contact h2 {
    font-size: 2em;
  }
}

