/*question*/
.question {
  background-color: #f4f6f6;
}
.question_list {
  display: flex;
  flex-flow: column wrap;
  align-content: center;
  font-size: 2rem;
}
.question_list li {
  display: flex;
}
.question_list li:before {
  content: url(../images/common/deco/check01.png);
  display: inline-block;
  margin: 0 10px 0 0;
}
@media screen and (min-width: 768px) {
  .question {
    padding: 60px 0;
  }
  .question_list {
    height: 240px;
  }
  .question_list li:before {
    transform: translateY(2px);
  }
  .question_list li:nth-child(n+7) {
    margin: 0 0 0 34px;
  }
}
@media screen and (max-width: 767px) {
  .question {
    padding: 30px 0;
  }
  .question .c_ttl {
    text-align: left;
  }
  .question_list {
    font-size: 1.6rem;
  }
  .question_list li:before {
    transform: translateY(3px);
  }
}
/*aside*/
.aside_list {
  font-family: 'NotoSerif', serif;
  display: flex;
  justify-content: space-between;
  font-size: 3rem;
}
.aside_list li:nth-child(1) a {
  background-image: url(../images/common/aside_img01.jpg);
}
.aside_list li:nth-child(2) a {
  background-image: url(../images/common/aside_img02.jpg);
}
.aside_list a {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: no-repeat center / cover;
  transition: all .2s;
}
.aside_list a:hover {
  opacity: 1;
  transform: scale(1.02);
}
.aside_list a:hover span:after {
  transform: translateX(5px);
}
.aside_list span {
  display: inline-block;
  padding: 0 15px;
  background-color: #62b51f;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .aside_wrap {
    padding: 125px 0;
  }
  .aside_list a {
    width: 522px;
    height: 185px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .aside_wrap {
    padding: 30px 0;
  }
  .aside_list {
    flex-flow: column;
    font-size: 1.8rem;
  }
  .aside_list li:not(:last-child) {
    margin: 0 0 10px;
  }
  .aside_list a {
    height: 140px;
    padding: 10px;
  }
}
/* ▼case */
.case_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .case_list li {
    width: 350px;
  }
  .case_list li:not(:nth-child(3)) {
    margin: 0 15px 0 0;
  }
  .case_list li:nth-child(n+4) {
    margin-top: 20px;
  }
  .case_list a:hover img {
    transform: scale(1.05);
  }
  .case_list .c_ofi {
    padding-top: 85.7142%;
    margin: 0 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .case_list {
    justify-content: space-between;
  }
  .case_list li {
    width: 48%;
  }
  .case_list li:nth-child(n+3) {
    margin-top: 20px;
  }
  .case_list a:hover img {
    transform: scale(1.05);
  }
  .case_list .c_ofi {
    padding-top: 85.7142%;
    margin: 0 0 16px;
  }
}
/*list*/
.c_list {
  display: flex;
  flex-wrap: wrap;
}
.c_list li {
  border-radius: 6px;
  overflow: hidden;
}
.c_list figcaption {
  font-family: 'NotoSerif', serif;
  background-color: #fff;
  font-size: 3rem;
  text-align: center;
}
.c_list ~ p {
  line-height: 1.33;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c_list {
    margin: 75px 0 60px;
  }
  .c_list ~ p {
    text-align: center;
  }
  .c_list li {
    width: 345px;
  }
  .c_list li:not(:nth-child(3n)) {
    margin-right: 22px;
  }
  .c_list li:nth-child(n+4) {
    margin-top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .c_list {
    margin: 30px 0;
    justify-content: space-between;
  }
  .c_list + p {
    line-height: 1.5;
  }
  .c_list li {
    width: 48%;
  }
  .c_list figcaption {
    font-size: 1.6rem;
  }
  .c_list li:nth-child(n+3) {
    margin-top: 22px;
  }
}
/*
  title
--------------------*/
/* ▼c_ttl */
.c_ttl {
  font-size: 166.67%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c_ttl {
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .c_ttl {
    margin: 0 0 18px;
  }
}
/*
  button
--------------------*/
/* ▼c_btn */
[class*="c_btn"]:after {
  content: '';
  display: inline-block;
  margin: 0 0 0 9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent;
  border-left-color: initial;
  vertical-align: 1px;
  transition: all .3s;
}
[class*="c_btn"]:hover:after {
  transform: translateX(5px);
}
.c_btn_fix {
  width: 289px;
  padding: 11px 0;
  margin: auto;
  color: #fff;
  background-color: #62b51f;
  text-align: center;
  font-size: 150%;
}
.more_btn {
  background-color: #62b51f;
  color: #fff;
  text-align: center;
  width: 250px;
  margin: auto;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 133.33%;
}
.more_btn:hover {
  opacity: .7;
}

/*-------------etc--------------*/

/*
    breadcrumbs
---------------------*/
.breadcrumbs {
	background-color: #fff;
    color: #000;
}
.breadcrumbs .bread_wrap {
    justify-content: flex-start;
}
.breadcrumbs li {
    position: relative;
}
.breadcrumbs li:not(:last-child)::before {
    content: ' ';
    display: block;
    border-top: 2px solid #484b65;
    border-right: 2px solid #484b65;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
}
.breadcrumbs li:last-child {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumbs li,
.breadcrumbs a {
    font-size: 1.2rem;
}
.breadcrumbs a {
    color: #484b65;
    text-decoration: underline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (min-width: 768px) {
	.breadcrumbs {
	    padding: 4px 0;
	}
	body:not(#top) .breadcrumbs .bread_wrap {
	    flex-direction: row;
	    padding: 4px 0;
	}
	.breadcrumbs li {
	    width: 105px;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    white-space: nowrap;
	}
	.breadcrumbs li:not(:last-child) {
	    padding: 0 20px 0 0;
	}
	.breadcrumbs li:not(:last-child)::before {
	    width: 7px;
	    height: 7px;
	    right: 8px;
	}
	.breadcrumbs a {
	    overflow: hidden;
	    text-overflow: ellipsis;
	    white-space: nowrap;
	}
  .breadcrumbs li:not(:last-child) a {
      text-align: center;
  }
}
@media screen and (max-width: 767px) {
	.breadcrumbs {
	    padding: 7px 0;
	}
	.bread_wrap {
		max-width: unset;
		flex-direction: row;
	}
	.breadcrumbs li:not(:last-child) {
	    padding: 0 30px 0 0;
      overflow: hidden;
      text-overflow: ellipsis;
	}
	.breadcrumbs li:not(:last-child)::before {
	    width: 8px;
	    height: 8px;
	    right: 13px;
	}
	.breadcrumbs li:last-child {
		flex: 1;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}
/*
  contact
--------------------*/
#contact form {
    font-size: 1.6rem;
}
#contact table{
    width: 100%;
    margin-bottom: 50px;
}
#contact tr {
    border-bottom: 1px solid #959595;
}
#contact td,
#contact th{
    vertical-align: middle;
    font-weight: 400;
}
#contact th{
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: left;
}
#contact td {
    background-color: #fff;
}
#contact td a {
    display: inline;
    text-decoration: underline;
}
[class*="mark"] {
    width: 50px;
    background-color: #ea3623;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    float: right;
}
#contact td div:not(:last-child) {
    margin: 0 0 10px;
}
main .contact-recaptcha-wrap {
    padding: 0;
}
#contact .contact-submits-wrap_fix {
    text-align: center;
}
#contact select,
#contact textarea,
#contact input[type='tel'],
#contact input[type='fax'],
#contact input[type='num'],
#contact input[type='text'],
#contact input[type='email'] {
    padding: 4px;
    font-size: 16px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    box-sizing: border-box;
}
#contact input[type='number'] {
  max-width: 30vw;
}
.input_big {
    width: 100%;
}
#contact textarea {
    resize: none;
}

