@charset "UTF-8";

/**
 *
 * レイアウト、共通コンテンツ
 *
**/


/**
 * ラッパー
**/

#wrapper {
  position: relative;
	overflow: hidden;
}


/**
 * ヘッダー
**/

#header {}
#header .wrap {
    width: 100%;
    max-width: 1180px;
    height: 95px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
    align-items: center;
	box-sizing: border-box;
}

#header .logo {
	width: 404px;
	position: static;
	top: 40px;
	left: 0;
}
#header h1,
#header .h1 {
    color: #32414d;
    font-size: 14px;
	line-height: 1.4em;
    letter-spacing: 0.03em;
}
#header img {
	width: 100%;
	height: auto;
	display: block;
}

#header .info {
	width: 340px;
	height: 70px;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	position: static;
	top: 47px;
	right: 0px;
}
#header .info .line,
#header .info .consultation {}
#header .info .line a,
#header .info .consultation a {
    width: 230px;
    height: 60px;
	color: #fff;
	font-size: 16px;
    font-weight: normal;
    line-height: 1.2em;
    text-align: left;
	border-radius: 8px;
	display: flex;
	justify-content: center;
    align-items: center;
    box-sizing: border-box;
	cursor: pointer;
}
#header .info .line a { 
	background: #12AC1D;
	margin-right: 10px;
}
#header .info .consultation a { background: #ff5f43; }

#header .info .line a::before,
#header .info .consultation a::before {
	content: "";
	display: inline-block;
	margin-right: 5px;
}
#header .info .line a::before {
	width: 39px;
	height: 37px;
	background:  url("../images/header_icon_01.png") no-repeat;
	background-size: contain;
}
#header .info .consultation a::before {
	width: 31px;
	height: 32px;
	background: url("../images/header_icon_03.png") no-repeat;
	background-size: contain;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	#header .wrap {
		padding: 10px 2vw;
		width: 100%;
		max-width: inherit;
	}
	#header .info { width: 40%; }
	#header .info .line,
	#header .info .consultation { width: 50%; }
	#header .info .line {
		margin-right: 10px;
	}
	#header .info .line a,
	#header .info .consultation a { 
		width: 100%;
		padding: 0 10px;
		font-size: 1.3vw;
	}
	#header .info .line a::before,
	#header .info .consultation a::before {
		width: 25px;
		height: 25px;
	}
	
}
@media only screen and (max-width: 767px) {
	#header {
	  width: 100%;
	  height: 60px;
	  background: #fff;
	  text-align: left;
	}
	#header .wrap {
		margin: 0 auto;
		width: 100%;
		max-width: 1280px;
		height: 60px;
		text-align: left;
		position: relative;
		z-index: 100;
	}
	#header img {
		width: 90%;
		height: auto;
		display: block;
	}
	#header h1 {
		font-size: 70%;
		margin-bottom: 5px;
		display: none;
	}
	#header .info {
	  display: none;
	}
	#header .logo {
		width: 80vw;
		height: 60px;
		padding: 8px 10px;
		box-sizing: border-box;
	}
	#header .logo a {
		padding: 5px 0;
		display: inline-block;
	}
	
	
	.header__hamburger {
	  margin: 0 -10px 0 0;
	  padding: 0 0 0 0;
	  width: 40px;
	  height: 40px;
	  position: absolute;
	  top: 10px;
	  right: 4%;
	  z-index: 10002;
	}
	.hamburger {
	  background-color: transparent;
	  border-color: transparent;
	  z-index: 9999;
	}
	.hamburger span {
	  margin: 0 0 0 0;
	  width: 26px;
	  height: 3px;
	  background-color: #4b4b4b;
	  position: relative;
	  transition: ease .4s;
	  display: block;
	}
	.hamburger span:nth-child(1) {
	  top: 10px;
	  left: 5px;
	}
	.hamburger span:nth-child(2) {
	  top: 16px;
	  left: 5px;
	}
	.hamburger span:nth-child(3) {
	  top: 22px;
	  left: 5px;
	}
	.header__nav.active {
	  transform: translateX(0);
	}
	.hamburger.active span:nth-child(1) {
	  top: 16px;
	  transform: rotate(45deg);
	}
	.hamburger.active span:nth-child(2) {
	  opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
	  top: 10px;
	  transform: rotate(-45deg);
	}
	
}


