@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img {
  line-height: 0;
  font-size: 0;
  border: 0;
}

a img, fieldset, img {
  border: 0;
}

blockquote, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, ul, li, ol, p, pre, span, td, th {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, address {
  font-size: 100%;
}

ul, li, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

a:link, a:visited {
  color: #000;
  text-decoration: none;
}

a:hover, a:active {
  color: #333;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  opacity: 0.80;
}

hr {
  display: none;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#container {
  margin: 0 auto;
  text-align: center;
  line-height: 160%;
  min-width: 1000px;
  overflow-x: hidden;
  font-size: 18px;
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro',sans-serif;
}
@media screen and (max-width: 759px) {
  #container {
    min-width: 100%;
    font-size: 3.4vw;
  }
}

@media screen and (min-width: 760px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}
@media screen and (max-width: 759px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .fit {
    width: 100%;
    height: auto;
  }
}
.inner {
  width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 759px) {
  .inner {
    width: 100%;
    padding: 0 5vw;
  }
}

/*-------------------------------------------------
	++ COMMON 
-------------------------------------------------*/
#main {
  background-color: #e5191a;
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 759px) {
  #main {
    padding: 20vw 5vw;
  }
}
#main .title {
  position: relative;
  z-index: 1;
}

/*-------------------------------------------------
	++ HOME CONTENTS 
-------------------------------------------------*/
.section {
  padding: 100px 0;
  position: relative;
}
.section .secHead {
  margin-bottom: 55px;
}
.section .secHead h2 {
  font-size: 30px;
  font-weight: bold;
  color: #5c5c5c;
  position: relative;
  letter-spacing: .05em;
  padding-bottom: 25px;
}
.section .secHead h2:after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #e5191a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 759px) {
  .section {
    padding: 15vw 0;
  }
  .section .secHead {
    margin-bottom: 7.5vw;
  }
  .section .secHead h2 {
    font-size: 5vw;
    padding-bottom: 5vw;
  }
  .section .secHead h2:after {
    width: 15vw;
  }
}

#intro .text {
  line-height: 2;
}
#intro .photo {
  margin: 50px auto 0 auto;
  text-align: center;
  max-width: 700px;
}
#intro .photo .capName {
  display: block;
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
}

#gallery {
  background-color: #f7f5f5;
}
#gallery .galleryList ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#gallery .galleryList ul li {
  width: 330px;
}
#gallery .galleryList ul li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 759px) {
  #gallery .galleryList ul {
    gap: 5vw;
  }
  #gallery .galleryList ul li {
    width: calc(calc(100% - 5vw) / 2);
  }
}

/*-------------------------------------------------
	++ FOOTER
-------------------------------------------------*/
#jwaveFooter {
  background-color: #e5191a;
  color: #FFF;
  padding: 20px 0 78px 0;
}
#jwaveFooter .commonSet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
#jwaveFooter .commonSet .toHome {
  width: 50%;
  text-align: left;
}
#jwaveFooter .commonSet .footerLogo {
  width: 50%;
  text-align: right;
}
#jwaveFooter .commonSet .copyRight {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 759px) {
  /* SP */
  #jwaveFooter {
    padding: 6vw 0;
  }
  #jwaveFooter .commonSet .toHome {
    width: 70%;
  }
  #jwaveFooter .commonSet .toHome a {
    width: 25%;
    display: block;
  }
  #jwaveFooter .commonSet .footerLogo {
    width: 30%;
  }
  #jwaveFooter .commonSet .copyRight {
    width: 60%;
    margin: 0 auto;
    margin-top: 8vw;
  }
}
.remodal {
  padding: 0 !important;
}
.remodal .modalImg img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.remodal .remodal-close {
  left: auto;
  right: 0;
  top: -35px;
}
