@charset "UTF-8";

main{
    margin: 0px 1em;
}

/* フォトギャラリーページ */

* img{
    max-width: 100%;
}

.photo_box{
    margin: 50px 20px;
    
}
.photo_box ul{
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}
.photo_box ul li{
    margin-bottom: 3em;
    max-width: 31%;
    display: flex;
    flex-flow: column;
}

.photo_box ul li:not(:nth-of-type(3n)) {
    margin-right: calc((100% - 31% * 3 ) / 2);
}

.photo_box ul li > a {
    margin-bottom: 0.5rem;
}

.photo_box ul li img{
    border: 5px solid #fff;
  border-bottom: 5px solid #fff;
  -webkit-box-shadow: 1px 2px 2px 1px #999;
     -moz-box-shadow: 1px 2px 2px 1px #999;
          box-shadow: 1px 2px 2px 1px #999;
}
.photo_box ul li p{
    margin: 0;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .photo_box ul li p{
        display: none;
    }

    .photo_box ul li {
        max-width: 100%;
    }

    .photo_box ul li:not(:nth-of-type(3n)) {
        margin-right: 0;
    }
}

.photo_box ul:nth-of-type(n + 2) > li > p {
    text-align: left;
    margin-left: 0.5em;
    margin-top: auto;
}

.section_title {
    padding: 1.2em 0 1.2em 0em;
    margin: 0px;
    font-weight: bold;
}

.section_title > p {
    margin: 0px;
    color: #1a0089;
    font-size: 2.4em;
    text-shadow: 2px 2px 10px #fff, -2px 2px 10px #fff, 2px -2px 10px #fff, -2px -2px 10px #fff;
}

.section_title > hr {
    opacity: .5;
}

.photo_box h1 {
    font-size: 1.6em;
    padding-left: 0.5em;
    margin: 2em auto;
    border-left: 1em solid #1a0089;
    border-bottom: 1px dashed #1a0089;
}