/**
 * ナビゲーション
**/
#navi {
	background: #32a8e4;
}
#navi ul {
	margin: 0 auto;
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
#navi ul li {
	padding: 10px 0;
    text-align: center;
}
#navi ul li a {
	color: #fff;
	font-size: 16px;
    line-height: 1.2em;
}
@media only screen and (max-width: 767px) {
	#navi {
	  padding: 0 0;
	  width: 100%;
	  background: #fff;
	  box-sizing: border-box;
	  display: none;
	  position: absolute;
	  top: 60px;
	  left: 0;
	  z-index: 100;
	}
	#navi ul {
	  margin: 0 0 0 0;
	  padding: 0 0 0 0;
	  line-height: 1.1em;
	  font-size: 16px;
	  font-weight: bold;
	  width: 100%;
	  display: block;
	}
	#navi ul li {
	  margin: 0 0;
	  padding: 0 0;
	  text-align: center;
	  float: none;
	  display: block;
	}
	#navi ul li a {
	  color: #32414d;
	  font-weight: 500;
      padding: 15px 0;
      border-top: 1px solid #ccc;
	  display: block;
	}
	#navi ul li:first-of-type a {
      border-top: 3px solid #32a8e4 ;
	}
	#navi ul li:last-of-type a {
      border-bottom: 1px solid #ccc;
	}
	
}


/**
 * メインイメージ
**/
#main_image {
	width: 100%;
	padding: 70px 0 50px;
	background: url("../images/main_image_01.png") no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
#main_image img {
	width: 100%;
	height: auto;
	display: block;
}
#main_image h2 {
  margin: 0 auto 6px auto;
  width: 401px;
}
#main_image .mv-catch {
    color: #32414d;
    font-size: 18px;
    line-height: 1.6em;
}
#main_image .search {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
#main_image .search .wrap {
	margin: 0 auto;
    padding: 25px 25px;
    width: 90%;
    max-width: 960px;
    background: url(../images/search_back_01.png);
    border-radius: 8px;
    box-sizing: border-box;
}
#main_image .search .wrap .tit {
  margin: 0 28px 0 68px;
  padding: 0 0 0 0;
  width: 230px;
  float: left;
}
#main_image .search .wrap .form {
	margin: 0 0 20px;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	flex-wrap: wrap;
}
#main_image .search .wrap .form .batu {
	padding: 14px 0;
	width: 26px;
}
#main_image .search .wrap .form .select {
	width: 258px;
}
#main_image .search .wrap .form .select select {
	margin: 0 0 0 0;
	padding: 15px 40px 15px 15px;
	width: 100%;
	height: auto;
	line-height: 1.2em;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	color: #32414d;
	background: #fff url("../images/arrow_01.png") no-repeat right 10px center;
	border: 1px solid #32414d;
	box-sizing: border-box;
	border-radius: 5px;
	appearance: none;
}
#main_image .search .wrap .form .select select::-ms-expand {
    display: none;
}
#main_image .search .wrap .form .btn_box {
  padding: 0 0 0 18px;
  width: 325px;
  box-sizing: border-box;
}
#main_image .search .wrap .form .btn_box .btn {
    width: 100%;
	padding: 12px 60px 12px 88px;
    color: #fff;
    line-height: 1.2em;
    font-size: 24px;
    font-weight: 500;
    background: #ff5f43 url(../images/search_btn_01.png) no-repeat 105px center;
    background-size: 27px auto;
    border: none;
    border-radius: 30px;
    -webkit-appearance: none;
    display: block;
    cursor: pointer;
}
#main_image .search .wrap .message {
	text-align: center;
}
#main_image .search .wrap .message p {
    color: #32414d;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
#main_image .search .wrap .message .num {
	color: #ff5f43;
    line-height: 1.2em;
    font-size: 34px;
    font-weight: bold;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	#main_image h2 {
		width: 25%;
		margin: 20px auto 10px;
	}
	#main_image .mv-catch {
		font-size: 1.5vw;
		text-shadow: -1px -1px 3px #fff, 1px -1px 3px #fff, -1px 1px 3px #fff, 1px 1px 3px #fff;
	}
	
	#main_image .search .wrap {
		padding: 2vw;
	}
	#main_image .search .wrap .form {
		justify-content: center;
		margin: 0 0 10px;
	}
	#main_image .search .wrap .form .select {
		width: 33.33%;
	}
	#main_image .search .wrap .form .batu {
		padding: 14px 8px;
	}
	#main_image .search .wrap .form .btn_box {
		width: auto;
		padding: 0 0 0 10px;
	}
	#main_image .search .wrap .form .btn_box .btn {
		padding: 12px 25px 12px 50px;
		background: #ff5f43 url(../images/search_btn_01.png) no-repeat 20px center;
	    background-size: 25px auto;
	}

	#main_image .search .wrap .message p {
		font-size: 1.7vw;
	}
	#main_image .search .wrap .message .num {
		font-size: 3.5vw;
	}
}

