@charset "UTF-8";
/* CSS Document */

@media screen and ( max-width:1000px ) {
	header {
		display: none;
	}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.p-header {
  display: block;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}

.p-header__inner {
  padding: 0 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.p-header__title {
  z-index: 997;
	width: 180px;
	padding-top: 10px;
}

.p-header__title a {
  text-decoration: none;
  color: #ff10e3;
}

.p-header__hamburger {
  width: 30px;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background-color: #ff10e3;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}

.p-header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255,255,255,0.89);
  transition: ease .4s;
  z-index: 999;
}

.p-header__nav-items {
  padding-top: 90px;
	padding-right: 25px;
}

.p-header__nav-item {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-header__nav-item a {
  color: #ff10e3;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.p-header__nav-item:last-child a {
  margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -17px;
  transform: rotate(-45deg);
}

.p-header__nav-box-mask.active {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998;
  transition: ease .4s;
}

.p-header__nav {
   transform: translateX(100%);
}

.p-header__nav.active {
  transform: translateX(0);
}
	

/*メインビジュアル*/
.main-img {
	padding-top: 130px;
	padding-bottom: 50px;
}

.top-img {
	width: auto;
	margin: 0 20px;
}

/*トップテキスト*/
.top-txt {
	width: auto;
	margin: 60px 20px 0 20px;
	color: #0029aa;
	line-height: 1.8em;
	font-size: 15px;
}

/*コンテンツ*/
.con-01 {
	width: 100%;
	background: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
}
.con-02 {
	width: 100%;
	background: #e0f3fc;
	padding-top: 60px;
	padding-bottom: 60px;
}
.con-01-in {
	width: auto;
	margin: 0 20px;
}

}


@media screen and ( max-width:600px ) {

/*works*/
.con-works {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.con-works-01 {
	width: 350px;
	margin-bottom: 35px;
}
.con-works-01 img {
	width: 350px;
	height: 200px;
	object-fit: cover;
}

}