/*--------▼button--------*/
#contact input[type='button'],
#contact input[type='submit'] {
    margin: 0 4px;
    padding: 1em 2em;
    font-size: 16px;
    border: none;
    border-radius: 2px;
    -webkit-appearance: none;
    transition: all 0.4s ease;
    background-color: #ddd;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover {
    opacity: .8;
    cursor: pointer;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
    opacity: .7;
    pointer-events: none;
    background-color: #ddd;
}

/* checkbox&radio
-------------------------------------------------- */
#contact input[type=radio],
#contact input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 30px;
    cursor: pointer;
}
#contact input[type=radio],
#contact input[type=checkbox] {
    display: none;
    margin: 0;
}
 #contact input[type=radio] + label,
 #contact input[type=checkbox] + label {
    margin-bottom: 5px;
    padding: 0 0 0 24px;
}
#contact input[type=radio] + label::before,
#contact input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #FFF;
}
#contact input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
}
#contact input[type=checkbox] + label::before {
    border: 2px solid #ccc;
}
#contact input[type=radio]:checked + label::after,
#contact input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
#contact input[type=radio]:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #e74c3c;
    border-radius: 8px;
}
#contact input[type=checkbox]:checked + label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #e74c3c;
    border-bottom: 3px solid #e74c3c;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.contact_submits {
    line-height: 1.5;
    text-align: center;
}
/* table
-------------------------------------------------- */
#contact input[name="items[address]"] {
    margin-top: 8px;
}
/* error */
.error-text {
    font-size: 1.4rem;
    color: #d93732;
    margin: 0 0 5px;
}
/* custom */
@media screen and (min-width: 768px) {
  #contact tr {
      border-top: 1px solid #959595;
  }
  #contact td,
  #contact th {
      padding: 30px;
  }
  [class*="mark"] {
      padding: 2px;
      border-radius: 10px;
  }
  #contact .contact-recaptcha-wrap {
      margin-bottom: 30px;
      overflow: hidden;
  }
  .g-recaptcha > div {
    margin: auto;
  }
  .submits_btn_wrap {
      width: 400px;
  }
  /*check_area*/
  .check_area th {
      width: 30%;
  }
}
@media screen and (max-width: 767px) {
  #contact tr {
    border: none;
  }
  #contact th {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 24px;
      margin: 0 0 11px;
      padding: 15px 0 15px 5%;
  }
  #contact tr {
      margin: 0 0 20px;
      padding: 0 0 10px;
  }
  #contact .input_table tr:last-child {
      text-align: center;
  }
  [class*="mark"] {
      width: 20%;
      padding: 3px 0;
      margin: 0 0 0 auto;
  }
  #contact input[type='submit']:not(:last-child) {
      margin-bottom: 20px;
  }
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
      width: auto;
      display: block;
  }
  #contact .contact-recaptcha-wrap {
      width: 244px;
      margin-bottom: 30px;
  }
  .g-recaptcha {
      transform-origin: 0% 0%;
      transform: scale(0.8);
  }
  .contact_submits {
      text-align: left;
      font-size: 1.4rem;
  }
}
/*▼pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}
.pagenation li {
  font-size: 1.6rem;
  color: #fff;
  background-color: rgba(0,0,0,.75);
  border: 1px rgba(0,0,0,.75) solid;
}
.pagenation a {
  padding: 0 10px;
}
.pagenation a:hover {
  color: #000;
  background-color: #fff;
  opacity: 1;
}
.pagenation span {
  padding: 0 10px;
}
.pagenation li:not(:last-child) {
  margin: 0 10px 0 0;
}
.pagenation .current {
  color: #000;
  background-color: #fff;
  border: 1px rgba(0,0,0,.75) solid;
}
/*▼page_btn*/
.page_btn {
  display: flex;
  flex-flow: row;
  align-items: center;
  position: relative;
}
.page_btn li {
    max-width: 30vw;
}
.page_btn a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    max-width: 30vw;
}
.page_btn li:not(.center) a:after {
    content: ' ';
    width: 10px;
    height: 10px;
    margin: auto;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    top: 0; bottom: 0;
    transition: .3s all;
}
.prev {
  margin: 0 auto 0 0;
}
.prev a {
    padding: 0 0 0 20px;
}
.prev a:after {
    left: 8px;
    transform: rotate(45deg);
}
.prev a:hover:after {
  left: 3px;
}
.next {
  margin: 0 0 0 auto;
}
.next a {
    padding: 0 20px 0 0;
}
.next a:after {
    right: 8px;
    transform: rotate(225deg);
}
.next a:hover:after {
  right: 3px;
}
.center {
  margin: auto;
  position: absolute;
  top: -6px; left: 0; right: 0;
}
#news .more_btn {
  font-size: 100%;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .page_btn {
    margin-top: 50px;
  }
  .center {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .page_btn {
    margin-top: 30px;
  }
}
/*
  site_map
--------------------*/
#site .site_wrap li {
  width: 100%;
  border-bottom: 1px solid #959595;
    position: relative;
    transition: .2s all;
}
#site .site_wrap li a:hover {
  background-color: rgba(0,0,0,.2);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .site_wrap {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    height: 500px;
  }
  #site .site_wrap li {
    width: 48%;
    font-size: 1.8rem;
  }
  #site .site_wrap li a {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  #site .site_wrap li {
    max-width: 400px;
    margin: 0 auto;
    font-size: 1.6rem;
  }
  #site .site_wrap li a {
    padding: 2vh 10px;
  }
}
/*
  privacy
--------------------*/
.privacy_cnt {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .privacy_wrap {
    padding: 90px 0;
  }
  .privacy_cnt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .privacy_wrap {
    padding: 40px 0;
  }
  .privacy_cnt {
    margin-bottom: 20px;
  }
}