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

*{
	color: #734E30;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

a:hover{
    transition: all 0.5s ease;
}

.over_flow{
	overflow-x: hidden;
}
.anchor{
    padding-top: 70px;
    margin-top: -70px;
}

.inview {
  animation-name: fade-in;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fade-in{
    opacity: 0;
}

.wrapper{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 150px 20px;
}

#recruit .wrapper{
    padding-bottom: 150px;
}

.green{
    color: #6CBE46;
}

.red{
    color: #FF6E61;
}

.blue{
    color: #4A8DBA;
}

h2{
    margin-bottom: 50px;
    text-align: center;
}

h2 .title{
    font-size: 28px;
    margin-bottom: 20px;
}

h2 span{
    display: block;
}

.flex{
    display: flex;
}

.link_btn{
    position: relative;
    text-align: center;
}

.link_btn a{
    display: inline-block;
    background: var(--link_color);
    padding: 10px 70px;
    position: relative;
    border-radius: 25px;
}

.link_btn a::before{
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 0 5px 10px;
    transition: all 0.2s ease-in;
}

.link_btn_w a{
    border: 1px solid #734E30;
}

.link_btn_w a::before{
    border-color: transparent transparent transparent #734E30;
}

.link_btn_w a:hover{
    background: #734E30;
    color: #fff;
}

.link_btn_w a:hover::before{
    border-color: transparent transparent transparent #fff;
}

.link_btn_o a{
    background: #F79A35;
    color: #fff;
    border: none;
}

.link_btn_o a::before{
    border-color: transparent transparent transparent #fff;
}

.link_btn_o a:hover{
    opacity: 0.6;
}