@media only screen and (max-width: 767px) {
	#main_image {
	  padding: 25px 0 0 0;
	  width: 100%;
	  background: url("../images/main_image_01-sp.png") no-repeat center top;
	  background-size: cover;
	  overflow: hidden;
	}
	#main_image h2 {
		width: 50%;
		margin: 0 auto 10px;
	}
	#main_image .mv-catch {
		font-size: 3.5vw;
		line-height: 1.4em;
		padding: 0 2vw;
		text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
	}
	#main_image .search .wrap {
		width: 96%;
		padding: 15px 15px;
	}
	#main_image .search .wrap .form { 
		align-items: center;
		margin: 0 0 0;
	}
	#main_image .search .wrap .form .select {
		width: 45%;
	}
	#main_image .search .wrap .form .select select {
		padding: 10px 20px 10px 8px;
		font-size: 16px;
		font-weight: normal;
		background: #fff url(../images/arrow_01.png) no-repeat right 5px center;
		background-size: 13px auto;
	}
	#main_image .search .wrap .form .batu {
		width: 6%;
		padding: 0 0;
	}
	
	#main_image .search .wrap .form .btn_box {
		width: 200px;
		padding: 0 0 0;
		margin: 15px auto;
	}
	#main_image .search .wrap .form .btn_box .btn {
		padding: 12px 60px 12px 88px;
		font-size: 20px;
		background: #ff5f43 url(../images/search_btn_01.png) no-repeat 33% center;
		background-size: 22px auto;
	}
	
	#main_image .search .wrap .message p {
		font-size: 3.5vw;
		font-weight: normal;
		display: block;
	}
	#main_image .search .wrap .message .num {
		font-size: 6vw;
		line-height: 1.0em;
	}
	
	#main_image .menu {
	  margin: 0 auto 5px;
	  width: 92%;
	}
	#main_image .menu ul {
	  display: flex;
	  flex-wrap: wrap;
	  -webkit-justify-content: space-between;
	  justify-content: space-between;
	}
	#main_image .menu ul li {
	  margin: 0 0 10px 0;
	  width: 31.3%;
	  height: 72px;
	  display: table;
	}
	#main_image .menu ul:nth-child(2) {
	  /*
	  -webkit-justify-content: space-evenly;
	  justify-content: space-evenly;
	  */
	}
	#main_image .menu ul li a {
		padding: 0 0 9px 0;
		line-height: 1.2em;
		font-size: 12px;
		text-align: center;
		color: #fff;
		display: table-cell;
		border-radius: 5px;
		vertical-align: bottom;
		box-sizing: border-box;
	}
	#main_image .menu ul li.icon01 a {
	  background: #32a8e4 url("../images/search_icon_01.png") no-repeat center 8px;
	  background-size: 23px auto;
	}
	#main_image .menu ul li.icon02 a {
	  background: #32a8e4 url("../images/search_icon_02.png") no-repeat center 11px;
	  background-size: 26px auto;
	}
	#main_image .menu ul li.icon03 a {
	  background: #32a8e4 url("../images/search_icon_03.png") no-repeat center 9px;
	  background-size: 23px auto;
	}
	#main_image .menu ul li.icon04 a {
	  background: #32a8e4 url("../images/search_icon_04.png") no-repeat center 6px;
	  background-size: 26px auto;
	}
	#main_image .menu ul li.icon05 a {
	  background: #32a8e4 url("../images/search_icon_05.png") no-repeat center 6px;
	  background-size: 26px auto;
	}
	#main_image .menu ul li.icon06 a {
	  background: #32a8e4 url("../images/search_icon_06.png") no-repeat center 4px;
	  background-size: 26px auto;
	}
	#main_image .menu ul li a .big {
	  line-height: 1.2em;
	  font-size: 17px;
	}
	#main_image .keyword_search {
	  margin: 0 auto 10px auto;
	  width: 60%;
	  height: 40px;
	  background: #fff;
	  box-sizing: border-box;
	  border: 1px solid #FF7596;
	  border-radius: 5px;
	  position: relative;
	  overflow: hidden;
	}
	#main_image .keyword_search .btn {
		width: 41px;
		padding: 0 0;
		border: none;
		border-radius: 0px;
		position: absolute;
		top: 0;
		right: 0;
		-webkit-appearance: none;
	}
	#main_image .keyword_search .text {
	  padding: 0 0 0 10px;
	  /*width: 318px;
	  height: 40px;*/
	  line-height: 40px;
	  font-size: 15px;
	  border-radius: 0px;
	  box-sizing: border-box;
	  border: none;
	  -webkit-appearance: none;
	}
	
}


