@charset "utf-8";
/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1200px) {

.container {
  background-color: #ffffff;
  width: 100%;
}

.header {
  background-color: #ffffff;
  width: 100%;
  display: flex;
}


.header1 {
  background-color: #ffffff;
  width: 20%;
  margin-right: 40%;
}

.header1 img{
  width: 100%;
}

.header2 {
  background-color: #ffffff;
  width: 40%;
}

.header2 ul{
  display: flex;
  justify-content: space-around;
  padding-top:70px ;
}

.header2 li{
  list-style: none;
  /* padding-left: 15px; */
}

.header2 a{
text-decoration: none;
color: black;
}

.header2 img{
  width:30px ;
}

.hum{
  display: none;
}

.top {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  background-image: url(../img/Portfolioのコピー.jpg);
  background-size: cover;
}

.top h1{
color: #8a1717;
text-align: center;
padding-top: 50vh;
}

.title {
  background-color: #ffffff;
  text-align: center;
  margin: 48px 0;
  padding: 10px 0;

  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.18em;

  border-radius: 18px;
}



.title h2{
  font-size: larger;
}

.main {
  background-color: #ffffff;
  width: 100%;
  display: flex;

}

.main1 {
  background-color: #ffffff;
  width: 50%;
  text-align: center;
}
.main1 img{
  width: 350px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
}

.main2 {
  background-color: #ffffff;
  width: 50%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.main2 h3{
  font-size: 35px;
  padding-bottom: 10px;
}


.main2 h4{
  font-size: 25px;
}
.main2 p{
  font-size: 18px;
  margin-top: 30px;
  line-height: 0.6;
}

.service {
  background-color: #ffffff;
  width: 100%;
}

.service li{
  text-align: center;
}

.service ul{
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service img{
  width: 40%;
}

.service li img {
  border-radius: 10px;
}










/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:5px;/*ドットボタンのサイズ*/
    height:5px;/*ドットボタンのサイズ*/
    display: inline;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#ffffff;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

ul{
	margin:0;
	padding: 0;
	list-style: none;
}








/* ボタンのcss */

.btn {
	font-size: 14px;
	border: 1px solid #666;
	text-align: center;
	max-width: 200px;
	margin: 20px auto;
	font-family: 'Noto Serif JP', serif;
}
.btn a {
	color: #666;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}
.btn2 {
	background: #8f8c8c;
}
.btn2 a {
	color: white;
}

/* ボタンのcss */

.footer {
  background-color: #ffffff;
  display: flex;
}

.footer1 {
  background-color: #ffffff;
  text-align: center;
}

.footer1 img {
  width: 200px; 
  height: auto;
}


.footer2 {
  background-color: #ffffff;
  position: relative;
  top: -30px;
  
}

.footer2 img {
  width: 18px;
  height: auto;
}

.footer2 ul {
  display: flex;
  justify-content: center; 
  gap: 20px; 
  list-style: none;    
  padding-top: 60px;
}

.footer2 ul li a {
  text-decoration: none; 
  color: #333;           
  font-size: 14px;
}

.footer3 {
  background-color: #ffffff;
  text-align: center;
}
}







































































/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1199px) {
  .container {
  background-color: #a94747;
  width: 100%;
}

.header {
  background-color: #ffdddd;
  width: 100%;
  display: flex;
}


.header1 {
  background-color: #234b4e;
  width: 10%;
  margin-right: 50%;
}

.header1 img{
  width: 100%;
}

.header2 {
  background-color: #d6f5d6;
  width: 40%;
}

.header2 ul{
  display: flex;
  justify-content: space-around;
  padding-top:70px ;
}

.header2 li{
  list-style: none;
  /* padding-left: 15px; */
}

.header2 a{
text-decoration: none;
color: black;
}

.header2 img{
  width:30px ;
}

.hum{
  display: none;
}


.top {
  width: 100%;
  height: 100vh;
  background-color: #dbe8ff;
  background-image: url(../img/art.jpg);
  background-size: cover;
}

.top h1{
color: #8a1717;
text-align: center;
padding-top: 50vh;
}

.title {
  background-color: #fff5cc;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.title h2{
  font-size: larger;
}

.main {
  background-color: #df5a5a;
  width: 100%;
  display: flex;

}

.main1 {
  background-color: #cdefff;
  width: 50%;
  text-align: center;
}
.main1 img{
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
}

.main2 {
  background-color: #5c41bf;
  width: 50%;
}
.main2 h3{
  font-size: 35px;
  padding-bottom: 10px;
}
.main2 h4{
  font-size: 25px;
}
.main2 p{
  font-size: 18px;
}

.service {
  background-color: #d9ffd9;
  width: 100%;
}

.service li{
  text-align: center;
}

.service ul{
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service img{
  width: 40%;
}

.service li img {
  border-radius: 10px;
}










/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

ul{
	margin:0;
	padding: 0;
	list-style: none;
}













.footer {
  background-color: #35ab91;
  display: flex;
}

.footer1 {
  background-color: #ffffff;
  text-align: center;
}

.footer1 img {
  width: 150px; 
  height: auto;
}


.footer2 {
  background-color: #b3168b;
  
}

.footer2 img {
  width: 18px;
  height: auto;
}

.footer2 ul {
  display: flex;
  justify-content: center; 
  gap: 20px; 
  list-style: none;    
  padding-top: 60px;
}

.footer2 ul li a {
  text-decoration: none; 
  color: #333;           
  font-size: 14px;
}

.footer3 {
  background-color: #9a9a9a;
}
}


























































































/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {
  .container {
  background-color: #a94747;
  width: 100%;
}

.header {
  background-color: #ffdddd;
  width: 100%;
  display: flex;
}


.header1 {
  background-color: #234b4e;
  width: 10%;
  margin-right: 50%;
}

.header1 img{
  width: 100%;
}

.header2 {
  background-color: #d6f5d6;
  width: 40%;
  display: none;
}

.header2 ul{
  display: flex;
  justify-content: space-around;
  padding-top:70px ;
}

.header2 li{
  list-style: none;
  /* padding-left: 15px; */
}

.header2 a{
text-decoration: none;
color: black;
}

.header2 img{
  width:30px ;
}








/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/* ナビ終わり */















.top {
  width: 100%;
  height: 100vh;
  background-color: #dbe8ff;
  background-image: url(../img/art.jpg);
  background-size: cover;
}

.top h1{
color: #8a1717;
text-align: center;
padding-top: 50vh;
}

.title {
  background-color: #fff5cc;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.title h2{
  font-size: larger;
}

.main {
  background-color: #df5a5a;
  width: 100%;
  display: flex;

}

.main1 {
  background-color: #cdefff;
  width: 50%;
  text-align: center;
}
.main1 img{
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
}

.main2 {
  background-color: #5c41bf;
  width: 50%;
}
.main2 h3{
  font-size: 35px;
  padding-bottom: 10px;
}
.main2 h4{
  font-size: 25px;
}
.main2 p{
  font-size: 18px;
}

.service {
  background-color: #d9ffd9;
  width: 100%;
}

.service li{
  text-align: center;
}

.service ul{
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service img{
  width: 40%;
}

.service li img {
  border-radius: 10px;
}










/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

ul{
	margin:0;
	padding: 0;
	list-style: none;
}













.footer {
  background-color: #35ab91;
  display: flex;
}

.footer1 {
  background-color: #ffffff;
  text-align: center;
}

.footer1 img {
  width: 150px; 
  height: auto;
}


.footer2 {
  background-color: #b3168b;
  
}

.footer2 img {
  width: 18px;
  height: auto;
}

.footer2 ul {
  display: flex;
  justify-content: center; 
  gap: 20px; 
  list-style: none;    
  padding-top: 60px;
}

.footer2 ul li a {
  text-decoration: none; 
  color: #333;           
  font-size: 14px;
}

.footer3 {
  background-color: #9a9a9a;
}

}