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

/* WORK FLOW ----------------------------------------------*/
.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}

/*縦線*/
.timeline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 1px;
  background-color: #231815;
  left: 50%;
  margin-left: 0px;
}

/*縦線終始*/
.timeline .timeline-heading > div h3 {
  display: inline-block;
  padding: 10px 15px;
	margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1em;
  font-weight: bold;
  background: #eae4d1;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

/*項目*/
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}

.timeline > li:before, .timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 45%;
  float: left;
  margin-bottom: 0;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

/*項目アイコン*/
.timeline > li > .timeline-badge {
  color: #fff;
  width: 44px;
  height: 44px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -21px;
  background-color: #231815;
  z-index: 100;
  display: table;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.timeline > li > .timeline-badge i {
  display: table-cell;
  vertical-align: middle;
  height: 44px;
  font-size: 20px;
}

/*左右パネル*/
.timeline > li.timeline-unverted {
  text-align: right;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

/*パネル文字情報*/
.timeline-title {
  margin-top: 0;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6em;
}

.timeline-body > p + p {
  margin-top: 5px;
}

.period {
  display: block;
  margin: 10px 0 10px;
  font-size: 14px;
  font-weight: normal;
}

/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}


@media screen and (max-width: 992px) {
  .timeline > li > .timeline-badge {
    margin-left: -21px !important;
  }
 
}

@media screen and (max-width: 768px) {
  .timeline:before {
    margin-left: -54px;
  }
  .timeline > li > .timeline-badge {
    margin-left: 0px !important;
  }
	
  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }
	
  .timeline .timeline-heading {
    margin-bottom: 10px;
  }
  .timeline .timeline-heading > div h3 {
    float: left;
    margin-bottom: 0;
  }
  .timeline > li {
    margin-bottom: 4em;
  }
	
	
  .timeline > li > .timeline-panel {
    width: 85% !important;
  }
  ul.timeline > li > .timeline-panel {
    width: calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
  }
  ul.timeline > li > .timeline-panel {
    float: right;
  }
  ul.timeline:before {
    left: 90px;
  }
  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
  .timeline > li.timeline-unverted {
    text-align: left;
  }
}

@media screen and (max-width: 520px) {
  .timeline:before {
    margin-left: -54px;
  }
  .timeline > li > .timeline-badge {
    margin-left: 0px !important;
  }
	
  .timeline > li > .timeline-panel {
    width: 75% !important;
  }
  .timeline > li > .timeline-panel:before {
    top: 30px;
  }
  .timeline > li > .timeline-panel:after {
    top: 31px;
  }
}

/* MENU ----------------------------------------------*/
.tm-padding-top-bottom-80 {
  background: #eae4d1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.menu-h3 {
  color:  #231815;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 10px;
  margin-top: 0;
}

.menu-h3sub {
  color:  #231815;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 3px;
}

.marker-bold {
  background: linear-gradient(transparent 50%, #ffffff 50%);
}

.work-wrapper .menu{
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}
.work-wrapper .price{
	font-size: 16px;
	font-weight: 600;
	margin: 5px 0 20px;
}
.work-wrapper .menu_notes{
	font-size: 13px;
	text-align: justify;
	padding-top: 15px;
	line-height: 1.6em;
}
.work-wrapper .menu_notes br{
	display: inline-block;
}

.work-wrapper-in .menu{
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}
.work-wrapper-in .price{
	font-size: 16px;
	font-weight: 600;
	margin: 5px 0 20px;
}
.work-wrapper-in .menu_notes{
	font-size: 13px;
	text-align: justify;
	padding: 15px 0 20px;
	line-height: 1.6em;
}
.work-wrapper-in .menu_notes br{
	display: inline-block;
}

.work-wrapper-in {
  border: 2px solid #231815;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 20px;
  text-align: center;
	
  /* flexboxをcolumnで使う */
  display: flex;
  flex-direction: column;
  width: 100%;
}
.work-wrapper-in p{
	color: #231815;
	font-size:14px;
}
.work-wrapper-in hr{
	margin-bottom: 35px;
}
.work-wrapper-in br{
	display: none;
}
.work-wrapper-in .fa {
  color:  #231815;
  font-size: 60px;
  padding: 10px 0 30px;
  text-decoration: none;
}
.work-wrapper-in .fa2 {
  color:  #ffffff;
  font-size: 10px;
  text-decoration: none;
}

.cards { /* align-itemsはデフォルトでstretchだけどわかりやすさのため明記 */
  align-items: stretch;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.menu_footletter{
	text-align: center;
	padding: 40px 0;
	margin: 0;
}
.menu_footletter > h3 {
  color: #231815;
  display: inline-block;
  padding: 10px 20px;
  margin: 0;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.2em;
  font-weight: bold;
/*  background: #f0f0f0;*/
	border: dashed 2px #231815;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.menu_footletter > h3 br{
		display: none;
	}
.menu_footletter2{
	text-align: center;
	padding: 60px 0 20px;
	margin: 0;
}
.menu_footletter2 .menu_notes{
	font-size: 13px;
	padding-top: 15px;
	line-height: 1.6em;
}

@media screen and (max-width: 520px) {
.tm-padding-top-bottom-80 {
  background: #eae4d1;
  padding-top: 40px;
  padding-bottom: 20px;
}
.menu_footletter{
	padding: 20px 0 30px;
	margin: 0;
}
.menu_footletter > h3 {
  padding: 10px 30px;
  font-size: 15px;
  letter-spacing: 0px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
}
	.menu_footletter > h3 br{
		display: inline-block;
	}
}