#main_image.bg-slider {
    width: 100vw;
    height: 70vh;
    padding: 0 0 0;
    background-position:center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}
#main_image.bg-slider .inner {
    width: 100%;
    max-width: 1180px;
}
#header + div {
    left: -6px!important;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	
	#main_image.bg-slider {
		width: 100%;
		height: 45vw;
	}
	#main_image.bg-slider .inner {
		height: 100%;
	}
	
	#header + div {
		background-size: cover!important;
	}

}
@media only screen and (max-width: 767px) {
	
	#main_image.bg-slider {
		width: 100%;
		height: auto;
	}
	#main_image.bg-slider .inner {
		padding-top: 30px;
	}

	#header + div {
		background-size: cover!important;
	}
	
}



/**
 * コンテンツ
**/

#content {
  display: block;

}
#content img {
	max-width: 100%;
	height: auto;
}


/**
 * フッター
**/

#footer {
  overflow: hidden;
}
#footer img {
	width: 100%;
	height: auto;
	display: block;
}
#footer .footer_navi {
	font-size: 14px;
    line-height: 1.2em;
    padding-top: 30px;
    width: 100%;
    max-width: 1180px;
	margin: 0 auto;
    overflow: hidden;
}
#footer .footer_navi li {
  padding: 0 30px 0 0;
  display: inline-block;
}
#footer .footer_navi li a {
  color: #716F6F;
}
#footer .logo {
    width: 390px;
    height: auto;
    margin: 30px 0;
    display: inline-block;
}

#footer .copyright {
	padding: 10px 0 135px;
	color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.4em;
    background: #32a8e4;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	#footer .footer_navi {
		padding: 30px 2vw 0;
	}
}
@media only screen and (max-width: 767px) {
	#footer {
	  overflow: hidden;
	}
	#footer img {
		width: 100%;
		height: auto;
		display: block;
	}
	#footer .footer_navi {
	  margin: 0 auto;
	  padding: 15px 0 25px 0;
	  width: 92%;
	  max-width: 1180px;
	  font-size: 12px;
	  line-height: 1.2em;
	  text-align: left;
	  overflow: hidden;
	}
	#footer .footer_navi li {
	  padding: 0 20px 10px 0;
	  display: inline-block;
	}
	#footer .footer_navi li a {
		color: #716F6F;
		font-size: 3.5vw;
	}
	#footer .wrap {
	  margin: 0 auto 10px;
	  width: 92%;
	  max-width: 1180px;
	  text-align: left;
	  display: block;
	}
	#footer .wrap .logo {

	}
	#footer .wrap .logo a {
	  max-width: 457px;
	  display: block;
	}
	#footer .wrap .info {
	  text-align: center;
	  line-height: 1.7em;
	  font-size: 12px;
	  color: #716F6F;
	}
	#footer .wrap .info .company {
	  line-height: 1.5em;
	  font-size: 16px;
	  font-weight: bold;
	  color: #716F6F;
	}
	#footer .wrap .info .company + p {
	  font-size: 15px;
	}
	
	#footer .logo {
      width: 80%;
      margin: 20px 0;
	}
	
	#footer .copyright {
	  margin: 0 0 0 0;
	  padding: 10px 0 80px;
	  line-height: 1.4em;
	  font-size: 9px;
	  color: #716F6F;
	  background: #F3F3F3;
	  clear: both;
	  text-align: center;
	}
	
}


/**
 * サイドバナー
**/
#floating_side_bnr {
  width: 158px;
  background: #11AD1D;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 100;
}
#floating_side_bnr .wrap {
  padding: 20px 20px 20px 20px;
  overflow: hidden;
}
#floating_side_bnr .wrap .logo {
  margin: 0 auto 5px;
  width: 69px;
}
#floating_side_bnr .wrap .message {
  margin: 0 0 5px 0;
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.38em;
}
#floating_side_bnr .wrap .qr {
  margin: 0 auto;
  width: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	#floating_side_bnr {
	  display: none;
	}
}
@media only screen and (max-width: 767px) {
	#floating_side_bnr {
	  display: none;
	}
}


/**
 * ボトムバナー
**/
#floating_bottom_bnr {
  padding: 15px 0;
  width: 100%;
  background: #d0ebf9;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
#floating_bottom_bnr .wrap {
  margin: 0 auto;
  width: 92%;
  max-width: 1180px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
#floating_bottom_bnr .wrap .left {
  width: 45%;
  height: 90px;
  display: table;
}
#floating_bottom_bnr .wrap .left .cell {
  color: #fff;
  background: #32a8e4;
  box-sizing: border-box;
  border-radius: 90px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
