@charset "utf-8";
/*googleFonts*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@400;500&family=Shippori+Mincho:wght@400;700&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');
/* CSS Document */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
* {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  font-family: 'Shippori Mincho', serif;
  color: black;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  transition: background-color 100ms, border-color 100ms, color 100ms, opacity 100ms
}
ul, li {
  list-style: none;
  margin: 0;
}
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*共通*/
#topBtn {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 0px 0px 0px 0px;
  border-radius: 4px;
  width: 45px; /*imgの大きさ*/
  height: auto;
}
#topBtn:hover {
  /*		background-color: #F5FBFE;
*/ opacity: 0.8
}
.ContfadeIn {
  transform: translate3d(0, -30px, 0); /*移動距離*/
  transition: 1s;
  opacity: 0;
}
.ContfadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/*共通/end*/
header {
  min-width: 100%;
  margin: 0 auto 80px;
  padding: 2em 0;
  background-image: url(../img/head-bk.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}/*headerをフェードイン*/
.topName h1 {
  font-size: 1.2em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
  margin-bottom: 2em;
  padding: 0;
}
.topName h1 span {
  font-size: .7em;
  font-weight: normal;
  display: block;
  margin-top: .5em;
}
.slider {}
.slider div {
  width: 95%;
  height: 300px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
	position: relative;
}
.slider div span{
	color: white;
	font-size: .9em;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	padding: .5em .5em .6em 1.5em;
	background-color: hsla(48,24%,57%,0.70);
	border-top-left-radius: 10px;
	position: absolute;
	bottom: 3%;
	right: 3%;
	background-image: url(../img/slider-come.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}

.slide01 {
	background-image: url(../slick/img/img01.jpg);
	background-size: cover;
}
.slide02 {
  background-image: url(../slick/img/img02.jpg);
	background-size: cover;
}
.slide03 {
	background-image: url(../slick/img/img03.jpg);
	background-size: cover;
}
.slide04 {
	background-image: url(../slick/img/img04.jpg);
	background-size: cover;
}
.slide05 {
	background-image: url(../slick/img/img05.jpg);
	background-size: cover;
}
.slide06 {
	background-image: url(../slick/img/img06.jpg);
	background-size: cover;
}
.slide07 {
	background-image: url(../slick/img/img07.jpg);
	background-size: cover;
}
.slider img {
  width: 100%;
  height: auto;
}
section h2 {
  font-size: 1.6em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
}
section h3 {
  font-size: 1.25em;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}
.introCont {
  width: 90%;
  margin: 0 auto 100px;
}
.intro{
	margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;	
}
.introBox {
  width: 100%;
  padding: 1em;
  border: solid lightgray thin;
}
.intro-img {
  margin: 0 auto 15px;
  padding: 10px;
}
.intro-img img {
  width: 100%;
  height: auto;
}
.intro p {
  margin: 0 0;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.workCnt {
  width: 90%;
  margin: 0 auto 100px;
}
.workCnt ul {
  width: 100%;
  margin: 50px auto 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.workCnt li {
  width: 47%;
  text-align: center;
  border: solid #EFEFEF thin;
}
.workCnt li img {
  width: 100%;
  height: auto;
  padding: 3px;
}
.zoomIn img {
  transform: scale(.9);
  transition: .3s;
}
.zoomIn a {
  cursor: pointer;
}
.zoomIn a:hover img {
  transform: scale(1); /*拡大値*/
}
.workCnt div {
  width: 100%;
  height: 2.5em;
  margin-top: .25em;
  padding: .2em;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workCnt div span {
  font-size: .8em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.3;
}
.workCnt .come{
	font-size: .65rem;
	line-height: 1.2;
}
.workCnt .come a{
	border-bottom: 1px solid hsla(181,50%,79%,1.00);
}
footer {
  min-width: 100%;
  margin: 0 auto;
  padding: 2em 1em;
  background-image: url("../img/footer-bk.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
footer h2 {
  font-size: 1.6em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
  margin-bottom: 30px;
}
footer p {
  margin-bottom: 30px;
  line-height: 1.4;
}
footer div {
  line-height: 2;
  text-align: center;
}
footer .name1 {
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
}
footer .nameS {
  font-size: .8em;
}
.mail {
  text-decoration: underline;
  text-decoration-color: cornflowerblue;
}
.mail2 {}
.mail:hover, .mail2:hover {
  color: cornflowerblue;
  transition: .5s;
  text-decoration-color: whitesmoke;
  cursor: pointer;
}
/*Add*/
.red {
  color: red;
}
.pink {
  color: #fc8786;
}
.txtG {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.txtB {
  font-weight: 700;
}

/*タブレット*/
@media screen and (min-width:520px) {
  .slider div {
    width: 95%;
    height: 350px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
.slider div span{
	color: white;
	font-size: 1em;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	padding: .5em .5em .6em 1.5em;
	background-color: hsla(48,24%,57%,0.70);
	border-top-left-radius: 20px;
	position: absolute;
	bottom: 3%;
	right: 3%;
	background-image: url(../img/slider-come.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}
section h2 {
  font-size: 1.8em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
}
section h3 {
  font-size: 1.25em;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}
.introCont {
  width: 92%;
  margin: 0 auto 100px;
}
.intro{
	margin: 70px auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;	
}
.workCnt {
  width: 92%;
  margin: 0 auto 100px;
}
.workCnt ul {
  width: 100%;
  margin: 70px auto 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

footer {
  min-width: 100%;
  margin: 0 auto;
  padding: 3em 0;
  background-image: url("../img/footer-bk.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
footer h2 {
  font-size: 1.8em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
  margin-bottom: 80px;
}
footer p {
	margin: 0 auto 60px;
  line-height: 1.4;
	display: table;
}
footer div {
	line-height: 2;
  text-align: center;
}
	
}
/*PC*/
@media screen and (min-width:960px) {
  header {
    min-width: 100%;
    margin: 0 auto 100px;
    padding: 2em 0;
    background-image: url(../img/head-bk.jpg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
	
  .slider div {
    width: 95%;
    height: 450px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .topName {
    width: 25%;
    padding: 0 2em 0 2em;
    position: relative;
  }
  .topName h1 {
    font-size: 1.4em;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .topName h1 span {
    font-size: .5em;
    display: block;
    margin-top: .5em;
  }
  .slider {
    width: 75%;
    padding: 0 2em 0 2em;
  }
  .slider div {
    width: 100%;
    height: 750px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
section h2 {
  font-size: 2em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
}
.introCont {
  width: 90%;
	max-width: 960px;
  margin: 0 auto 100px;
}
.workCnt {
  width: 90%;
max-width: 960px;
  margin: 0 auto 100px;
}
footer {
  min-width: 100%;
  margin: 0 auto;
  padding: 3em 0 2em;
  background-image: url("../img/footer-bk.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
footer h2 {
  font-size: 1.8em;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 500;
  margin-bottom: 80px;
}
footer p {
	margin: 0 auto 60px;
  line-height: 1.4;
	display: table;
}
}