@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

body {
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.4em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #006393;
  text-decoration: none;
}

a:hover {
  color: #00425A;
  text-decoration: underline;
  font-weight: bold;
}

h1 {
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  margin-bottom: 5px;
}

li {
  list-style: disc;
  list-style-position: inside;
  line-height: 1.4em;
  margin: 0 0 10px;
}

#layout {
  max-width: 1100px;
  padding: 0 10px;
  margin: 40px auto 20px;
}

.works_list {
  padding: 40px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -30px;
}

@media screen and (max-width: 750px) {
  .works_list {
    display: block;
  }
}

.works_list li {
  width: calc(50% - 15px);
  margin-bottom: 30px;
  list-style: none;
}

@media screen and (max-width: 750px) {
  .works_list li {
    width: 100%;
  }
}
.works_list li:nth-of-type(2n) {
  margin-left: 30px;
}

@media screen and (max-width: 750px) {
  .works_list li:nth-of-type(2n) {
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  .works_list li:not(:first-of-type) {
    margin-top: 20px;
  }
}

.works_list li a {
  color: #333;
}

.works_list li a:hover .img_box img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.works_list .img_box {
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  padding-top: 56.25%;
}

.works_list .img_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.text_bottom {
  margin-top: 60px;
}
.lowpage .copyright {
  padding: 120px 0 10px;
  text-align: center;
}
.lowpage header {
  margin-bottom: 60px;
}
.lowpage .header_inner {
  padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 750px) {
  .lowpage .header_inner {
    padding: 10px 10px;
  }
}
.lowpage .header_logo {
  display: block;
	width: 100px;
}
.lowpage header ul {
  display: flex;
  align-items: center;
}
.lowpage header li {
  list-style: none;
  margin-bottom: 0;
}
.lowpage header li:not(:first-of-type) {
  margin-left: 25px;
}
@media screen and (max-width: 750px) {
  .lowpage header li:not(:first-of-type) {
    margin-left: 10px;
  }
}
.lowpage header li a {
	display: block;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.sp_btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}
.sp_btn::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  transition-duration: 0.5s;
}
.sp_btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transition-duration: 0.5s;
}
.sp_btn.on::before {
  top: 50%;
  transform: rotate(45deg);
  background-color: #fff;
}
.sp_btn.on::after {
  top: 50%;
  transform: rotate(-45deg);
  background-color: #fff;
}

.sp_menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 50;
}
.sp_menu_inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
}
.sp_menu li:not(:first-of-type) {
  margin-top: 20px;
}
.sp_menu li a {
  color: #fff;
}
/*# sourceMappingURL=base.css.map */