@charset "UTF-8";

/************************************************************
INDEX
************************************************************/

.notes_list {
  margin-top: 10px;
  padding-left: 2.2em;
}

.notes_list > li {
  list-style-image: url(/assets/img/common/list_mark_disc.png);
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
}


.notes_list li a {
  color: #e47e24;
}

.notes_list > li ul {
  margin-top: 10px;
  padding-left: 1em;
}

.notes_list > li ul li {
  list-style-image: none;
  list-style-type: disc;
}

.notes_list > li ol {
  margin-top: 10px;
  padding-left: 1.2em;
}

.notes_list > li ol li {
  list-style-image: none;
  list-style-type: decimal;
}

.notes_list2 {
  margin-top: 10px;
  padding-left: 2.2em;
}

.notes_list2 > li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
}

.notes_list2 li a {
  color: #e47e24;
}

.column {
  padding: 10px;
  border: 1px solid #cccccc;
  background: #efefef;
}
.contact_btn{
  max-width: 333px;
  width: 40%;
  position: relative;
  margin-left: auto;
}
.contact_btn a{
  display: block;
  padding: 30px 0;
  text-align: center;
  border: 2px solid #f4a452;
  border-radius: 5px 0 5px 0;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  -webkit-transition: .2s;
  transition: .2s;
}
.contact_btn a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 19px 19px 0;
  border-color: transparent #f4a352 transparent transparent;
  top: 0;
  right: 0;
}
.contact_btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 0 0 19px;
  border-color: transparent transparent transparent #f4a352;
  bottom: 0;
  left: 0;
}
.contact_btn a:hover {
  background-color: #f4a452;
  color: #fff;
}
@media screen and (max-width: 480px){
  .notes_list > li{
    font-size: 16px;
  }
  .form_input input[type="text"]{
    width: 86%!important;
    margin-bottom: 10px;
  }
  .contact_btn{
    max-width: 240px;
    margin: 20px auto 0;
    width: 60%;
  }
  .contact_btn a{
    padding: 20px 0;
    font-size: 1.4rem;
  }
}

/************************************************************
FORM
************************************************************/

.form_block {
  border-top: 1px dotted #EAEAEA;
  padding: 10px 0;
  font-size: 0;
  font-weight:0;
}

.form_item {
  display: inline-block;
	*display:inline;
	*zoom:1;
  width: 20%;
  font-size: 18px;
  font-weight:1.4;
  vertical-align: middle;
}

.form_required {
  display: inline-block;
	*display:inline;
	*zoom:1;
  width: 5%;
  color: #ff0000;
  font-size: 18px;
  font-weight:1.4;
  vertical-align: middle;
}

.form_input {
  display: inline-block;
	*display:inline;
	*zoom:1;
  width: 75%;
  font-size: 18px;
  font-weight:1.4;
  vertical-align: middle;
}

.form_notes {
  font-size: 14px;
  font-weight:1.4;
}

.form_input input[type="text"] {
  padding: 5px;
  height: 42px;
  border: 1px solid #999999;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.4;
}

.form_input select {
  padding: 0 35px 0 5px;
  height: 30px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background:url('/assets/img/common/dropdown.gif') no-repeat right center;
  font-size: 18px;
  line-height: 1.4;
}

.form_input textarea {
  padding: 5px;
  border: 1px solid #999999;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.4;
}

.btn_send {
  margin-top: 30px;
  padding: 30px 0 25px;
  border-top: none;
  border-bottom: none;
  background: #e6f1ed;
  text-align: center;
}

.btn_send li.reset {
  display: inline-block;
	*display:inline;
	*zoom:1;
  margin: 0 10px 5px 0;
  width: 140px;
  height: 36px;
  border-radius: 18px;
  background: #999999;
  font-size: 16px;
  font-weight: bold;
  line-height: 36px;
  vertical-align: middle;
}

.btn_send li.confirm {
  display: inline-block;
	*display:inline;
	*zoom:1;
  margin: 0 10px 5px 0;
  width: 140px;
  height: 36px;
  border-radius: 18px;
  background: #e47e24;
  font-size: 16px;
  font-weight: bold;
  line-height: 36px;
  vertical-align: middle;
}

