body{
  padding: 0;
  margin: 0;
	font-family:sans-serif;
}

/* 以下は前回までの内容 */
header {
  display: flex;
  height: 100px;
  margin: 0;
  z-index: 9999;
}

.logo a img{
  width: 300px;
}
.pc-menu {
  width: 100%;
	
}
.pc-menu > ul {
  display: flex;
  list-style: none;
}
.pc-menu > ul > li {
  text-align: center;
  font-size: 16px;
  width: 25%;
  letter-spacing: 4px;
  font-weight: 600;
  margin-top: 0;
}
.pc-menu > ul > li > a {
  display: block;
  text-decoration: none;
  color: #D95E29;
  line-height: 60px;
}
.pc-menu > ul > li > a:hover {
  color: #D95E29;
}
.sp-menu__box {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background:#D95E29 ;
}
.sp-menu__box span,
.sp-menu__box span:before,
.sp-menu__box span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  position: absolute;
}
.sp-menu__box span:before {
  bottom: 8px;
}
.sp-menu__box span:after {
  top: 8px;
}
#sp-menu__check {
  display: none;
}
#sp-menu__check:checked ~ .sp-menu__box span {
  background: rgba(255, 255, 255, 0);
}
#sp-menu__check:checked ~ .sp-menu__box span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#sp-menu__check:checked ~ .sp-menu__box span::after {
  top: 0;
  transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .sp-menu__content {
  left: 0;
}
.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #f4f4f4;
  transition: all 0.5s;
}
.sp-menu__list {
  padding: 70px 10px 0;
}
.sp-menu__item {
  list-style: none;
}
.sp-menu__link {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color: #D95E29;
  text-decoration: none;
  padding: 20px 15px 0px ;
  text-align: center;
  letter-spacing: 6px;
  font-weight: 600;
}
.sp-menu__link span{
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 4px;
}

