/* ▼font-sub */
.font-sub {
    font-family: 'Noto Serif JP','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

/*
    title
--------------------*/
/* ▼c_ttl */
.c_ttl {
    text-align: center;
    font-family: 'Noto Serif JP','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
@media screen and (min-width: 768px) {
    .c_ttl {
        margin-bottom: 35px;
        font-size: 3.6rem;
    }
}
@media screen and (max-width: 767px) {
    .c_ttl {
        margin-bottom: 30px;
        font-size: 2.8rem;
    }
    .c_ttl br {
        display: block;
    }
}

/*
    button
--------------------*/
.c_btn {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: auto;
    color: #fff;
    background-color: #e7ae15;
    text-align: center;
    font-size: 1.8rem;
    border-radius: 5px;
    position: relative;
}
.c_btn::before {
    content: '';
    width: 79px;
    height: 50px;
    background: url(../images/common/btn_deco.png) no-repeat center / contain;
    position: absolute;
    pointer-events: none;
}
.c_btn::after {
    content: '';
    width: 0;
    height: 0;
    margin: auto;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    vertical-align: 2px;
    position: absolute;
    top: 0; bottom: 0;
}
@media screen and (min-width: 768px) {
    .c_btn {
        line-height: 65px;
    }
    .c_btn::before {
        top: -19px; right: -26px;
    }
    .c_btn::after {
        right: 68px;
    }
}
@media screen and (max-width: 767px) {
    .c_btn {
        line-height: 45px;
    }
    .c_btn::before {
        top: -19px; right: -26px;
    }
    .c_btn::after {
        right: 68px;
    }
}

/*
    table
--------------------*/
/* ▼c_table */
.c_table {
    width: 100%;
}
.c_table tr {
    background-color: #fffaec;
}
.c_table th {
    text-align: center;
}
.c_table td {
    background-color: #fff;
}
@media screen and (min-width: 768px) {
    .c_table {
        border-top: 1px dotted;
        border-bottom: 1px dotted;
    }
    .c_table tr {
        display: flex;
        align-items: center;
    }
    .c_table tr:not(:last-child) {
        margin-bottom: 2px;
    }
    .c_table th {
        display: block;
        width: 185px;
        vertical-align: middle;
        text-align: left;
        padding: 15px 30px;
    }
    .c_table td {
        display: block;
        width: 100%;
        align-self: stretch;
        padding: 15px 30px;
    }
}
@media screen and (max-width: 767px) {
    .c_table br {
        display: block;
    }
    .c_table tr {
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    .c_table tr:not(:last-child) {
        margin: 0 0 15px;
    }
    .c_table th,
    .c_table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
    }
    .c_table th {
        font-weight: bold;
        margin: 0 0 3px;
    }
}
/* ▼c_table type02 */
/*.c_table tr:nth-child(odd) {
    background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
    .c_table th {
        width: 325px;
        vertical-align: middle;
        text-align: right;
    }
    .c_table td {
        padding: 7px 0 7px 67px;
    }
}
@media screen and (max-width: 767px) {
    .c_table br {
        display: block;
    }
    .c_table tr {
        display: flex;
        flex-flow: column;
        align-items: center;
        padding: 15px;
    }
    .c_table th,
    .c_table td {
        display: block;
    }
    .c_table th {
        font-weight: bold;
    }
}*/

/*
block
--------------------*/
/* ▼block */

@media screen and (min-width: 768px) {
    [class*="_block"] {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    [class*=_block]:nth-of-type(odd) {
        flex-direction: row-reverse;
    }
    [class*="_block"]:not(:last-of-type) {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 767px) {
    [class*="_block"]:not(:last-of-type) {
        margin-bottom: 40px;
    }
    .block_img {
        margin: 0 0 15px;
    }
}
/* ▼card */
[class*="_card"] {
    border-radius: 20px;
}
/*
    breadcrumbs-type01
---------------------*/
.breadcrumbs .bread_wrap {
    justify-content: flex-start;
}
.breadcrumbs li {
    position: relative;
}
.breadcrumbs li:not(:last-child)::before {
    content: ' ';
    display: block;
    border-top: 2px solid #4a261e;
    border-right: 2px solid #4a261e;
    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: #4a261e;
    text-decoration: underline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (min-width: 768px) {
    .breadcrumbs {
        padding: 4px 0;
    }
    .breadcrumbs .bread_wrap {
        flex-direction: row;
        width: 1080px;
        margin: 0 auto;
        padding: 4px 0;
    }
    .breadcrumbs li {
        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 {
        /*width: calc(100% - 40px);*/
        max-width: unset;
        margin: 0 auto;
        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;
    }
}
/*
    breadcrumbs-type02
---------------------*/
/*.breadcrumbs .bread_wrap {
    justify-content: flex-start;
}
.breadcrumbs li:not(:last-child) {
    background: #e7ae15;
    color: #fff;
    position: relative;
}
.breadcrumbs li:first-child {
    border-radius: 10px 0 0 10px;
}
.breadcrumbs li:not(:last-child) {
    margin: 0 3px 0 0;
}
.breadcrumbs li:not(:first-child) a {
    padding: 5px 10px 5px 25px;
}
.breadcrumbs li:last-child {
    display: block;
    padding: 5px 15px 5px 25px;
    border-radius: 0 10px 10px 0;
}
.breadcrumbs li:nth-child(3) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;

}
.breadcrumbs li:not(:last-child)::before {
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 0 17px 15px;
    border-color: transparent transparent transparent #e7ae15;
    position: absolute;
    top: 0; left: 100%;
    z-index: 10;
}
.breadcrumbs li:not(:last-child)::after {
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 0 17px 15px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0; left: calc(100% + 3px);
    z-index: 9;
}
.breadcrumbs li,
.breadcrumbs a {
    font-size: 1.2rem;
}
.breadcrumbs a {
    padding: 5px 20px;
    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 a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
  .breadcrumbs li:not(:last-child) a {
      text-align: center;
      padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
    .breadcrumbs {
        padding: 7px 0;
    }
    body:not(#top) .breadcrumbs .bread_wrap {
        flex-direction: row;
        width: calc(100% - 20px);
        padding: 4px 0;
    }
    .breadcrumbs a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
  .breadcrumbs li:not(:last-child) a {
      text-align: center;
      padding-right: 10px;
  }
}*/
/*
news/blog
--------------------*/
.news {
    background: #f3fae7 url(../images/top/access_bg.png) no-repeat bottom / 100% auto;
}
.news_post .c_head {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    padding: 10px 20px;
    background-color: #eee;
    line-height: 1.5;
}
.news_post .c_ofi {
    padding-top: 100%;
}
.post_cnt {
    line-height: 1.5;
}
.news_post a {
    transition: all .3s;
}
.news_post a:hover {
    opacity: .8;
}
.news_post a:hover .c_ofi img {
    opacity: 1;
    transform: scale(1.1);
}
.news_time {
    text-align: right;
    margin: 5px 0 0;
}
.news_body {
    border-top: 1px solid #e7ae15;
    border-bottom: 1px solid #e7ae15;
    line-height: 1.5;
}
@media screen and (min-width: 768px) {
    .news_post:not(:last-child) {
        margin: 0 0 50px;
    }
    .post_cnt {
        width: 860px;
    }
    .post_cnt .post_txt {
        padding: 20px;
    }
    .post_img {
        width: 200px;
    }
    .news_body {
        min-height: 200px;
        margin: 20px 0 0;
        padding: 40px 10px;
    }
}
@media screen and (max-width: 767px) {
    .news_post {
        flex-flow: column-reverse;
    }
    .news_post:not(:last-child) {
        margin: 0 0 30px;
    }
    .news_post .c_ofi {
        padding-top: 60%;
    }
    .news_post .c_head {
        font-size: 1.6rem;
        padding: 10px;
    }
    .post_cnt {
        width: 100%;
    }
    .post_img {
        width: 100%;
    }
    .detail_content .c_head {
        font-size: 2rem;
    }
    .news_body {
        margin: 15px 0 0;
        padding: 20px 10px;
    }
}
/*
contact
--------------------*/
/* ▼▼▼contact base▼▼▼ */
.contact-form-table select,
.contact-form-table textarea,
.contact-form-table input[type='tel'],
.contact-form-table input[type='fax'],
.contact-form-table input[type='num'],
.contact-form-table input[type='text'],
.contact-form-table 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-form-table textarea {
    resize: none;
}
/* ▼form */
.contact-form-table tr {
    transition: all .3s;
}
.contact-form-table td a {
    display: inline-block;
}
/* ▼mark */
.required-mark {
    width: 50px;
    background-color: #ea3623;
    color: #fff;
    font-size: 12px;
    text-align: center;
    float: right;
}
/* ▼button */
input[type='button']:hover,
input[type='submit']:hover {
    opacity: .8;
    cursor: pointer;
}
input[type='button'][disabled],
input[type='submit'][disabled] {
    opacity: .7;
    pointer-events: none;
    background-color: #ddd;
}
/* ▼checkbox&radio */
.contact-form-table input[type=radio],
.contact-form-table input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
.contact-form-table input[type=radio] + label,
.contact-form-table input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 30px;
    cursor: pointer;
}
.contact-form-table input[type=radio],
.contact-form-table input[type=checkbox] {
    display: none;
    margin: 0;
}
.contact-form-table input[type=radio] + label,
.contact-form-table input[type=checkbox] + label {
    margin-bottom: 5px;
    padding: 0 0 0 24px;
}
.contact-form-table input[type=radio] + label::before,
.contact-form-table 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-form-table input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
}
.contact-form-table input[type=checkbox] + label::before {
    border: 2px solid #ccc;
}
.contact-form-table input[type=radio]:checked + label::after,
.contact-form-table input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
.contact-form-table input[type=radio]:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #e74c3c;
    border-radius: 8px;
}
.contact-form-table 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;
}
/* ▼error */
.error-text {
    font-size: 1.4rem;
    color: #d93732;
    margin: 0 0 5px;
}
/* ▼table */
.contact-form-table input[name="items[address]"] {
    margin-top: 8px;
}
.contact-form-table {
    width: 100%;
    margin-bottom: 50px;
}
/*recaptcha*/
.contact-recaptcha {
    overflow: hidden;
    margin-bottom: 30px;
}
.g-recaptcha > div {
    margin: auto;
}
/*
  pagenation
--------------------*/
/*▼pagenation*/
.pagenation {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
}
.pagenation li {
    width: 30px;
    line-height: 30px;
    color: #e7ae15;
    background-color: #fef7ef;
    font-size: 1.6rem;
    border: 1px #e7ae15 solid;
}
.pagenation a,
.pagenation span {
    display: block;
    text-align: center;
}
.pagenation li:not(.current):hover {
    opacity: .8;
}
.pagenation span {
    padding: 0 10px;
}
.pagenation li:not(:last-child) {
    margin: 0 10px 0 0;
}
.pagenation .current {
    color: #fff;
    background-color: #e7ae15;
}
/*▼page_btn*/
.page_btn {
  max-width: 320px;
  margin: auto;
  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 #e7ae15;
    border-bottom: 2px solid #e7ae15;
    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 {
  width: 142px;
  margin: auto;
  text-align: center;
  position: absolute;
  top: -5px; left: 0; right: 0;
}
.center a {
  color: #fff;
  background-color: #e7ae15;
  border-radius: 5px;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .page_btn {
    margin: 50px auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .page_btn {
    margin: 30px auto;
  }
}
/*
site_map
--------------------*/
#site .site li {
    width: 100%;
    border-bottom: 1px solid #000;
    transition: .2s all;
}
#site .site li a {
    line-height: 2;
}
#site .site li a:before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 10px 0 0;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
}
#site .site li a:hover {
    padding-left: 20px;
}
@media screen and (min-width: 768px) {
    #site .site {
        padding: 100px 0;
    }
    .site_wrap {
        flex-flow: column wrap;
        /* height: 350px; */
        justify-content: flex-start;
    }
    #site .site li {
        width: 100%;
    }
    #site .site li a {
        font-size: 1.8rem;
        padding: 10px;
    }
}
@media screen and (max-width: 767px) {
    #site .site {
        padding: 50px 0;
    }
    #site .site li a {
        max-width: 400px;
        margin: 0 auto;
        font-size: 1.6rem;
        padding: 2vh 10px;
    }
}
/*
privacy
--------------------*/
#privacy .privacy_cnt {
    padding: 0;
}
#privacy .privacy_cnt p:not(:last-of-type) {
    margin: 0 0 15px;
}
#privacy .privacy .objective_list {
    margin: 15px 0 0;
    list-style-type: square;
    list-style-position: inside;
}
#privacy .privacy .c_head {
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
    #privacy .privacy .c_head {
        margin: 0 0 30px;
    }
    #privacy .privacy_cnt:not(:last-child) {
        margin: 0 0 50px;
    }
}
@media screen and (max-width: 767px) {
    #privacy .privacy .c_head {
        margin: 0 0 15px;
    }
    #privacy .privacy_cnt:not(:last-child) {
        margin: 0 0 30px;
    }
}