.btn_send li a {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
}

.btn_send li button {
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    cursor: pointer;
}

.btn_send li a .fa {
  color: #ffffff;
}

.btn_send li button .fa {
    color: #ffffff;
}

.error_msg {
  padding: 2px;
  color: #ffffff;
  background: #ff0000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.btn_return {
  margin-top: 30px;
  padding: 30px 0 25px;
  border-top: none;
  border-bottom: none;
  background: #e6f1ed;
  text-align: center;
}

.btn_return li {
  display: inline-block;
	*display:inline;
	*zoom:1;
  margin: 0 10px 5px 0;
  height: 36px;
  border-radius: 18px;
  background: #e47e24;
  font-size: 16px;
  font-weight: bold;
  line-height: 36px;
  vertical-align: middle;
}

.btn_return li a {
  display: block;
  padding: 0 15px 0 ;
  width: 100%
  height: 100%;
  color: #ffffff;
}

.btn_return li a .fa {
  color: #ffffff;
}

.centered {
  display: inline-block;
	*display:inline;
	*zoom:1;
  width:2em;
  text-align:center;
}


/* ---------------TB/SP */

@media screen and (max-width: 740px) {

.form_item {
  margin-right: 10px;
  width: auto;
}

.form_required {
  width: auto;
}

.form_input {
  display: block;
  width: 100%;
}

.form_input select {
  max-width: 100%;
}

}

@media screen and (max-width: 640px) {

.dispray_pc {
  display: none;
}

.dispray_sp {
  display: block;
}
.shigeru01 {
  display: none;
}
.shigeru02 {
  display: none;
}
.shigeru03 {
  display: none;
}
}

/************************************************************
COMPANY
************************************************************/
.company-contact-btn{
  display: inline-block;
  margin: 5px 0;
}
.company-contact-btn:hover{
  opacity: .8;
}