@media screen and (min-width: 831px){
h1{
  margin: 0;
}
.slider_3{
  position: relative;
  /* 表示するスライダーの高さを設定 */
	top:-100px;
  width: 100vw;
  height: 56vw;
  margin:0 auto 0;
  padding:0 auto;
  text-align: center;
  overflow: hidden;
  /* widthのはみ出し画面防止 */
  z-index: -9999;
}
.slider_3 ul{
  margin:0;
  padding:0;
  list-style:none;
}
.slider_3 ul  li img{
  /* スライドさせる画像の幅を設定 */
  width: 100%;
  height: 100%;
  margin:0 auto;
  padding:0 auto;
  background-position: center;
  background-size: cover;
}
.slider_3 ul li{
  position:absolute;
  top:0;
  left:0;
  animation-iteration-count:infinite;
  /* アニメーションの周期は21秒 */
  animation-duration:26s;
}
.slider_2{
	display: none;
}

/* -------------------------------------------------- */
/* アニメーション開始時間の設定 */

.slider_3 ul li:nth-child(1){
  animation-name:slider_3;
  /* 1秒前からスタート */
  animation-delay:-1s;
}
.slider_3 ul li:nth-child(2){
  animation-name:slider_3;
  /* 6秒後（7秒-1秒）からスタート */
  animation-delay:6s;
  opacity:0;
}
.slider_3 ul li:nth-child(3){
  animation-name:slider_3;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:13s;
  opacity:0;
}
.slider_3 ul li:nth-child(4){
  animation-name:slider_3;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:20s;
  opacity:0;
}
/* -------------------------------------------------- */
/* フェードイン・フェードアウトの設定 */

@keyframes slider_3{
　/* 非表示（不透明度0%）状態からフェードインを始める  */
  0%{
    opacity:0;
  }
  /* ここまでにフェードインを完了し、完全表示（不透明度100%）にする */
  4.76%{
    opacity:1;
  }
  /* ここまで完全表示（不透明度100%）の状態を維持したらフェードアウトを始める */
  33.33%{
    opacity:1;
  }
  /* ここまでにフェードアウトを完了し、非表示（不透明度0%）にする */
  42.85%{
    opacity:0;
  }
  /* 非表示（不透明度0%）状態を維持したまま終わる */
  100%{
    opacity:0;
  } 
}
/* アニメーション設定 */
.arrowWrap {
  position: absolute;
  left: 50vw;
  top: 90vh;
  height: 100px;
}

.arrowInner p {
  font-size: 10px;
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #333;
}
.arrow {
  width: 1px;
  height: 100px;
  margin: 20px auto 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 2px;
  height: 120px;
  margin: 35px auto 0;
  background-color: #333;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.web-photo{
	width: 60%;
}
.con-01{
	text-align: center;
}
.cont-name{
	text-align: right;
	margin:30px 80px;
}
.photo{
	width: 70vw;
}
.web-yoko{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.web-yoko-same{
  width: 44vw;
  margin: 2vw 2vw 0;
}
.web-yoko-same img{
  width: 100%;
}
.web-yoko-same a{
  display: block;
}
.name{
	height: 60px;
	margin: 0 10px 0 auto;
}
.name-jpn{
	padding:30px 0:
	font-size: 12px;
	letter-spacing: 5px;
	padding-right: 10px;
	font-weight: lighter;
	color:#d95e29;
}
.web-add {
	font-size: 12px;
	color: gray;
	text-decoration: none;
}
.con-02,.con-03{
	text-align: center;
}
.photo02{
	width: 30vw;
}
.photo03{
	width: 40vw;
}
.web-about-ti{
    background-color: #D95E29;
    padding-top: 30px;
    margin: 100px 0 0 0 ;
    text-align: center;
}
.web-about-title{
  text-align: center;
  width: 300px;
}
.web-about{
  padding: 30px 0; 
  background-color: #D95E29;
  text-align: center;
  display: flex;
  justify-content: center;
}

.web-con{
  width: 26vw;
  padding-left: 40px;
  text-align: center;

}
.web-con img{
  width: 100%;
}
.web-con-come{
  font-size: 20px;
  text-align: left;
  color: white;
  letter-spacing: 2px;
  font-weight: lighter;
}
.web-con-come2{
  font-size: 14px;
  color: white;
  text-align: left;
  line-height: 28px;
}
.btob{
	text-align: center;
	border: double 7px #333;
	margin: 100px 100px 10px 100px;
	padding-bottom: 30px;
  background-image: url(saradarogo.png);
}
.btob-title{
	font-size: 40px;
	margin: 0;
	padding-top: 60px;
}
.btob-subtitle{
	font-size: 14px;
	padding-bottom: 30px;
	font-weight: lighter;
	margin: 0;
}
.btob-con{
	padding: 0 30px;
	text-align: justify;
	line-height: 30px;
}
.aboutme{
	text-align: center;
	padding: 100px 56px;
}
.aboutme img {
	width: 16vw;
}
.aboutme-text{
	font-weight: lighter;
	font-size: 14px;
	padding: 0 40px;
	line-height: 30px;
	text-align: justify;
	margin-bottom: 60px;
}
.self-name{
	font-size: 16px;
	margin: 40px 0;
}
.self-text{
	text-align: justify;
	font-size: 12px;
	padding: 0 25vw;
	color: gray;
}
.contact{
	text-align: center;
	margin: 80px 0 0 0 ;
	background-color: #f6f6f6;
	padding: 80px 0;
}
.contact-title{
	font-size: 16px;
	color: #D95E29;
	letter-spacing: 2px;

}
.contact-subtitle{
	font-size: 24px;
	color: #333;
	letter-spacing: 1px;
	margin-bottom: 90px;
}
.contact-line{
	margin-bottom: 50px;
}
.contact-line a{
  display: inline-block;
  width: 22vw;
  padding: 20px 0;
  vertical-align: bottom;
	text-decoration: none;
  border:1px solid #333;
  text-align: center;
  color: #333;
  font-size: 12px;
  letter-spacing: 3px;
}
.contact-line a:active{
	background-color: #lightgray;
	color: #333;
}
.contact-line a:hover{
	background-color: #CFD3DE;
	color: #333;
}
.memo{
	text-align: center;
	font-size: 12px;
	margin: 0 46px;
	line-height: 30px;
}
.footer{
	background-color: #4B4645;
	text-align: center;
	padding-top: 60px;
}
.footer-rogo{
	margin: 30px 0 10px 0 ;
	width: 110px;
}
.footer-title{
	color: white;
	font-size: 14px;
	letter-spacing: 5px;
}
hr{
  margin: 30px 110px 0 110px;
}
.follow{
	color: white;
	font-size: 14px;
	margin-top: 60px;
}
.footer-insta{
	margin-top: 20px;
}
.copy{
	color: lightgray;
	margin-top: 70px;
	font-size: 12px;
	padding-bottom: 40px;
}
.gallery-title{
	text-align: center;
	margin: 140px 0 80px 0;
	font-size: 20px;
	color: #333;
	letter-spacing: 1px;
}
.gallery-photo{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 50px;
}
.gallery-photo img{
	margin: 30px 10px;
	width: 200px;
	border: 1px solid gray;
}
.to-top{
	text-align: center;
	background-image: url(totop.png);
	height: 10px;
	background-repeat: no-repeat;
	padding: 30px ;
	background-size: contain;
}
.to-top a{
	text-decoration: none;
	color: #333;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 30px;
}
}
@media screen and (min-width: 576px)and (max-width: 999px){
.slider_3{
  position: relative;
  /* 表示するスライダーの高さを設定 */
  width: 100vw;
  height: 50vw;
  top: -100px;
  margin:0 auto 0;
  padding:0 auto;
  text-align: center;
  overflow: hidden;
  /* widthのはみ出し画面防止 */
  z-index: -9999;
}
.slider_3 ul{
  margin:0;
  padding:0;
  list-style:none;
}
.slider_3 ul  li img{
  /* スライドさせる画像の幅を設定 */
  width: 100%;
  height: 100%;
  margin:0 auto;
  padding:0 auto;
  background-position: center;
  background-size: cover;
}
.slider_3 ul li{
  position:absolute;
  top:0;
  left:0;
  animation-iteration-count:infinite;
  /* アニメーションの周期は21秒 */
  animation-duration:26s;
}
.slider_2{
  display: none;
}

/* -------------------------------------------------- */
/* アニメーション開始時間の設定 */

.slider_3 ul li:nth-child(1){
  animation-name:slider_3;
  /* 1秒前からスタート */
  animation-delay:-1s;
}
.slider_3 ul li:nth-child(2){
  animation-name:slider_3;
  /* 6秒後（7秒-1秒）からスタート */
  animation-delay:6s;
  opacity:0;
}
.slider_3 ul li:nth-child(3){
  animation-name:slider_3;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:13s;
  opacity:0;
}
.slider_3 ul li:nth-child(4){
  animation-name:slider_3;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:20s;
  opacity:0;
}
/* -------------------------------------------------- */
/* フェードイン・フェードアウトの設定 */

@keyframes slider_3{
　/* 非表示（不透明度0%）状態からフェードインを始める  */
  0%{
    opacity:0;
  }
  /* ここまでにフェードインを完了し、完全表示（不透明度100%）にする */
  4.76%{
    opacity:1;
  }
  /* ここまで完全表示（不透明度100%）の状態を維持したらフェードアウトを始める */
  33.33%{
    opacity:1;
  }
  /* ここまでにフェードアウトを完了し、非表示（不透明度0%）にする */
  42.85%{
    opacity:0;
  }
  /* 非表示（不透明度0%）状態を維持したまま終わる */
  100%{
    opacity:0;
  } 
}

/* アニメーション設定 */
.arrowWrap {
  position: fixed;
  left: 20px;
  top: 40vh;
  height: 100px;
}

.arrowInner p {
	display:none;
}
.arrow {
  width: 1px;
  height: 100px;
  margin: 20pxF auto 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 2px;
  height: 120px;
  margin: 35px auto 0;
  background-color: #333;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.top{
  text-align: left;
  position: fixed;
  top: 0;
  z-index: 8888;
}
.top img{
  height: 60px;
  padding: 20PX;
}
.web-photo{
  width: 60%;
  padding-top: 30px;
}
.con-01{
  text-align: center;
}
.cont-name{
  text-align: right;
  margin-right: 80px;
}
.photo{
  width: 40vw;
}
.web-yoko{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.web-yoko-same{
  padding-right: 20px;  
}
.web-yoko-same a{
  display: block;
}
.name{
  height: 60px;
  margin: 0 10px 0 auto;
}
.name-jpn{
  font-size: 12px;
  letter-spacing: 5px;
  padding-right: 10px;
  font-weight: lighter;
	color:#d95e29;
	padding:30px 0:
}
.web-add {
  font-size: 12px;
  color: gray;
  text-decoration: none;
}f
.con-02,.con-03{
  text-align: center;
}
.photo02{
  width: 30vw;
}
.photo03{
  width: 40vw;
}
.web-about-ti{
    background-color: #D95E29;
    padding-top: 30px;
    margin: 100px 0 0 0 ;
    text-align: center;
}
.web-about-title{
  text-align: center;
  width: 300px;
}
.web-about{
  padding: 30px 0; 
  background-color: #D95E29;
  text-align: center;
  display: flex;
  justify-content: center;
}

.web-con{
  width: 26vw;
  padding-left: 40px;
  text-align: center;

}
.web-con img{
  width: 100%;
}
.web-con-come{
  font-size: 20px;
  text-align: left;
  color: white;
  letter-spacing: 2px;
  font-weight: lighter;
}
.web-con-come2{
  font-size: 14px;
  color: white;
  text-align: left;
  line-height: 28px;
}
.btob{
  text-align: center;
  border: double 7px #333;
  margin: 100px 100px 10px 100px;
  padding-bottom: 30px;
  background-image: url(saradarogo.png);
}
.btob-title{
  font-size: 40px;
  margin: 0;
  padding-top: 60px;
}
.btob-subtitle{
  font-size: 14px;
  padding-bottom: 30px;
  font-weight: lighter;
  margin: 0;
}
.btob-con{
  padding: 0 30px;
  text-align: justify;
  line-height: 30px;
}
.aboutme{
  text-align: center;
  padding: 100px 56px 0 56px;
}
.aboutme img {
  width: 16vw;
}
.aboutme-text{
  font-weight: lighter;
  font-size: 14px;
  padding: 0 40px;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 80px;
}
.self-name{
  font-size: 16px;
  margin: 40px 0;
}
.self-text{
  text-align: justify;
  font-size: 12px;
  padding: 0 25vw;
  color: gray;
}
.contact{
  text-align: center;
  margin: 80px 0 0 0 ;
  background-color: #f6f6f6;
  padding: 80px 0;
}
.contact-title{
  font-size: 12px;
  color: #D95E29;
  letter-spacing: 2px;

}
.contact-subtitle{
  font-size: 18px;
  color: #333;
  letter-spacing: 1px;
  margin-bottom: 90px;
}
.contact-line{
  margin-bottom: 50px;
}
.contact-line a{
  text-decoration: none;
  border:1px solid #333;
  padding:14px 50px;
  text-align: center;
  color: #333;
  font-size: 12px;
  letter-spacing: 3px;
}
.contact-line a:active{
  background-color: #lightgray;
  color: #333;
}
.contact-line a:hover{
  background-color: #CFD3DE;
  color: #333;
}
.memo{
  text-align: center;
  font-size: 12px;
  margin: 0 46px;
  line-height: 30px;
}
.footer{
  background-color: #4B4645;
  text-align: center;
  padding-top: 60px;
}
.footer-rogo{
  margin: 30px 0 10px 0 ;
  width: 110px;
}
.footer-title{
  color: white;
  font-size: 14px;
  letter-spacing: 5px;
}
hr{
  margin: 30px 110px 0 110px;
}
.follow{
  color: white;
  font-size: 14px;
  margin-top: 60px;
}
.footer-insta{
  margin-top: 20px;
}
.copy{
  color: lightgray;
  margin-top: 70px;
  font-size: 12px;
  padding-bottom: 40px;
}
.gallery-title{
  text-align: center;
  margin: 140px 0 80px 0;
  font-size: 20px;
  color: #333;
  letter-spacing: 1px;
}
.gallery-photo{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 50px;
}
.gallery-photo img{
  margin: 30px 10px;
  width: 200px;
  border: 1px solid gray;
}
.to-top{
  text-align: center;
  background-image: url(totop.png);
  height: 10px;
  background-repeat: no-repeat;
  padding: 30px ;
  background-size: contain;
}
.to-top a{
  text-decoration: none;
  color: #333;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 30px;
}
}
@media screen and (max-width: 575px){

.slider_2{
  position:relative;
  /* 表示するスライダーの高さを設定 */
  top: -150px;
  height:100vh;
  width: 100vw;
  margin:0 auto;
  padding:auto;
  text-align: center;
  overflow: hidden;
  /* widthのはみ出し画面防止 */
  z-index: -9999;
}
.slider_2 ul{
  margin:0;
  padding:0;
  list-style:none;
}
.slider_2 ul img{
  /* スライドさせる画像の幅を設定 */
  height: 100vh;
  margin:0 auto;
  padding:0 auto;
}
.slider_2 ul li{
  width:100vw;
  height:100vh;
  position:absolute;
  top:0;
  left:0;
  animation-iteration-count:infinite;
  /* アニメーションの周期は21秒 */
  animation-duration:28s;
}
.slider_3{
	display: none;
}
/* -------------------------------------------------- */
/* アニメーション開始時間の設定 */

.slider_2 ul li:nth-child(1){
  animation-name:slider_2;
  /* 1秒前からスタート */
  animation-delay:-2s;
}
.slider_2 ul li:nth-child(2){
  animation-name:slider_2;
  /* 6秒後（7秒-1秒）からスタート */
  animation-delay:5s;
  opacity:0;
}
.slider_2 ul li:nth-child(3){
  animation-name:slider_2;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:10s;
  opacity:0;
}
.slider_2 ul li:nth-child(4){
  animation-name:slider_2;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:15s;
  opacity:0;
}
.slider_2 ul li:nth-child(5){
  animation-name:slider_2;
  /* 13秒後（14秒-1秒）からスタート */
  animation-delay:19s;
  opacity:0;
}
/* -------------------------------------------------- */
/* フェードイン・フェードアウトの設定 */

@keyframes slider_2{
　/* 非表示（不透明度0%）状態からフェードインを始める  */
  0%{
    opacity:0;
  }
  /* ここまでにフェードインを完了し、完全表示（不透明度100%）にする */
  4.76%{
    opacity:1;
  }
  /* ここまで完全表示（不透明度100%）の状態を維持したらフェードアウトを始める */
  33.33%{
    opacity:1;
  }
  /* ここまでにフェードアウトを完了し、非表示（不透明度0%）にする */
  42.85%{
    opacity:0;
  }
  /* 非表示（不透明度0%）状態を維持したまま終わる */
  100%{
    opacity:0;
  } 
}
/* アニメーション設定 */
.arrowWrap {
  position: fixed;
  left: 10px;
  bottom: 100px;
  height: 100px;
}

.arrowInner p {
display: none;
}
.arrow {
  width: 1px;
  height: 100px;
  margin: 20px auto 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 2px;
  height: 120px;
  margin: 35px auto 0;
  background-color: #333;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.top{
	text-align: left;
	position: fixed;
	top: 0;
	z-index: 8888;
}
.top img{
	width: 70vw;
	padding: 20PX;
}
.web-photo{
	width: 100vw;
	padding-top: 60px;
}
.about{
	margin: 110px 0 50px 4px;
	background-image: url(about-back.png);
	background-size: cover;
	overflow: hidden;
	text-align: center;
	padding-bottom: 80px;
	z-index: -9999;
}
.about-text{
	font-size: 16px;
	padding:  180px 5vw 50px 40vw;
	font-weight: normal;
	line-height: 40px;
	margin: 50px 0;
}
.con-01{
	text-align: center;
}
.cont-name{
	text-align: right;
	margin-right: 20px;
}
.photo{
	width: 80vw;
}
.web-yoko-same{
  margin-top: 50px;
}
.web-yoko-same a{
  display: block;
}
.name{
	height: 30px;
	margin: 0 10px 0 auto;
}
.name-jpn{
	font-size:10px;
	letter-spacing: 2px;
	padding:30px  10px 0 0;
	margin: 0;
	font-weight: lighter;
	color:#d95e29;
}
.web-add {
	font-size: 12px;
	color: gray;
	text-decoration: none;
}
.con-02,.con-03{
	margin: 0;
  text-align: center;
}
.photo02{
	width: 49vw;
	margin: 0;
}
.photo03{
	width: 100vw;
}
.web-about-ti{
    background-color: #D95E29;
    padding: 30px ;
    margin: 60px 0 0 0 ;
    text-align: center;
}
.web-about-title{
  text-align: center;
  width: 300px;
}
.web-about{
  padding: 20px 0; 
  background-color: #D95E29;
  text-align: center;
}

.web-con{
  width: 100%;
  text-align: center;
  margin: 0;

}
.web-con img{
  width: 100%;
}
.web-con-come{
  font-size: 22px;
  text-align: left;
  color: white;
  letter-spacing: 2px;
  font-weight: lighter;
}
.web-con-come2{
  font-size: 14px;
  color: white;
  text-align: left;
  line-height: 28px;
}
.btob{
	text-align: center;
	margin: 14px ;
	padding-bottom: 30px;
  background-image: url(saradarogo.png);
  border: double 7px #333;
}
.btob-title{
	font-size: 40px;
	margin: 0;
	padding-top: 40px;
}
.btob-subtitle{
	font-size: 12px;
	padding-top: 6px;
	padding-bottom: 30px;
	font-weight: lighter;
	margin: 0;
}
.btob-con{
	padding: 0 30px;
	text-align: justify;
	line-height: 30px;
}
.aboutme{
	text-align: center;
	padding-top: 100px;
}
.aboutme img {
	width: 50vw;
}
.aboutme-text{
	font-weight: lighter;
	font-size: 16px;
	padding: 0 20px;
	line-height: 30px;
	text-align: justify;
	margin-bottom: 80px;
}
.self-name{
	font-size: 18px;
	margin: 40px 0;
}
.self-text{
	text-align: justify;
	font-size: 14px;
	padding: 0 50px;
	color: gray;
}
.contact{
	text-align: center;
	margin: 80px 0 0 0 ;
	background-color: #f6f6f6;
	padding: 80px 0;
}
.contact-title{
	font-size: 12px;
	color: #D95E29;
	letter-spacing: 2px;

}
.contact-subtitle{
	font-size: 20px;
	color: #333;
	letter-spacing: 1px;
	margin-bottom: 90px;
}
.contact-line{
	margin-bottom: 70px;
}
.contact-line a{
	text-decoration: none;
  border:1px solid #333;
  padding:18px 60px;
  text-align: center;
  color: #333;
  font-size: 14px;
  letter-spacing: 3px;
}
.contact-line a:active{
	background-color: #333;
	color: white;
}
.contact-line a:hover{
	background-color: #333;
	color: white;
}
.memo{
	text-align: left;
	font-size: 14px;
	margin: 0 46px;
	line-height: 30px;
}
.footer{
	background-color: #4B4645;
	text-align: center;
	padding-top: 60px;
}
.footer-rogo{
	margin: 30px 0 10px 0 ;
	width: 110px;
}
.footer-title{
	color: white;
	font-size: 14px;
	letter-spacing: 5px;
}
hr{
	margin: 30px 110px 0 110px;
}
.follow{
	color: white;
	font-size: 14px;
	margin-top: 60px;
}
.footer-insta{
	margin-top: 20px;
}
.copy{
	color: lightgray;
	margin-top: 70px;
	font-size: 12px;
	padding-bottom: 100px;
}
.gallery-title{
	text-align: center;
	margin: 140px 0 80px 0;
	font-size: 24px;
	color: #333;
	letter-spacing: 1px;
}
.gallery-photo{
	text-align: center;
}
.gallery-photo img{
	margin-bottom: 50px;
	width: 70vw;
	border: 1px solid gray;
}
.to-top{
	text-align: center;
	background-image: url(totop.png);
	height: 25px;
	background-repeat: no-repeat;
	padding: 30px 0;
	background-size: contain;
}
.to-top a{
	text-decoration: none;
	color: #333;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 30px;
}
}