#floating_bottom_bnr .wrap .left .cell .tel {
  line-height: 1.2em;
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
}
#floating_bottom_bnr .wrap .left .cell .tel:before {
  margin: 0 5px 0 0;
  width: 40px;
  height: 39px;
  line-height: 39px;
  content: "";
  background: url("../images/icon_04.png") no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}
#floating_bottom_bnr .wrap .left .cell .time {
  line-height: 1.2em;
  font-size: 16px;
}
#floating_bottom_bnr .wrap .right {
  width: 53.3%;
  height: 90px;
  display: table;
}
#floating_bottom_bnr .wrap .right a {
  line-height: 1.2em;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: #ff5f43;
  box-sizing: border-box;
  border-radius: 90px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
#floating_bottom_bnr .wrap .right a:before {
  margin: 0 5px 0 0;
  width: 40px;
  height: 30px;
  line-height: 30px;
  content: "";
  background: url("../images/icon_05.png") no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}
#floating_bottom_bnr .wrap .right-detail {
    width: 70%;
    height: 90px;
    display: flex;;
    align-items: center;
    justify-content: space-around;
}
#floating_bottom_bnr .wrap .right-detail a {
line-height: 1.2em;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: #ff5f43;
    box-sizing: border-box;
    border-radius: 90px;
    text-align: center;
    display: block;
    vertical-align: middle;
    padding: 30px 70px;
}
#floating_bottom_bnr .wrap .right-detail a:first-child:before {
  margin: 0 5px 0 0;
  width: 40px;
  height: 30px;
  line-height: 30px;
  content: "";
  background: url("../images/icon_05.png") no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}


@media only screen and (max-width: 767px) {
	#floating_bottom_bnr {
	  padding: 10px 0;
	  width: 100%;
	  /*background: #83DBE5;*/
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  z-index: 1;
	}
	#floating_bottom_bnr .wrap {
	  margin: 0 auto;
	  width: 96%;
	  max-width: 1180px;
	  display: flex;
	  /*
	  -webkit-justify-content: space-between;
	  justify-content: space-between;
	  */
	}
	#floating_bottom_bnr .wrap .left {
	  width: 48.5%;
	  height: 50px;
	  display: table;
	}
	#floating_bottom_bnr .wrap .left .cell {
      border-radius: 5px
	}
	#floating_bottom_bnr .wrap .left .cell .tel {
	  font-size: 17px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
	}
	#floating_bottom_bnr .wrap .left .cell .tel:before {
	  width: 21px;
      height: 20px;
      content: "";
      background: url(../images/icon_04.png) no-repeat center center;
      background-size: cover;
	}
	#floating_bottom_bnr .wrap .left .cell .time {
	  line-height: 1.2em;
      font-size: 2.5vw;
      margin-top: 5px;
	}
	#floating_bottom_bnr .wrap .right {
	  width: 48.5%;
	  height: 50px;
	  display: table;
	}
	#floating_bottom_bnr .wrap .right a {
	  line-height: 1.2em;
	  font-size: 16px;
	  font-weight: bold;
	  color: #fff;
	  text-decoration: none;
	  background: #ff5f43;
	  border: none;
	  box-sizing: border-box;
	  border-radius: 5px;
	  display: table-cell;
	  vertical-align: middle;
	}
	#floating_bottom_bnr .wrap .right a:before {
	  margin: 0 5px -0.6em 0;
	  width: 28px;
	  height: 20px;
	  line-height: 20px;
	  content: "";
	  background: url("../images/icon_05.png") no-repeat center center;
	  background-size: cover;
	  display: inline-block;
	  vertical-align: middle;
	}
	#floating_bottom_bnr .wrap .right-detail {
	  width: 95%;
	  height: auto;
	  display: flex;
    flex-direction: column-reverse;
	}
	#floating_bottom_bnr .wrap .right-detail a {
    font-size: 17px;
    padding: 10px 35px;
	}
	#floating_bottom_bnr .wrap .right-detail a:last-child {
    margin-bottom: 15px;
    width: 60%; 
	}
  #floating_bottom_bnr .wrap .right-detail a:first-child:before{
    background-size: 26px;
  }
}


#modal-line .modal__content {
    max-width: 350px;
    box-sizing: border-box;
}
#modal-line .modal__content .btn_line {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
#modal-line .modal__content .btn_line img {
    object-fit: contain;
}


.select_box {
  padding: 0 0 15px 0;
  display: flex;
}

.select_box .select {
    padding: 0 10px 0 0;
}
