@charset "UTF-8";



html, body {
      margin: 0;
      padding: 0;
      height: 100%;
	  background: #FFF8F2;
	/*font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";*/
    }

img{
	display: block;
}
h2 {
	margin: 0;
}
a {
	text-decoration: none;
}

/* ボタンのスタイル */
.button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  height: 40px;
  padding: 8px 24px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #DF6A25;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
	
  margin: 0 auto;
  margin-top: 56px;
  font-weight: bold;
  border: solid 2px #DF6A25;
}

@media (any-hover: hover) {
  .button{
    transition: background-color 0.2s;
  }

  .button:hover {
    /*background-color: #603916;*/
	  
	background-color: #fff;
	border: solid 2px #DF6A25;
	color: #DF6A25;
  }
}

/*パンくずリスト*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
 
  background-color: #603916;
  font-size: 14px;
  padding-left: 1rem; 
}

.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0.6em; /* 記号の左右の余白 */
	
  color: #FFFFFF;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb li{
	color: #FFFFFF;
	padding-top: 4px;
    padding-bottom: 4px;
}

/*大見出し*/
.page-title{
    width: 100%;
    height: auto;
    padding-top: 64px;
    padding-bottom: 20px;
}
.page-title h1{
    text-align: center;
    color: #603916;
    font-weight: bold;
    font-size: 32px;
}
.page-title h1 i{
    margin-right: 5px;
}
.page-title p{
    text-align: center;
    color: #DF6A25;
    font-weight: bold;
    margin-top: 10px;
}
@media (max-width: 768px){
    .page-title{
        padding-top: 56px;
        padding-bottom: 25px;
    }
    .page-title h1{
        font-size: 28px;
    }
    .page-title p{
        margin-top: 5px;
    }
}
@media (max-width: 480px){
    .page-title{
        padding-top: 32px;
        padding-bottom: 10px;
    }
    .page-title h1{
        font-size: 25px;
    }
    .page-title p{
        margin-top: 0;
    }
    
}
/*大見出し終わり*/


.flow{
    width: 100%;
    height: auto;
	
	background-color: #FFFFFF;
}

.flow-content{
    width: 40%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 100px;
}

.flow-content_1{
    width: 100%;
    height: auto;
}
.flow-content_1_1{
    width: 50%;
    height: auto;
    margin: 0 auto;
    justify-content: space-between;
}
.flow-content_1_1-sen{
    width: 100%;
    margin-top: 10px;
    text-align: center;
}
.flow-content_1_1-pic{
    width: 100%;
    height: auto;
    border: solid 3px #603916;
}
.flow-content_1_1-pic img{
    width: 100%;
}


@media (max-width: 1200px){
    .flow-content{
        width: 60%;
    }
}
@media (max-width: 960px){
    .flow-content{
        width: 70%;
    }
}
@media (max-width: 768px){
    .flow-content{
        width: 80%;
    }
}
@media (max-width: 640px){
     .flow-content{
        width: 90%;
    }
    .flow-content_1_1{
        width: 80%;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (max-width: 480px){
    .flow-content_1_1{
        display: block;
        width: 90%;
    }
    .flow-content_1_1-sen{
        width: 100%;
    }
    .flow-content_1_1-sen p{
        font-size: 15px;
    }
    .flow-content_1_1-pic{
        width: 100%;
        margin: 0 auto;
    }
}
.flow-content_1_1-niretsu{
    width: 100%;
}
.flow-content_1_1-pic-1{
    display: flex;
    justify-content: space-between;
}
.flow-content_1_1-pic-1 .flow-content_1_1-pic{
    width: 49%;
    
}
@media (max-width: 480px){
    .flow-content_1_1-pic-1{
        display: block;
        justify-content: space-between;
    }
    .flow-content_1_1-pic-1 .flow-content_1_1-pic{
       width: 90%;
        margin-bottom: 10px;
    }
    .flow-content_1_1-niretsu .flow-content_1_1-sen{
        width: 90%;
        margin: 0 auto;
    }
}
.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #DF6A25;
    margin: auto;
    margin: 20px auto 20px auto;
}

/*LINE応募ボタン*/
.line-btn{
    position: fixed;
    bottom: 185px;
    right: 40px;
    z-index: 9999;
}
.line-button {
    display: block;
    position: relative;
    background: #06C755;
    width: 18rem;
    padding: 1rem;
    border-radius: .6rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: .1rem;
    transition: .5s;
    margin: 0 auto;
    border: solid 3px #06C755;
}

.line-button:before {
    content: "";
    position: absolute;
    top: 46%;
    right: 12px;
    width: 10px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
}

.line-button:after {
    content: "";
    position: absolute;
    top: 54%;
    right: 12px;
    width: 10px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
}
.line-button:hover{
    color: #06C755;
    background: #fff;
}
.line-button:hover:before,.line-button:hover:after{
    background: #06C755;
}

@media (max-width: 768px){
    .wait-button,
    .line-button{
        font-size: 18px;
    }
    .wait-btn{
/*        position: absolute;*/
        left: 0;
        right: unset;
        width: 50vw;
    }
    .line-btn{
/*        position: absolute;*/
        bottom: 0;
        right: 0;
    }
    .line-button {
        width: 50vw;
        border-radius: 0px;
    }
    .wait-button{
        width: 50vw;
    }
}
/*固定ボタン終わり*/

/*見出し下の文章*/
.recruit-line{
    width: 100%;
    height: auto;
    margin: 15px auto;
    margin-bottom: 40px;
    text-align: center;
}
.recruit-line_h2{
    width: 400px;
    height: auto;
    padding: 15px 10px;
    background-color: #06C755;
    margin: 0 auto;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
}
.recruit-line_h2:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #06C755;
    z-index: 2;
}


.recruit-line_h2 h2{
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    line-height: 2.2rem;
}
.recruit-line_p p{
    color: #603916;
    font-weight: bold;
}
@media (max-width: 480px){
    .recruit-line{
        margin-bottom: 30px;
    }
    .recruit-line_h2{
        width: 90%;
        padding: 10px;
    }
    .recruit-line_h2 h2{
        font-size: 18px;
        line-height: 1.6rem;
    }
    .recruit-line_p{
        width: 90%;
        margin: 0 auto;
    }
    .recruit-line_p p{
        font-size: 15px;
    }
    .recruit-line_p p span{
        display: inline-block;
    }
}

