@charset "utf-8";
/*  style　[  top ]
=================================================================== */

	


/*----------------------------------------------
   main-img
---------------------------------------------*/
.bg-gray {
	background-color: #efefef;
}
.main-img-box {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
}
.main-image {
	border-radius: 30px;
}
.main-catch {
	position: absolute;
	left: 50px;
	top: 200px;
	/*max-width: 450px;*/
	width: 45%;
}
.main-bottom {
	position: absolute;
	right:0;
	bottom: -40px;
	/*max-width: 600px;*/
	width: 48%;
	z-index: 10;
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.main-catch {
		left: 20px;
		top: 30%;
	}
	
	.main-bottom {
		width: 65%;
	}	
}


/*----------------------------------------------
   section -コンセプト-
---------------------------------------------*/
#concept {
	position: relative;
}
.concept-box {
	display: flex;
	justify-content: flex-start;
	flex-direction: row-reverse;
	margin: 200px auto 0 auto;
	padding-bottom: 200px;
}


.concept-box-r {
	width: 70%;
	margin-left: 5%;
}
.concept-box h2 {
	font-size: 3em;
}
.concept-box h2 span {
	display: block;
	border-top: #000 1px solid;
	font-size: 0.5em;
	padding: 10px;
	margin-top: 10px;
}
.motto {
	padding: 20px 10px;
}

.concept-box-l {
	width: 20%;
}
.concept-box-l img {
	width: 60%;
}

.paint {
	animation: paint 1.5s ease-in-out infinite alternate;
	transition: 1.5s ease-in-out;
  }
   
  @keyframes paint {
	0% {
	  transform:translate(0, 0) rotate(0deg);
	}
	100% {
		transform:translate(0, 20px) rotate(7deg);
	}
  }


.custom-shape-divider-bottom-1717381153 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1717381153 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 130px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1717381153 .shape-fill {
    fill: #FFFFFF;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1717381153 svg {
        width: calc(100% + 1.3px);
        height: 95px;
    }
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.concept-box {
		margin: 100px auto 0 auto;
		padding-bottom: 130px;
	}
	.concept-box-r {
		width: 70%;
		margin-left: 5%;
	}
	.concept-box-l {
		width: 25%;
	}
	.concept-box-l img {
		width: 80%;
	}	
}



/*----------------------------------------------
   section -work-
---------------------------------------------*/
#work {
	padding: 150px 0;
	position: relative;
}


.work-box01 {
	margin: 150px auto;
	justify-content: space-around;
	flex-wrap: wrap;
}
.work-box02 {
	margin: 150px auto;
	justify-content: space-around;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

.images_item {
  width: 45%;
}
.text_item {
	width: 40%;
	position: relative;
  }

.text_item h3 {
	border-bottom: #000 1px solid;
	margin-bottom: 1em;
	padding-bottom: 5px;
}
.text_item h4 {
	font-size: 1em;
	margin: 1em 0;
}

.work-link {
	list-style-type: none;
}
.work-link li {
	display: inline-block;
}
.work-link li a {
	display: block;
	background: #7dc05a;
	color: #fff;
	padding: 5px 10px;
	margin: 0 10px;
	border-radius: 5px;
}
.work-link li a:hover {
	background: #9d5ac0;
	transition: 0.5s;
}

.bg-font {
	position: absolute;
	top: -100px;
	right: 0;
	width: 150px;
	z-index: -1;
}
.bg-font02 {
	position: absolute;
	top: -70px;
	right: 0;
	width: 150px;
	z-index: -1;
}


.bg-img01 {
	position: absolute;
	top: -200px;
	right: 10px;
	width: 20%;
}

.wrench {
	animation: wrench 0.5s ease-in-out infinite alternate;
	transition: 1.5s ease-in-out;
  }
   
  @keyframes wrench {
	0% {
	  transform:translate(0, -7px) rotate(0deg);
	}
	50% {
	  transform:translate(0, 0) rotate(7deg);
	}
	100% {
		transform:translate(0, 0) rotate(7deg);
	  }
  }


  /* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	#work {
		padding: 30px 0 100px 0;
	}
	
	.work-box01 {
		margin: 50px auto;
	}
	.work-box02 {
		margin: 50px auto;
	}
	
	.images_item {
		width: 90%;
		margin-bottom: 100px;
	  }
	  .text_item {
		  width: 90%;
		  position: relative;
	}
	
	
	
	.bg-img01 {
		position: absolute;
		top: -100px;
		right: 7px;
		width: 30%;
	}
}


/*ワンポイント*/
.onepoint-box {
	padding:2em;/*内側余白*/
	position: relative;
	border: 8px solid #eee;/* 線の太さ・種類・色 */
	z-index: 0;
    display: table;
    margin: 10px auto;
}
.onepoint-box:before {
	background-color:#cca497;/* ワインポイントの色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	left: -8px;
	width: 8px;
	height: 8px;
	z-index: 1;
}
.btn_contact {
    display: table;
    margin: 15px auto 0 auto;
    background: #9d5ac0;
	border-radius: 50px;
    padding: 5px 15px;
	color: #fff!important;
}
.btn_contact:hover {
    background: #7dc05a;
    transition: 0.5s;
}


/*----------------------------------------------
   section -recruit-
---------------------------------------------*/
#recruit {
	padding: 0 0 150px 0;
	background: #efefef;
	position: relative;
}
.recruit-img-box {
	background: url(../images/recruit-main.jpg) no-repeat center center;
	background-size: cover;
	padding: 80px 0 100px 0;
	position: relative;
}
.recruit-main-text {
	background-color: rgb(255, 255, 255,0.8);
	width: 80%;
	margin: 300px auto 0 auto;
}