/************************************************************
OTHER
************************************************************/
.block.other {
  width: 100%;
  max-width: 100%;
  margin-left:0;
  margin-right: 0;
}
.other-box {
  display: inline-block;
  width: 24%;
  margin-right: 0.9%;
  font-size: 16px;
  vertical-align: top;
}
.other-box.mr0 {
  margin: 0;
}
.other-box h2 {
  font-size: 18px;
  font-weight: bold;
  color: #004A30;
  line-height: 1.4;
  margin-bottom: 8px;
}
.other-box a {
  position: relative;
  display: flex;
  padding: 8px;
  background: #fff;
  border-radius: 0 20px 0 0;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
  align-items: center;
  transition: 0.2s;
  height: 196px;
}
.other-box a:hover {
  background: #1d4a30;
}
.other-box .other-img {
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.other-box .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 869px){
  .other-box {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .other-box a {
    height: 190px;
  }
  .other-box:nth-child(3),
  .other-box:nth-child(5) {
    margin-right:0;
  }
  .other-box .other-img {
    height: 100%;
    text-align: center;
  }
  .other-box img {
    object-fit: contain;
    max-height: 100%;
  }
}

@media screen and (max-width: 767px){
  .other-box, .other-box:nth-child(3),.other-box:nth-child(5) {
    width: 100%;
    margin: 0 0 20px;
  }
  .other-box a {
    height: 140px;
  }
}
/************************************************************
basic
************************************************************/
.basic p {
  margin-bottom: 1em;
  letter-spacing: .005em;
}
.basic_sub_title {
  font-size: 16px;
  color: #006948;
  font-weight: 600;
  margin-bottom: 5px;
}
.basic .col p.note, .note {
  font-size: 80%;
  margin: 10px 0;
}
.note.mark {
  position: relative;
  display: flex;
}
.note.mark:before {
  content: '※';
  color: #f00;
}

section .block {
	margin: 30px auto 40px;
	max-width: 1050px;
	width: 98%;
  font-size: 16px;
}
.block .block {
	width: 100%;
}
.block:last-of-type {
	margin-bottom: 0;
}
.block > .block {
	margin: 40px auto;
}
.block > .block:first-of-type {
	margin-top: 0;
}
p + .block:first-of-type,
dl + .block:first-of-type {
	margin-top: 20px !important;
}
.block > .block:last-of-type {
	margin-bottom: 0;
}
.block_mini {
	margin: 20px auto;
	max-width: 1050px;
}
.block.line {
	margin: 0;
	padding: 50px 5%;
	border-bottom: 1px solid #ccc;
}
.block.line:first-of-type {
	padding-top: 0;
}
.block.line:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.basic .block.image_block.center {
	text-align: center;
}
.basic .block.image_block.center img {
	max-width: 90%;
	margin: auto;
}
.basic_col_title {
  font-size: 19px;
  padding-bottom: 3px;
  border-bottom: 1px solid #bbb;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.box_block {
  border: 3px solid #ccc;
  padding: 2.5% 3%;
  background-color: #fff;
}
.box_block.bg_g {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.block .contact_btn {
  margin-left:0;
}

.dl_wrap dl {
	display: flex;
}
.dl_wrap dt {
	width: 25%;
	padding: 15px 15px;
	padding-right: 5%;
	border-bottom: 1px solid #ccc;
}
.dl_wrap dd {
	width: 75%;
	padding: 15px 15px;
	border-bottom: 1px solid #ccc;
}
.dl_wrap dd dl:first-of-type,
.dl_wrap.alternate dd dl:first-of-type,
.dl_wrap.dtbg_y dd dl:first-of-type,
.dl_wrap.dtbg_g dd dl:first-of-type {
	border-top: none;
}
.dl_wrap dd dl {
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}
.dl_wrap dd dl:first-of-type {
	padding-top: 0;
}
.dl_wrap dd dl:last-of-type {
	border-bottom: none;
}
.dl_wrap dd dt {
	margin-right: 20px;
}
.dl_wrap dd dd {
	padding: 0;
}
.dl_wrap dd dt,
.dl_wrap dd dd {
	width: auto;
}
.dl_wrap dl.ali_c {
	align-items: center;
}
.dl_wrap.dl_line dl {
	padding: 10px;
	border-bottom: 1px solid #ccc;
}
.dl_wrap.dl_line dl:first-of-type {
	padding-top: 0;
}
.dl_wrap.dl_line dt,
.dl_wrap.dl_line dd {
	padding: 0;
	border-bottom: none;
}

.basic .free_tel a {
  font-size: 24px;
  font-weight: 600;
  color: #006948 !important;
  line-height: 1.2;
}

@media screen and (max-width: 896px){
  .basic_col_title {
      font-size: 16px;
  }
}
@media screen and (max-width: 680px){
  .basic_col_title {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .basic .block > .block {
    margin: 8% auto;
  }
  .basic .block > .block:last-of-type {
    margin-bottom: 0;
  }
  .basic .free_tel a {
    font-size: 20px;
  }
  .dl_wrap dl {
    flex-direction: column;
    border-bottom: 1px solid #ccc;
  }
  .dl_wrap dt, .dl_wrap dd, .dl_wrap.simple dt, .dl_wrap.simple dd, .dl_wrap.dtwide dt, .dl_wrap.dtwide dd {
    width: 100%;
  }
}
@media screen and (max-width: 480px){
  .basic p,.dl_wrap dt, .dl_wrap dd {
    font-size: 13px;
  }
}

.column-box {
  display: flex;
  justify-content: space-between;
  margin: 30px auto 40px;
  max-width: 1050px;
  width: 98%;
  font-size: 16px;
}
.column-box .tx_l {
  text-align: center;
}
.column-box .tx_l a, 
.column-box .tx_l em {
  color: #006948;
}
.column-box .column {
  width: 48%;
  flex: 0 1 48%;
  align-self: stretch;
  border: none;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column .other-box {
  width: 100%;
  display: block;
  max-width:345px;
  margin: 10px auto 20px;
}
.column ul {
  margin-left: 40px;
  flex: 1;
}
@media screen and (max-width: 869px){
  .column .other-box a {
    height: auto;
  }
}


@media screen and (max-width: 680px){
  .column-box {
    display: block;
  } 
  .column-box .column {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* TEL */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
