@charset "utf-8";

/*-- タブ切替え --*/

.tab_content_area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.tab_area {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.left_tab,
.right_tab {
  padding: 30px 5px 30px 5px;
  width: calc(100% - 54%);
  color: rgba(255,255,255,1.00);
  text-align: center;
  background-color: rgba(40, 120, 60, 1.00);
  font-size: 130%;
  line-height: 150%;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_tab {
  background-color: rgba(196, 17, 32, 1.00);
}


/*-- タブ内容 --*/

.content {
  display: none;
}

.content.show {
  display: block;
}

.left_content,
.right_content {
  padding: 50px 20px 50px 20px;
  width: 100%;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 10px;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_content {
  border: 2px solid rgba(196, 17, 32, 1.00);
}

.tab_sub_area{
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tab_sub_area a{
  padding: 25px 10px 25px 30px;
  width: 32.333%;
  color: rgba(255,255,255,1.00);
  text-align: left;
  background-color: rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  font-size: 100%;
  line-height: 150%;
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
}

.tab_sub_area a::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 5px;
  top: 0;
  bottom: 2px;
  left: 10px;
  margin: auto;
  border-top: 2px solid rgba(255,255,255,1.00);
  border-left: 2px solid rgba(255,255,255,1.00);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(135deg);
}

.tab_content_item h2{
  padding-left: 5px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 125%;
  font-weight: 400;
  box-sizing: border-box;
}

.tab_title_area{
  padding: 18px 20px 18px 20px;
  margin-bottom: 30px;
  font-size: 125%;
  line-height: 175%;
  font-weight: 400;
  background: rgba(40, 120, 60, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border-radius: 5px;
}

.tab_content_box{
  margin-bottom: 20px;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  box-sizing: border-box;
}

.tab_content_box:last-child{
  margin-bottom: 50px;
}

.tab_title{
  width: 100%;
  padding: 30px 40px 30px 20px;
  display: flex;
  align-items: baseline;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}

.tab_title::before{
  position: absolute;
  content: "";
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 15px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  transition: 0.5s;
}

.tab_title::after{
  position: absolute;
  content: "";
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 15px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.5s;
}

.tab_title.open::after{
  display: none;
  transition: 0.5s;
}

.tab_title.open::before{
  position: absolute;
  content: "";
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 15px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: 0.5s;
}

.tab_title .title_icon{
  padding-right: 10px;
  font-size: 120%;
  font-weight: 500;
  box-sizing: border-box;
}

.tab_title .title_text{
  font-size: 100%;
  line-height: 150%;
  font-weight: 500;
}

.tab_text_area{
  display: none;
  padding: 0 40px 30px 20px;
  width: 100%;
  line-height: 150%;
  text-align: left;
  color: rgba(40, 120, 60, 1.00);
  position: relative;
  box-sizing: border-box;
}

.tab_text{
  display: flex;
  align-items: baseline;
  text-align: left;
}

.answer_icon{
  padding-right: 10px;
  font-size: 120%;
  font-weight: 500;
  box-sizing: border-box;
}

.answer_text{
  font-size: 100%;
  line-height: 150%;
  font-weight: 500;
}


/*-- お問い合わせ --*/

.tab_add_area{
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.tab_add_area .text_b{
  margin-bottom: 20px;
  font-size: 150%;
  line-height: 150%;
}

.tab_add_area .text_s{
  margin-bottom: 20px;
  font-size: 95%;
  line-height: 150%;
}

.tab_add_area .text_s:last-of-type{
  margin-bottom: 0px;
}

.tab_add_area div{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.tab_add_area .tel{
  margin-bottom: 20px;
  font-size: 225%;
  line-height: 150%;
  color: rgba(40, 120, 60, 1.00);
}

.tab_add_area .tel span{
  font-size: 75%;
  line-height: 150%;
}

.tab_add_area .mail{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 30px 20px 50px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(40, 120, 60, 1.00);
  border: 1px solid rgba(40, 120, 60, 1.00);
  border-radius: 50px;
  box-sizing: border-box;
  background-image: url(../images/mail_icon_off.png);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-out;
}

.tab_add_area .mail:hover{
  color: rgba(40, 120, 60, 1.00);
  background: rgba(255, 255, 255, 1.00);
  background-image: url(../images/mail_icon_on.png);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: 57px;
  border: 1px solid rgba(40, 120, 60, 1.00);
  transition: 0.25s ease-out;
}

@media screen and (max-width: 1280px){

.tab_content_area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.tab_area {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.left_tab,
.right_tab {
  padding: 25px 5px 25px 5px;
  width: calc(100% - 54%);
  color: rgba(255,255,255,1.00);
  text-align: center;
  background-color: rgba(40, 120, 60, 1.00);
  font-size: 120%;
  line-height: 150%;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_tab {
  background-color: rgba(196, 17, 32, 1.00);
}


/*-- タブ内容 --*/

.content {
  display: none;
}

.content.show {
  display: block;
}

.left_content,
.right_content {
  padding: 40px 20px 40px 20px;
  width: 100%;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 10px;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_content {
  border: 2px solid rgba(196, 17, 32, 1.00);
}

.tab_sub_area{
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tab_sub_area a{
  padding: 20px 10px 20px 30px;
  width: 32.333%;
  color: rgba(255,255,255,1.00);
  text-align: left;
  background-color: rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  font-size: 95%;
  line-height: 150%;
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
}

.tab_sub_area a::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 5px;
  top: 0;
  bottom: 2px;
  left: 10px;
  margin: auto;
  border-top: 2px solid rgba(255,255,255,1.00);
  border-left: 2px solid rgba(255,255,255,1.00);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(135deg);
}

.tab_content_item h2{
  padding-left: 5px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 115%;
  font-weight: 400;
  box-sizing: border-box;
}
	
.tab_title_area{
  padding: 16px 18px 16px 18px;
  margin-bottom: 25px;
  font-size: 115%;
  line-height: 175%;
  font-weight: 400;
  background: rgba(40, 120, 60, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border-radius: 5px;
}

.tab_content_box{
  margin-bottom: 15px;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  box-sizing: border-box;
}

.tab_content_box:last-child{
  margin-bottom: 40px;
}

.tab_title{
  width: 100%;
  padding: 25px 40px 25px 20px;
  display: flex;
  align-items: baseline;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}

.tab_title::before{
  position: absolute;
  content: "";
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 15px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  transition: 0.5s;
}

.tab_title::after{
  position: absolute;
  content: "";
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 15px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.5s;
}

.tab_title.open::after{
  display: none;
  transition: 0.5s;
}

.tab_title.open::before{
  position: absolute;
  content: "";
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 15px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: 0.5s;
}

.tab_title .title_icon{
  padding-right: 10px;
  font-size: 110%;
  font-weight: 500;
  box-sizing: border-box;
}

.tab_title .title_text{
  font-size: 95%;
  line-height: 150%;
  font-weight: 500;
}

.tab_text_area{
  display: none;
  padding: 0 40px 25px 20px;
  width: 100%;
  line-height: 150%;
  text-align: left;
  color: rgba(40, 120, 60, 1.00);
  position: relative;
  box-sizing: border-box;
}
	
.tab_text{
  display: flex;
  align-items: baseline;
  text-align: left;
}

.answer_icon{
  padding-right: 10px;
  font-size: 110%;
  font-weight: 500;
  box-sizing: border-box;
}
	
.answer_text{
  font-size: 95%;
  line-height: 150%;
  font-weight: 500;
}
	
	
/*-- お問い合わせ --*/

.tab_add_area{
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.tab_add_area .text_b{
  margin-bottom: 15px;
  font-size: 140%;
  line-height: 150%;
}

.tab_add_area .text_s{
  margin-bottom: 15px;
  font-size: 85%;
  line-height: 150%;
}

.tab_add_area .text_s:last-of-type{
  margin-bottom: 0px;
}

.tab_add_area div{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.tab_add_area .tel{
  margin-bottom: 15px;
  font-size: 210%;
  line-height: 150%;
  color: rgba(40, 120, 60, 1.00);
}

.tab_add_area .tel span{
  font-size: 70%;
  line-height: 150%;
}
	
.tab_add_area .mail{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 20px 15px 40px;
  font-size: 95%;
  text-decoration: none;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(40, 120, 60, 1.00);
  border: 1px solid rgba(40, 120, 60, 1.00);
  border-radius: 50px;
  box-sizing: border-box;
  background-image: url(../images/mail_icon_off.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-out;
}

.tab_add_area .mail:hover{
  color: rgba(40, 120, 60, 1.00);
  background: rgba(255, 255, 255, 1.00);
  background-image: url(../images/mail_icon_on.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 60px;
  border: 1px solid rgba(40, 120, 60, 1.00);
  transition: 0.25s ease-out;
}
	
}

@media all and (max-width:960px), print{
	
.tab_content_area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.tab_area {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.left_tab,
.right_tab {
  padding: 20px 5px 20px 5px;
  width: calc(100% - 54%);
  color: rgba(255,255,255,1.00);
  text-align: center;
  background-color: rgba(40, 120, 60, 1.00);
  font-size: 110%;
  line-height: 150%;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_tab {
  background-color: rgba(196, 17, 32, 1.00);
}


/*-- タブ内容 --*/

.content {
  display: none;
}

.content.show {
  display: block;
}

.left_content,
.right_content {
  padding: 30px 20px 30px 20px;
  width: 100%;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 10px;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_content {
  border: 2px solid rgba(196, 17, 32, 1.00);
}

.tab_sub_area{
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tab_sub_area a{
  padding: 15px 10px 15px 30px;
  width: 32.333%;
  color: rgba(255,255,255,1.00);
  text-align: left;
  background-color: rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  font-size: 90%;
  line-height: 150%;
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
}

.tab_sub_area a::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 4px;
  top: 1px;
  bottom: 2px;
  left: 10px;
  margin: auto;
  border-top: 2px solid rgba(255,255,255,1.00);
  border-left: 2px solid rgba(255,255,255,1.00);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(135deg);
}

.tab_content_item h2{
  padding-left: 5px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 105%;
  font-weight: 400;
  box-sizing: border-box;
}
	
.tab_title_area{
  padding: 13px 15px 13px 15px;
  margin-bottom: 20px;
  font-size: 105%;
  line-height: 175%;
  font-weight: 400;
  background: rgba(40, 120, 60, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border-radius: 5px;
}

.tab_content_box{
  margin-bottom: 10px;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  box-sizing: border-box;
}

.tab_content_box:last-child{
  margin-bottom: 30px;
}

.tab_title{
  width: 100%;
  padding: 20px 30px 20px 20px;
  display: flex;
  align-items: baseline;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}

.tab_title::before{
  position: absolute;
  content: "";
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  transition: 0.5s;
}

.tab_title::after{
  position: absolute;
  content: "";
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.5s;
}

.tab_title.open::after{
  display: none;
  transition: 0.5s;
}

.tab_title.open::before{
  position: absolute;
  content: "";
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: 0.5s;
}

.tab_title .title_icon{
  padding-right: 5px;
  font-size: 100%;
  font-weight: 500;
  box-sizing: border-box;
}

.tab_title .title_text{
  font-size: 90%;
  line-height: 150%;
  font-weight: 500;
}

.tab_text_area{
  display: none;
  padding: 0 30px 20px 20px;
  width: 100%;
  line-height: 150%;
  text-align: left;
  color: rgba(40, 120, 60, 1.00);
  position: relative;
  box-sizing: border-box;
}
	
.tab_text{
  display: flex;
  align-items: baseline;
  text-align: left;
}

.answer_icon{
  padding-right: 5px;
  font-size: 100%;
  font-weight: 500;
  box-sizing: border-box;
}
	
.answer_text{
  font-size: 90%;
  line-height: 150%;
  font-weight: 500;
}
	
	
/*-- お問い合わせ --*/

.tab_add_area{
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.tab_add_area .text_b{
  margin-bottom: 15px;
  font-size: 130%;
  line-height: 150%;
}

.tab_add_area .text_s{
  margin-bottom: 15px;
  font-size: 85%;
  line-height: 150%;
}

.tab_add_area .text_s:last-of-type{
  margin-bottom: 0px;
}

.tab_add_area div{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.tab_add_area .tel{
  margin-bottom: 15px;
  font-size: 195%;
  line-height: 150%;
  color: rgba(40, 120, 60, 1.00);
}

.tab_add_area .tel span{
  font-size: 70%;
  line-height: 150%;
}
	
.tab_add_area .mail{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 15px 15px 30px;
  font-size: 85%;
  text-decoration: none;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(40, 120, 60, 1.00);
  border: 1px solid rgba(40, 120, 60, 1.00);
  border-radius: 50px;
  box-sizing: border-box;
  background-image: url(../images/mail_icon_off.png);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-out;
}

.tab_add_area .mail:hover{
  color: rgba(40, 120, 60, 1.00);
  background: rgba(255, 255, 255, 1.00);
  background-image: url(../images/mail_icon_on.png);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 70px;
  border: 1px solid rgba(40, 120, 60, 1.00);
  transition: 0.25s ease-out;
}
	
}


@media screen and (max-width: 640px){
	
.tab_content_area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.tab_area {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.left_tab,
.right_tab {
  padding: 20px 5px 20px 5px;
  width: calc(100% - 54%);
  color: rgba(255,255,255,1.00);
  text-align: center;
  background-color: rgba(40, 120, 60, 1.00);
  font-size: 100%;
  line-height: 150%;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_tab {
  background-color: rgba(196, 17, 32, 1.00);
}


/*-- タブ内容 --*/

.content {
  display: none;
}

.content.show {
  display: block;
}

.left_content,
.right_content {
  padding: 30px 20px 30px 20px;
  width: 100%;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 10px;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.right_content {
  border: 2px solid rgba(196, 17, 32, 1.00);
}

.tab_sub_area{
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tab_sub_area a{
  margin-bottom: 10px;
  padding: 15px 10px 15px 25px;
  width: 49%;
  color: rgba(255,255,255,1.00);
  text-align: left;
  background-color: rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  font-size: 85%;
  line-height: 150%;
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
}

.tab_sub_area a::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 4px;
  top: 1px;
  bottom: 2px;
  left: 7px;
  margin: auto;
  border-top: 2px solid rgba(255,255,255,1.00);
  border-left: 2px solid rgba(255,255,255,1.00);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(135deg);
}

.tab_content_item h2{
  padding-left: 5px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 95%;
  font-weight: 400;
  box-sizing: border-box;
}
	
.tab_title_area{
  padding: 13px 15px 13px 15px;
  margin-bottom: 20px;
  font-size: 95%;
  line-height: 175%;
  font-weight: 400;
  background: rgba(40, 120, 60, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border-radius: 5px;
}

.tab_content_box{
  margin-bottom: 10px;
  border: 2px solid rgba(40, 120, 60, 1.00);
  border-radius: 5px;
  box-sizing: border-box;
}

.tab_content_box:last-child{
  margin-bottom: 30px;
}

.tab_title{
  width: 100%;
  padding: 20px 25px 20px 15px;
  display: flex;
  align-items: baseline;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}

.tab_title::before{
  position: absolute;
  content: "";
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  transition: 0.5s;
}

.tab_title::after{
  position: absolute;
  content: "";
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.5s;
}

.tab_title.open::after{
  display: none;
  transition: 0.5s;
}

.tab_title.open::before{
  position: absolute;
  content: "";
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  border-radius: 5px;
  background: rgba(40, 120, 60, 1.00);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: 0.5s;
}

.tab_title .title_icon{
  padding-right: 5px;
  font-size: 90%;
  font-weight: 500;
  box-sizing: border-box;
}

.tab_title .title_text{
  font-size: 85%;
  line-height: 150%;
  font-weight: 500;
}

.tab_text_area{
  display: none;
  padding: 0 25px 20px 15px;
  width: 100%;
  line-height: 150%;
  text-align: left;
  color: rgba(40, 120, 60, 1.00);
  position: relative;
  box-sizing: border-box;
}
	
.tab_text{
  display: flex;
  align-items: baseline;
  text-align: left;
}

.answer_icon{
  padding-right: 5px;
  font-size: 90%;
  font-weight: 500;
  box-sizing: border-box;
}
	
.answer_text{
  font-size: 85%;
  line-height: 150%;
  font-weight: 500;
}
	
	
/*-- お問い合わせ --*/

.tab_add_area{
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tab_add_area .text_b{
  margin-bottom: 15px;
  font-size: 120%;
  line-height: 150%;
}

.tab_add_area .text_s{
  margin-bottom: 15px;
  font-size: 80%;
  line-height: 150%;
}

.tab_add_area .text_s:last-of-type{
  margin-bottom: 0px;
}

.tab_add_area div{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.tab_add_area .tel{
  margin-bottom: 15px;
  font-size: 180%;
  line-height: 150%;
  color: rgba(40, 120, 60, 1.00);
}

.tab_add_area .tel span{
  font-size: 70%;
  line-height: 150%;
}
	
.tab_add_area .mail{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 15px 12px 30px;
  font-size: 75%;
  text-decoration: none;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(40, 120, 60, 1.00);
  border: 1px solid rgba(40, 120, 60, 1.00);
  border-radius: 50px;
  box-sizing: border-box;
  background-image: url(../images/mail_icon_off.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-out;
}

.tab_add_area .mail:hover{
  color: rgba(40, 120, 60, 1.00);
  background: rgba(255, 255, 255, 1.00);
  background-image: url(../images/mail_icon_on.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 80px;
  border: 1px solid rgba(40, 120, 60, 1.00);
  transition: 0.25s ease-out;
}
	
}


@media screen and (max-width: 640px){
	
.tab_add_area .mail{
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 15px 12px 30px;
  font-size: 75%;
  text-decoration: none;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(40, 120, 60, 1.00);
  border: 1px solid rgba(40, 120, 60, 1.00);
  border-radius: 50px;
  box-sizing: border-box;
  background-image: url(../images/mail_icon_off.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-out;
}

.tab_add_area .mail:hover{
  color: rgba(40, 120, 60, 1.00);
  background: rgba(255, 255, 255, 1.00);
  background-image: url(../images/mail_icon_on.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 53px;
  border: 1px solid rgba(40, 120, 60, 1.00);
  transition: 0.25s ease-out;
}
	
}