.recruit-main-text img {
	margin-top: -25px;
	width: 200px;
}
.join {
	animation: join 2s ease-out infinite;
  }
@keyframes join {
	0%, 40%, 60%, 80% {
		transform: scale(1.0);
	  }
	  50%, 70% {
		transform: scale(0.95);
	  }
  }


.recruit-main-text p {
	padding: 15px;
	font-size: 1.5em;
	font-weight: 600;
	display: table;
	margin: 0 auto;
}
/* divider */
.custom-shape-divider-bottom-1717388309 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1717388309 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 130px;
}

.custom-shape-divider-bottom-1717388309 .shape-fill {
    fill: #EFEFEF;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1717388309 svg {
        width: calc(100% + 1.3px);
        height: 56px;
    }
}



h3.under_line {
	font-size: 2em;
	padding: 100px 0 5px 0;
	position: relative;
	text-align: center;
	margin-bottom: 100px;
}
 h3.under_line:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 30px);
	width: 60px;
	height: 5px;
	content: '';
	border-radius: 3px;
	background: #C06A5A;
  }
.recruit-box {
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.recruit-img {
	width: 40%;
}
.recruit-text {
	background: url(../images/bg-note.png) repeat-y left top;
	width: 50%;
	background-color: #fff;
	padding: 20px 30px 20px 50px;
	line-height: 1.7;
}
.recruit-text h4 {
	color: #9D5AC0;
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 1em;
}
.recruit-text h5 {
	font-size: 1em;
	font-weight: 600;
	margin: 1em 0 0.5em 0;
}
.recruit-link {
	list-style-type: none;
}
.recruit-link li {
	display: inline-block;
}
.recruit-link li a {
	display: block;
	background: #C06A5A;
	color: #fff;
	padding: 5px 10px;
	margin: 0 10px;
	border-radius: 5px;
}
.recruit-link li a:hover {
	background: #9d5ac0;
	transition: 0.5s;
}

.bg-img02 {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 20%;
	z-index: 1;
}

.drill {
	animation: drill 1s ease-in-out infinite alternate;
	transition: 1.5s ease-in-out;
  }
   
  @keyframes drill {
	0% {
	  transform:translate(0, 0) rotate(0deg);
	}
	50% {
	  transform:translate(-7px, 7px) rotate(0deg);
	}
	100% {
	  transform:translate(-7px, 7px) rotate(0deg);
	}
  }

  /* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	#recruit {
		padding: 0 0 50px 0;
	}
	.recruit-img-box {
		padding: 30px 0 100px 0;
	}
	.recruit-main-text img {
		width: 150px;
	}
	.recruit-main-text {
		width: 90%;
		margin: 80px auto 0 auto;
	}
	.recruit-main-text p {
		font-size: 1.1em;
	}
	
	.recruit-img {
		width: 90%;
		margin: 10px auto;
	}
	.recruit-text {
		width: 90%;
	}
	
	
	.bg-img02 {
		position: absolute;
		top: 20px;
		right: 10px;
		width: 30%;
		z-index: 1;
	}
}

/*----------------------------------------------
   section -news-
---------------------------------------------*/
#news {
	padding: 3em 0 ;
	background: #fff;
	margin-top: 150px;
}

.news-list {
	list-style: none;
	margin: -100px auto 1em auto;
	padding: 0 1em;
	background: #fff;
	width: 86%;
}
.news-list li {
	display: flex;
	margin: 0 auto;
	padding: 1em 2%;
	border-bottom: #eee 1px solid;
	flex-wrap: wrap;
}

.news-list li span {
	width: 20%;
}
.news-list li a {
	width: 75%;
}
/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	#news {
	margin-top: 100px;
}
	.news-list {
		margin: 0 auto 20px auto;
		width: 98%;
	}
	
	
	.news-list li span {
		width: 50%;
	}
	.news-list li a {
		width: 100%;
	}	
}

/* button */

.button-029 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #5AB0C0;
    border-radius: 5px;
    background-color: #fff;
    color: #5AB0C0!important;
    font-size: 1em;
}

.button-029:hover {
    background-color: transparent;
    color: #fff!important;
}

.button-029::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #5AB0C0!important;
    content: '';
    transition: width .3s ease;
}

.button-029:hover::before {
    width: 100%;
}

.button-029::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #5AB0C0;
    border-right: 2px solid #5AB0C0;
    content: '';
}

.button-029:hover::after {
    border-color: #fff;
}

.bg-img03 {
	position: absolute;
	top: -120px;
	left: 10px;
	width: 13%;
	z-index: 1;
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
	.bg-img03 {
		position: absolute;
		top: -100px;
		left: 10px;
		width: 20%;
		z-index: 1;
	}
}

.hammer {
	animation: hammer 1s ease-in-out infinite alternate;
	transition: 1.5s ease-in-out;
  }
   
  @keyframes hammer {
	0% {
		transform:translate(0, 0) rotate(7deg);
	}
	80% {
		transform:translate(-7px, -7px) rotate(-30deg);
	}
	100% {
		transform:translate(-7px, -7px) rotate(-30deg);
	}
  }






// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
}

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

/*----------------------------------------------
   section -member-
---------------------------------------------*/
#member {
  padding: 150px 0;
  background: #fff;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.member-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.member-card figure {
  margin: 0;
}
.member-card figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.member-card__body {
  padding: 24px;
}
.member-card__body h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.member-card__body p {
  line-height: 1.8;
}
.member-address {
  margin-top: 12px;
  font-size: 0.9em;
  color: #666;
}
.member-link {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 18px;
  background: #7dc05a;
  color: #fff!important;
  border-radius: 5px;
}
.member-link:hover {
  background: #9d5ac0;
  text-decoration: none;
  transition: 0.5s;
}

/*----------------------------------------------
   section -organization-
---------------------------------------------*/
#organization {
  padding: 150px 0;
  background: #fff;
}
.organization-box {
  width: min(900px, 90%);
  margin: -70px auto 0;
  background: #fff;
}
.organization-list {
  margin: 0;
  border-top: 1px solid #ddd;
}
.organization-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #ddd;
}
.organization-list dt,
.organization-list dd {
  margin: 0;
  padding: 20px 24px;
}
.organization-list dt {
  font-weight: 700;
  background: #f3f3f3;
}

/*----------------------------------------------
   section -contact-
---------------------------------------------*/
#contact {
  padding: 120px 0 80px;
  background: #efefef;
}
.contact-static {
  width: min(800px, 90%);
  margin: -70px auto 0;
  text-align: center;
}
.contact-static > p {
  margin-bottom: 30px;
  line-height: 1.8;
}
.contact-static__items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-static__item {
  min-width: 300px;
  padding: 18px 24px;
  background: #fff;
  border-top: 5px solid #5ab0c0;
  box-shadow: 0 3px 5px rgba(0,0,0,0.12);
}
.contact-static__item span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: .08em;
  color: #666;
}
.contact-static__item a,
.contact-static__item strong {
  font-size: 1.6em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #333;
}
.temporary-note {
  margin: 45px auto 0;
  text-align: center;
  font-size: 0.85em;
  color: #666;
}

@media screen and (max-width: 767px) {
  #member,
  #organization {
    padding: 80px 0;
  }
  .member-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
  }
  .member-card__body {
    padding: 20px;
  }
  .organization-box,
  .contact-static {
    margin-top: 0;
  }
  .organization-list > div {
    grid-template-columns: 1fr;
  }
  .organization-list dt {
    padding-bottom: 8px;
  }
  .organization-list dd {
    padding-top: 8px;
  }
  #contact {
    padding: 80px 0 50px;
  }
  .contact-static__items {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-static__item {
    min-width: 0;
    width: 100%;
  }
  .contact-static__item a,
  .contact-static__item strong {
    font-size: 1.4em;
  }
}
