@charset "UTF-8";

/* レイアウト関連 */
/* ----------------------------------------
ヘッダー header
------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(36,36,36,0.700717787114846) 50%, rgba(255,255,255,0) 100%);
    z-index: 999;
    padding: 1rem 2rem;
}
.header_logo {
    width: 100%;
    max-width: 200px;
    height: 50px;
}
/* .header_contents_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2rem;
}
.header_nav_list {
    display: flex;
    align-items: center;
}
.header_nav_item {
    position: relative;
}
.header_nav_item:not(:last-child) {
    margin-right: 1rem;
}
.header_nav_item::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #6B5251;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.header_nav_item:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}
.header_nav_item:hover .header_nav_link {
    opacity: 1;
}
.sub_menu {
    display: none;
    position: absolute;
    left: 0;
    border: 1px solid #191919;
    width: 250px;
}
.sub_menu_item {
    background: #fff;
    text-align: left;
}
.sub_menu_item:not(:last-child) {
    border-bottom: 1px solid #191919;
}
.sub_menu_link {
    padding: 1rem;
    display: block;
} */
/* @media (max-width: 1180px) { */
    .btn-gNav {
        display: block;
        position: fixed;
        top: 25px;
        right: 30px;
        width: 30px;
        height: 24px;
        z-index: 1000;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 400ms;
    }
    /* .btn-gNav::before {
        position: absolute;
        content: "MENU";
        bottom: -20px;
        right: 0;
        font-size: .8rem;
    } */
    .btn-gNav span {
        position: absolute;
        width: 100%;
        height: 4px;
        background: #fff;
        border-radius: 10px;
        transition: all 400ms;
    }
    .btn-gNav span:nth-child(1) {
        top: 0;
    }
    .btn-gNav span:nth-child(2) {
        top: 10px;
    }
    .btn-gNav span:nth-child(3) {
        top: 20px;
    }
    .header_nav_wrap {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0,0,0,.8);
        height: 100vh;
        width: 100%;
        padding: 2rem;
        transform: translateX(-100%);
        transition: .3s;
    }
    .header_nav_wrap.open {
        transform: translateX(0);
    }
    .header_nav {
        width: 70%;
        margin: 0 auto;
        padding: 10rem 0;
    }
    .header_nav_item {
        position: relative;
        padding-left: 15rem;
    }
    .header_nav_item.current {
        padding-left: 17rem;
    }
    .header_nav_item::before {
        position: absolute;
        content: "";
        width: 15px;
        height: 15px;
        background: #6B5251;
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(45deg);
    }
    .header_nav_item.current::after {
        position: absolute;
        content: "";
        width: 120px;
        height: 1px;
        background: #6B5251;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .header_nav_item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .header_nav_link {
        font-size: 3.5rem;
    }
    .btn-gNav.open span:nth-child(1) {
        background: #fff;
        top: 6px;
        transform: rotate(-45deg);
    }
    .btn-gNav.open span:nth-child(2),
    #hamburger .btn-gNav.open span:nth-child(3) {
        top: 6px;
        background :#fff;
        transform : rotate(45deg);
    }
    .header_contents_wrap {
        justify-content: center;
    }
/* } */
@media (max-width: 768px) {
    .btn-gNav {
        top: 30px;
    }
}
@media (max-width: 767px) {
    #header {
        padding: .5rem 4rem 1rem 2rem;
    }
    .header_logo {
        max-width: 150px;
    }
    .header_contents_wrap {
        justify-content: left;
    }
    .header_nav_wrap {
        transform: translateX(-100%);
        opacity: 1;
        padding: 1rem;
    }
    .btn-gNav {
        top: 17px;
        right: 20px;
    }
    .header_nav_link {
        font-size: 1.8rem;
    }
    .header_nav {
        width: 80%;
    }
}

/* ----------------------------------------
フッター footer
------------------------------------------*/
.footer {
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid #333;
}
.footer_logo_wrap {
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}
.footer_logo_wrap img {
    max-width: 300px;
}
.footer_info_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer_address_wrap p {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-style: normal;
}
.footer_address_wrap dl {
    display: flex;
    flex-wrap: wrap;
}
.footer_address_wrap dt {
    width: 5%;
    margin-bottom: 5px;
}
.footer_address_wrap dt img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.footer_address_wrap dd {
    width: 95%;
    font-style: normal;
    margin-bottom: 5px;
}
.footer_nav {
    margin-bottom: 50px;
}
.footer_nav_wrap {
    width: 25%;
}
.footer_nav_list {
    display: flex;
    flex-wrap: wrap;
}
.footer_nav_item {
    width: 50%;
    margin-bottom: 5px;
}
.footer_nav_link {
    font-size: 1.4rem;
    transition: .3s;
}
.footer_nav_link:hover {
    color: #6B5251;
    opacity: 1;
    transition: .3s;
}
.footer_navS_list {
    display: flex;
    flex-wrap: wrap;
}
.footer_navS_item:not(:last-child) {
    margin-right: 15px;
}
.footer_navS_link {
    font-size: 1.2rem;
    transition: .3s;
}
.footer_navS_link:hover {
    color: #6B5251;
    opacity: 1;
    transition: .3s;
}
.copyright_wrap {
    text-align: center;
}
.copyright {
    font-size: 1.2rem;
    color: #DFDFDF;
    font-size: 1rem;
    letter-spacing: .7px;
}

@media (max-width: 767px) {
    .footer_nav_wrap {
        width: 100%;
    }
    .footer_logo_wrap img {
        max-width: 200px;
    }
    .footer_address_wrap {
        margin-bottom: 20px;
    }
    .footer_address_wrap dt {
        width: 8%;
    }
    .footer_address_wrap dd {
        width: 92%;
    }
    .footer_navS_list {
        justify-content: flex-end;
    }
}

/* ----------------------------------------
メディア media関連
------------------------------------------*/
.media {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.media_img_wrap {
    width: 40%;
}
.media_content_wrap {
    width: 55%;
}
.media_content_head {
    margin-bottom: 10px;
}
.media_content_ttl {
    font-size: 3rem;
    font-weight: 900;
}
.floating_media {
    position: relative;
}
.floating_media:first-child {
    margin-top: 100px;
}
.floating_media:not(:last-child) {
    margin-bottom: 150px;
}
.floating_media:nth-child(3) {
    margin-bottom: 200px;
}
.floating_media:nth-child(6) {
    margin-bottom: 250px;
}
.floating_media_img_wrap {
    width: 70%;
    float: left;
}
.floating_media_content_wrap {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50%;
    padding: 4rem;
    color: #fff;
}
.floating_media:nth-child(even) .floating_media_img_wrap {
    float: right
}
.floating_media:nth-child(even) .floating_media_content_wrap {
    position: absolute;
    top: -20px;
    left: 0;
    width: 50%;
    padding: 4rem;
    color: #fff;
}
.floating_media:nth-child(odd) .floating_media_content_wrap {
    background: rgba(0, 113, 30, .7);
}
.floating_media:nth-child(even) .floating_media_content_wrap {
    background: rgba(142, 200, 61, .7);
}
.floating_media_content_head {
    margin-bottom: 20px;
}
.floating_media_content_ttl {
    font-weight: 900;
    /* text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff, 3px 3px 2px #fff, -1px 3px 2px #fff, 3px -1px 2px #fff, -1px -1px 2px #fff, 3px 1px 2px #fff, 0px 3px 2px #fff, -2px 0px 2px #fff, 0px -2px 2px #fff; */
    text-shadow: 1px 1px 1px #8EC83D;
}
.floating_media:nth-child(even) .floating_media_content_ttl {
    text-shadow: 1px 1px 1px #009D2A;
}
.floating_media_content_ttl_en {
    display: inline-block;
    padding-right: 2rem;
}
.floating_media_content_sub_ttl {
    margin-bottom: 20px;
}
.floating_media_btn_wrap {
    margin-top: 20px;
}
.floating_media:nth-child(odd) .floating_media_btn_wrap .more_btn {
    color: #8EC83D;
    background: #fff;
}
.floating_media:nth-child(even) .floating_media_btn_wrap .more_btn {
    color: #009D2A;
    background: #fff;
}

@media (max-width: 1180px) {
    .media_content_ttl {
        font-size: 2.4rem;
    }
}
@media (max-width: 1024px) {
    .floating_media:nth-child(odd) .floating_media_content_wrap, .floating_media:nth-child(even) .floating_media_content_wrap {
        width: 60%;
    }
    .floating_media:nth-child(3) {
        margin-bottom: 250px;
    }
    .floating_media:nth-child(6) {
        margin-bottom: 300px;
    }
}
@media (max-width: 820px) {
    .media_img_wrap {
        width: 100%;
        margin-bottom: 10px;
    }
    .media_content_wrap {
        width: 100%;
    }
    .media_content_ttl {
        font-size: 1.6rem;
    }
    .media_img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .floating_media_img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .floating_media:not(:last-child) {
        margin-bottom: 50px;
    }
    .floating_media_img_wrap,
    .floating_media:nth-child(even)
    .floating_media_img_wrap {
        width: 100%;
        float: unset;
    }
    .floating_media_content_wrap,
    .floating_media:nth-child(even) .floating_media_content_wrap {
        position: relative;
    }
    .floating_media:nth-child(odd) .floating_media_content_wrap,
    .floating_media:nth-child(even) .floating_media_content_wrap {
        width: 100%;
        top: 0;
    }
}
@media (max-width: 767px) {
    .media_img {
        height: 200px;
    }
    .media_content_head {
        margin-bottom: 10px;
    }
    .floating_media_content_wrap,
    .floating_media:nth-child(even) .floating_media_content_wrap {
        padding: 2rem;
    }
    .floating_media:first-child {
        margin-top: 0;
    }
    .floating_media_img {
        height: 200px;
    }
}

/* ----------------------------------------
カラム columnパーツ
------------------------------------------*/
.column_wrap {
    display: flex;
    flex-wrap: wrap;
}
.column2_item {
    border-radius: 3px;
    box-shadow: 3px 3px 5px #cecece;
    margin: 0 20px 50px 0;
    width: calc(100% / 2 - 20px);
    padding: 2rem;
}
.column2_content_ttl {
    font-size: 1.6rem;
    font-weight: 900;
}
.column2_img_wrap {
    margin-bottom: 10px;
}
.column2_item:nth-child(2n) {
    margin-right: 0;
}
.column3_item {
    border-radius: 3px;
    box-shadow: 3px 3px 5px #cecece;
    margin: 0 20px 50px 0;
    width: calc(100% / 3 - 20px);
    padding: 2rem;
}
.column3_item:nth-child(3n) {
    margin-right: 0;
}
.column4_item {
    border-radius: 3px;
    box-shadow: 3px 3px 5px #cecece;
    margin: 0 10px 50px 0;
    width: calc(100% / 4 - 10px);
    padding: 2rem;
}
.column4_item:nth-child(4n) {
    margin-right: 0;
}
.column5_item {
    border-radius: 3px;
    box-shadow: 3px 3px 5px #cecece;
    margin: 0 10px 50px 0;
    width: calc(100% / 5 - 10px);
    padding: 2rem;
}
.column5_item:nth-child(5n) {
    margin-right: 0;
}
@media (max-width: 820px) {
    .column3_item,
    .column4_item {
        width: calc(100% / 2 - 20px);
    }
    .column3_item:nth-child(2n),
    .column4_item:nth-child(2n) {
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .column2_content_ttl {
        font-size: 1.4rem;
    }
}
@media (max-width: 767px) {
    .column2_item,
    .column3_item,
    .column4_item {
        width: 100%;
        margin: 0 0 50px 0;
    }
    .column3_item:nth-child(2n),
    .column4_item:nth-child(2n) {
        margin-right: 0;
    }
    .column5_item {
        width: calc(100% / 3 - 10px);
    }
    .column5_item:nth-child(5n) {
        margin-right: 10px;
    }
    .column2_item {
        padding: 1rem;
    }
    .column2_content_ttl {
        font-size: 1.2rem;
    }
}

/* ----------------------------------------
サイドバー付き2columnレイアウト
------------------------------------------*/
.page_column2 {
    display: flex;
    justify-content: space-between;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}
.page_column2_main {
    width: 70%;
}
.page_column2_side {
    width: 25%;
}
.sidemenu_wrap {
    position: sticky;
    top: 80px;
    padding: 0 1rem 2rem;
}
.sidemenu_head {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 20px;
}
.sidemenu_head::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/page/square3.png) no-repeat center / contain;
    width: 50px;
    height: 15px;
}
.sidemenu_ttl {
    text-align: center;
}
.sidemenu_item {
    margin-bottom: 10px;
}
.sidemenu_link {
    width: 100%;
    background: #009D2A;
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 25px;
    display: inline-block;
    line-height: 1.3;
}
.sidemenu_bnr_item {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .page_column2 {
        flex-direction: column;
    }
    .page_column2_main {
        width: 100%;
    }
    .page_column2_side {
        width: 100%;
    }
}

/* ----------------------------------------
インナー inner
------------------------------------------*/
.innerS {
    margin: 0 auto;
    max-width: 984px;
    padding: 0 2rem;
}
.inner {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 2rem;
}
.innerL {
    margin: 0 auto;
    max-width: 1360px;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .innerS {
        width: 90%;
    }
}

/* ----------------------------------------
コンテンツ間調整
------------------------------------------*/
.section {
    padding: 4rem 0;
    position: relative;
}
.section_head {
    margin-bottom: 50px;
}
.section_head p {
    margin-top: 50px;
}
.content {
    margin-bottom: 20px;
}
.content:not(:last-child) {
    margin-bottom: 30px;
}
.content_head {
    margin-bottom: 20px;
}
.content div:not(:last-child),
.content p:not(:last-child) {
    margin-bottom: 20px;
}
.img_wrap {
    margin-bottom: 50px;
    text-align: center;
}
.img_wrap img {
    width: 80%;
}

@media (max-width: 767px) {
    .section_head {
        margin-bottom: 20px;
    }
}

/* 各種パーツ */
/* ----------------------------------------
タイトル　ttl
------------------------------------------*/
.ttl1 {
    font-size: 3rem;
    letter-spacing: 1px;
    padding-bottom: 10px;
    position: relative;
}
.ttl1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #6B5251;
}
.ttl1_sub {
    font-size: 1.4rem;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}
.ttl1_en {
    letter-spacing: 2px;
    color: #000;
    display: block;
    text-align: center;
}
.ttl2 {
    width: 100%;
    position: relative;
    background: #000;
    padding: 1rem;
    text-align: center;
    color: #fff;
}
.ttl2:after {
    border: solid transparent;
    content: '';
    position: absolute;
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 15px;
    border-right-width: 15px;
    margin-left: -15px;
    border-top-color:#000;
    top: 100%;
    left: 50%;
}
.ttl3 {
    font-size: 1.3rem;
    border-bottom: solid 3px #fff;
    position: relative;
    color: #fff;
}
.ttl3:after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: solid 3px #F0C3C3;
    bottom: -3px;
    width: 30%;
}
.ttl4 {
    font-size: 1.4rem;
    color: #000;
}
.ttl5 {
    font-size: 1.4rem;
    border-bottom: solid 2px #C9D3CA;
    position: relative;
    padding-bottom: 5px;
}
.ttl5:after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: solid 2px #000;
    bottom: -2px;
    width: 30%;
}
.numttl1 {
    font-family: Gothic A1;
    display: inline-block;
    padding: 0 .5rem;
}

@media (max-width: 1180px) {
    .numttl1 {
    }
}
@media (max-width: 1024px) {
    .numttl1 {
    }
}
@media (max-width: 820px) {
    .ttl1 {
        font-size: 1.6rem;
    }
    .ttl3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ttl5 {
        font-size: 1.2rem;
    }
}
@media (max-width: 767px) {
    .ttl1::before {
        top: -5px;
        width: 70px;
        height: 60px;
    }
    .ttl3 {
        font-size: 1rem;
    }
    .ttl4 {
        font-size: 1.2rem;
    }
    .ttl5 {
        font-size: 1rem;
    }
    .ttl1_sub {
        font-size: .9rem;
    }
}

/* ----------------------------------------
テキスト　txt
------------------------------------------*/
.txt1 {
    font-size: 2rem;
    font-weight: 900;
    color: #6B5251;
}
.txt2 {
    padding: 5px 20px;
    border: 1px solid #191919;
    display: inline-block;
}
.txt3 {
    font-weight: 900;
    padding: 2rem;
    display: inline-block;
    color: #DC3030;
    background: #F0C3C3;
}
.txt3 span {
    display: inline-block;
    padding-bottom: 1px;
    border-bottom: 3px double #DC3030;
}
.txtsp {
    line-height: 1.3;
}
.telnum {
    color: #fff;
}

@media (max-width: 767px) {
    .txt1 {
    }
    .txtsp {
    }
    .txt3 {
        font-size: .9rem;
        padding: .5rem;
    }
    .txt3 span {
        font-size: .9rem;
    }
}

/* ----------------------------------------
ボタン btn
------------------------------------------*/
.morebtn1 {
    background: #000;
    border: 1px solid #333;
    position: relative;
    display: inline-block;
    padding: 1rem 0 1rem 3rem;
    transition: .3s;
    width: 200px;
    text-align: left;
}
.morebtn1::before {
    position: absolute;
    content: "";
    background: #fff;
    top: 50%;
    right: 0;
    width: 30px;
    height: 1px;
    transform: translateY(-50%);
    transition: .3s;
}
.morebtn1:hover {
    background: #333;
    transition: .3s;
    padding: 1rem 0 1rem 2rem;
}
.morebtn1:hover::before {
    right: -15px;
    transition: .3s;
}
.morebtn1.black {
    background: #000;
}
.morebtn1.black:hover {
    background: #333;
}


/* btnS */
.morebtn,
.frombtn1{
  max-width: 300px;
  margin: 2rem auto;
}
.frombtn1{
  padding: 2rem 0;
}
.morebtn1,
.morebtn2 {
  text-align: center;
}
.morebtn1 a,
.morebtn2 a{
  background: #000;
  box-sizing: border-box;
  display: inline-block;
  padding: 2rem 2.5rem;
}
.morebtn a:hover{
  opacity: 1;
}
.morebtn2 a{
  display: block;
  position: relative;
}
.morebtn .sqbox {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
}
.morebtn .sqboxin{
  height: calc(100% - 10px);
  width: calc(100% - 10px);
}
.frombtn1 input{
  background: none;
  border: none;
  cursor: pointer;
  height: 64px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 5;
}
.morebtn .sqborder1,
.morebtn .sqborder2,
.morebtn .sqborder3,
.morebtn .sqborder4 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  position: absolute;
  opacity: 1;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.morebtn .sqborder1 > span,
.morebtn .sqborder2 > span,
.morebtn .sqborder3 > span,
.morebtn .sqborder4 > span {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.morebtn .sqborder1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.morebtn .sqborder2 {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
}
.morebtn .sqborder3 {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}
.morebtn .sqborder4 {
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
}
.morebtn .sqbox1,
.morebtn .sqbox3 {
  top: 0;
  left: 0;
}
.morebtn .sqbox2,
.morebtn .sqbox4 {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.morebtn .sqbox3,
.morebtn .sqbox4{
  opacity: 0;
  transition: .1s;
}
.morebtn.no-nowpagebtn .sqbox1 > span,
.morebtn.no-nowpagebtn .sqbox2 > span,
.morebtn.no-nowpagebtn .sqbox3 > span,
.morebtn.no-nowpagebtn .sqbox4 > span {
  background-color: transparent;
}
.morebtn .sqbox1 > span,
.morebtn .sqbox2 > span,
.morebtn .sqbox3 > span,
.morebtn .sqbox4 > span,
.morebtn.no-nowpagebtn:hover .sqbox1 > span,
.morebtn.no-nowpagebtn:hover .sqbox2 > span,
.morebtn.no-nowpagebtn:hover .sqbox3 > span,
.morebtn.no-nowpagebtn:hover .sqbox4 > span  {
  background-color: #fff;
}
.morebtn .sqbox1 .sqborder1,
.morebtn .sqbox2 .sqborder3,
.morebtn .sqbox3 .sqborder1,
.morebtn .sqbox4 .sqborder3 {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.morebtn .sqbox1 .sqborder2,
.morebtn .sqbox2 .sqborder4,
.morebtn .sqbox3 .sqborder2,
.morebtn .sqbox4 .sqborder4 {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
.morebtn .sqbox1 .sqborder3,
.morebtn .sqbox2 .sqborder1,
.morebtn .sqbox3 .sqborder3,
.morebtn .sqbox4 .sqborder1 {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.morebtn .sqbox1 .sqborder4,
.morebtn .sqbox2 .sqborder2,
.morebtn .sqbox3 .sqborder4,
.morebtn .sqbox4 .sqborder2 {
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.morebtn .sqborder2,
.morebtn .sqborder4{
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}
.morebtn:hover .sqborder1,
.morebtn:hover .sqborder3 {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.morebtn:hover .sqborder2,
.morebtn:hover .sqborder4 {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
  }
.morebtn .sqbox3 .sqborder1,
.morebtn .sqbox4 .sqborder1,
.morebtn .sqbox3 .sqborder3,
.morebtn .sqbox4 .sqborder3 {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.morebtn .sqbox3 .sqborder2,
.morebtn .sqbox4 .sqborder2,
.morebtn .sqbox3 .sqborder4,
.morebtn .sqbox4 .sqborder4  {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}



@media (max-width: 1180px) {

}
@media (max-width: 1024px) {
    .morebtn {
        font-size: 1rem;
    }
}
@media (max-width: 820px) {

}
@media (max-width: 767px) {
    .morebtn {
        font-size: 1.6rem;
    }
}

/* ----------------------------------------
ボックス box
------------------------------------------*/
.box1 {
    border-radius: 2px;
    border: 1px solid #000;
    background: #fff8f6;
    padding: 2rem;
}
.box1_head {
    margin-bottom: 10px;
}
.box1_ttl {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000;
    text-align: center;
}
.box1_content_head {
    margin-bottom: 20px;
}
.box1_content_head .ttl3 {
    color: #191919;
}
.box2 {
    border-radius: 25px;
    background: #FAF6F0;
    padding: 2rem;
}
.box2_ttl {
    font-size: 1.4rem;
    font-weight: 900;
    color: #467e65;
    text-align: center;
}
.box2_head {
    margin-bottom: 20px;
}
.box3 {
    position: relative;
    width: 30vw;
    height: 30vw;
    line-height: 30vw;
    text-align: center;
    color: #252B37;
    background-color: #151823;
    animation: textColor 10s ease infinite;
}
.box3:after {
    position: absolute;
    content: "";
    top: 5vw;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.75);
    -webkit-filter: blur(5vw);
    -moz-filter: blur(5vw);
    -ms-filter: blur(5vw);
    filter: blur(5vw);
    background: linear-gradient(270deg, #0fffc1, #7e0fff);
    background-size: 200% 200%;
    animation: animateGlow 10s ease infinite;
}
@keyframes animateGlow {
    0% {
    background-position: 0% 50%;
    }
    50% {
    background-position: 100% 50%;
    }
    100% {
    background-position: 0% 50%;
    }
}
@keyframes textColor {
    0% {
        color: #7e0fff;
    }
    50% {
        color: #0fffc1;
    }
    100% {
        color: #7e0fff;
    }
}

@media (max-width: 1024px) {
    .box1_head {
        top: -20px;
    }
}
@media (max-width: 820px) {
    .box1 {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .box1 {
        padding: 1rem;
    }
    .box1_head {
        margin-bottom: 10px;
    }
    .box1_ttl {
        font-size: 1.6rem;
    }
    .box2_ttl {
        font-size: 1.2rem;
    }
    .box2 {
        padding: 2rem 1rem;
    }
}

/* ----------------------------------------
固定ページヘッダーサムネイル
------------------------------------------*/
.page_thumbnail {
    overflow: hidden;
    position: relative;
}
.bt {
    margin-top: 70px;
}
.bt::before {
    position: absolute;
    content: "";
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.bt::after {
    position: absolute;
    content: "";
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background: #333;
}
.page_thumbnail_wrap {
    position: relative;
    width: 100%;
    height: 300px;
}
.page_thumbnail_contents {
    position: absolute;
    top: 45%;
    /* transform: translateY(-50%); */
    /* background: rgba(255,255,255,.9); */
    /* background: #fff; */
    /* padding: 4rem 20rem 2rem 6rem; */
    /* border-radius: 0 15px 0 0; */
    z-index: 2;
    width: 100%;
    text-align: center;
}
.page_thumbnail_ttl_ja {
    /* text-shadow: 1px 1px 5px #000; */
    /* margin-bottom: 20px; */
    /* text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff, 3px 3px 2px #fff, -1px 3px 2px #fff, 3px -1px 2px #fff, -1px -1px 2px #fff, 3px 1px 2px #fff, 0px 3px 2px #fff, -2px 0px 2px #fff, 0px -2px 2px #fff; */
    margin-top: 20px;
}
.page_thumbnail_ttl_en {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 10px;
    line-height: 1;
    text-transform: uppercase;
}
.page_thumbnail_ttl_en::first-letter {
    color: #6B5251;
}
@media (max-width: 1024px) {
}
@media (max-width: 820px) {
}
@media (max-width: 767px) {
    .page_thumbnail_ttl_ja {
        font-size: 1.6rem;
    }
    .page_thumbnail_ttl_en {
        font-size: 2.4rem;
    }
}

/* ----------------------------------------
パンくずリスト breadcrumb
------------------------------------------*/
.breadcrumb_wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* background: rgba(255,255,255,.75); */
    background: #FAFAFA;
    margin: 0 auto;
    /* max-width: 1180px; */
    padding: .5rem 2rem;
    width: 100%;
    z-index: 2;
}
.breadcrumb_wrap span {
    font-size: 1.2rem;
}
.breadcrumb_wrap .current-item {
    color: #6B5251;
}

@media (max-width: 768px) {
    .breadcrumb_wrap .inner {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .breadcrumb_wrap {
        padding: .5rem 1rem;
    }
}

/* ----------------------------------------
リスト list
------------------------------------------*/
.ul1 li {
    position: relative;
    padding-left: 1.5rem;
}
.ul1.red li {
    font-weight: bold;
    color: #b8465e
}
.ul1 li::before {
    position: absolute;
    content: '・';
    top: 0;
    left: 0;
}
.ul2 {
    position: relative;
    background: #faffee;
    padding: 2rem;
}
.ul2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: -15px;
    bottom: -15px;
    background-color: #6B5251;
    background-image: repeating-linear-gradient(-45deg,#fff, #fff 5px, transparent 0, transparent 8px);
    z-index: -1;
}
.ul2 li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 10px;
}
.ul2 li::before {
    position: absolute;
    content: '';
    background: #87CB54;
    top: 6px;
    left: 0;
    width: 12px;
    height: 12px;
}
.ul3 li {
    padding: 1rem;
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
}
.ul_icon1 li {
    position: relative;
    padding-left: 2rem;
    color: #fff;
}
.ul_icon1 li::before {
    position: absolute;
    content: '\f239';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    left: 0;
}
.ul_icon2 li {
    position: relative;
    padding-left: 2rem;
    font-weight: 900;
}
.ul_icon2 li::before {
    content: "";
    position: absolute;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 17.12'%3E%3Cpath d='M17.2,1.27l2.53,2.2L8.985,15.837,1.273,8.874,3.531,6.387l5.276,4.547ZM17.111,0l-8.4,9.667L3.454,5.133,0,8.937,9.063,17.12,21,3.378Z' fill='%2320992a'/%3E%3C/svg%3E%0A") no-repeat center / contain;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
}
.ul_caution li {
    position: relative;
    padding-left: 2rem;
}
.ul_caution li::before {
    position: absolute;
    content: '※';
    top: 0;
    left: 0;
}
.ul_asterisk li {
    position: relative;
    padding-left: 2rem;
}
.ul_asterisk li::before {
    position: absolute;
    content: '＊';
    top: 0;
    left: 0;
}
.ul_img1 li {
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    padding: 2rem 2rem 2rem 8rem;
    background: rgba(255,255,255,.5);
    display: inline-block;
    border-radius: 3px;
}
.ul_img1 li:not(:last-child) {
    margin-bottom: 50px;
}
.ul_img1 li::before {
    content: "";
    position: absolute;
    background: url("../images/common/leaf_icon.png") no-repeat center / contain;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
}

.ol1,
.ol2,
.ol3 {
    counter-reset: count 0;
}
.ol1 li {
    padding-left: 3rem;
    position: relative;
    margin-bottom: 10px;
}
.ol1 li:before {
    content: counter(count) ".";
    counter-increment: count 1;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #87CB54;
    font-size: 2.4rem;
    font-weight: 500;
    font-family: Gothic A1;
}
.ol2 li {
    padding-left: 2.2rem;
    position: relative;
    margin-bottom: 10px;
}
.ol2 li:before {
    content: "（" counter(count) "）";
    counter-increment: count 1;
    position: absolute;
    top: 0;
    left: 0;
}
.ol3 li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 10px;
}
.ol3 li:before {
    content: counter(count) ".";
    counter-increment: count 1;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    font-family: Gothic A1;
}

@media (max-width: 820px) {
    .ul_img1 li {
        font-size: 2.4rem;
    }
}
@media (max-width: 767px) {
    .ul_img1 li {
        font-size: 1.6rem;
        padding: 1rem 1rem 1rem 4.5rem;
    }
    .ul_img1 li:not(:last-child) {
        margin-bottom: 10px;
    }
    .ul_img1 li::before {
        width: 30px;
        height: 30px;
    }
    .ul2 li::before {
        top: 6px;
        width: 10px;
        height: 10px;
    }
    .ol3 li:before {
        top: 1.5px;
    }
}

/* ----------------------------------------
テーブル table
------------------------------------------*/
.tbl1 {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.tbl1 tr {
    border-bottom: 1px solid #ccc;
}
.tbl1 th {
    width: 20%;
}
.tbl1 th,
.tbl1 td {
    text-align: left;
    vertical-align: middle;
    padding: 1rem 2rem;
}
.tbl2 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
    table-layout: fixed;
}
.tbl2 td {
    text-align: left;
    vertical-align: middle;
    position: relative;
    padding-left: 1rem;
    font-size: .9rem;
    font-weight: 900;
}
.tbl2 td::before {
    position: absolute;
    content: '';
    background: #000;
    top: 6.5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.tbl3 {
    width: 80%;
    border-collapse: collapse;
}
.tbl3 th,
.tbl3 td {
    text-align: left;
    padding: 1rem 2rem;
    background: #FFFAEC;
    border: 1px solid #707070;
}

@media (max-width: 1180px) {
    .js-scrollable .tbl1 thead th {
        width: 250px;
    }
}
@media (max-width: 1024px) {
    .tbl1 th, .tbl1 td {
        padding: 1rem;
    }
    .tbl2 {
        border-spacing: 5px;
    }
    .tbl2 td {
        width: 50%;
        display: inline-block;
    }
    .tbl3 {
        width: 100%;
    }
}
@media (max-width: 820px) {
    .js-scrollable table {
        width: 1000px;
    }
}
@media (max-width: 767px) {
    .tbl1 th,
    .tbl1 td {
        width: 100%;
        display: block;
    }
    .tbl1 th {
        padding: 1rem .5rem 0 .5rem;
    }
    .tbl1 td {
        padding: 0rem .5rem 1rem .5rem;
    }
    .tbl2 td::before {
        top: 5px;
    }
}

/* ----------------------------------------
dl
------------------------------------------*/
.dl1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dl1 dt,
.dl1 dd {
    margin-bottom: 10px;
}
.dl1 dt {
    width: 30%;
    padding: 0 2rem;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dl1 dd {
    width: 70%;
    padding: 0 2rem;
}
.dl2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dl2 dt,
.dl2 dd {
    border-bottom: 1px solid #000;
}
.dl2 dt {
    width: 8%;
    padding: 1rem 0 1rem 1rem;;
}
.dl2 dd {
    width: 92%;
    padding: 1rem 0 1rem 0;
}
.dl3 dt {
    font-size: 1.6rem;
    font-weight: 900;
    color: #000;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    padding-left: 2rem;
}
.dl3 dt::before {
    position: absolute;
    content: '';
    background: #000;
    border-radius: 50%;
    top: 10px;
    left: 0;
    width: 20px;
    height: 20px;
}
.dl3 dd {
    margin-bottom: 50px;
}
.dl4 dt,
.dl4 dd {
    margin-bottom: 10px;
}
.dl4 dt {
    width: 10%;
    background: #87CB54;
    display: inline-block;
    padding: 5px 0;
    text-align: center;
    color: #fff;
}
.dl4 dd {
    width: 90%;
    float: right;
    position: relative;
    padding: 5px 0 5px 10px;
}
.dl4 dd::after {
    content: "";
    display: block;
    clear: both;
}
.dl5 dt,
.dl5 dd {
    margin-bottom: 10px;
}
.dl5 dt {
    color: #87CB54;
    font-size: 1.2rem;
    font-weight: 900;
}
.dl5 dt .num {
    font-size: 1.4rem;
    display: inline-block;
    margin-right: .5rem;
}

@media (max-width: 1024px) {
    .dl1 dt {
        width: 30%;
    }
    .dl1 dd {
        width: 70%;
    }
    .dl4 dt {
        display: block;
    }
    .dl4 dd {
        width: 100%;
        float: none;
        padding: 0;
        margin-bottom: 20px;
    }
}
@media (max-width: 820px) {
    .dl1 dt {
        width: 100%;
        padding: 1rem;
    }
    .dl1 dd {
        width: 100%;
        padding: 0 1rem;
    }
    .dl2 dt {
        width: 10%;
    }
    .dl2 dd {
        width: 90%;
    }
    .dl3 dt {
        font-size: 1.3rem;
        padding-left: 1.5rem;
        padding-bottom: 5px;
    }
    .dl3 dt::before {
        top: 7px;
        width: 15px;
        height: 15px;
    }
}
@media (max-width: 767px) {
    .dl2 dt {
        width: 20%;
    }
    .dl2 dd {
        width: 80%;
    }
    .dl3 dt {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    .dl3 dt::before {
        width: 10px;
        height: 10px;
    }
    .dl4 dt {
        width: 35%;
        padding: 2.5px 0;
    }
    .dl5 dt {
        font-size: 1rem;
    }
    .dl5 dt .num {
        font-size: 1.2rem;
    }
}

/* ----------------------------------------
タブ切り替え tab
------------------------------------------*/
input[name="tab_btn"] {
    display: none;
}
.tab_area {
    display: flex;
    justify-content: space-between;
}
.tab_area label {
    width: 25%;
    display: inline-block;
    padding: .5rem 0;
    text-align: center;
    cursor: pointer;
    transition: ease 0.2s opacity;
}
.panel_area {
    width: 90%;
    margin: 0 auto;
}
.tab_panel {
    display: none;
    margin-bottom: 50px;
}
#tab1:checked~.tab_area .tab1_label {
    /* background: #F5F5F5; */
}
#tab1:checked~.panel_area #panel1 {
    display: block;
}
#tab2:checked~.tab_area .tab2_label {
    /* background: #F5F5F5; */
}
#tab2:checked~.panel_area #panel2 {
    display: block;
}
#tab3:checked~.tab_area .tab3_label {
    /* background: #F5F5F5; */
}
#tab3:checked~.panel_area #panel3 {
    display: block;
}
#tab4:checked~.tab_area .tab4_label {
    /* background: #F5F5F5; */
}
#tab4:checked~.panel_area #panel4 {
    display: block;
}
.archive .tab_panel {
    display: block;
}

@media (max-width: 1024px) {
    .tab_area label {
        width: 20%;
    }
}
@media (max-width: 820px) {
    .tab_area label {
        width: 15%;
    }
}
@media (max-width: 767px) {
    .tab_area label {
        width: 33%;
    }
    .tab_list .tab_item {
        width: 100%;
    }
    .tab_list .tab_item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* ----------------------------------------
ページネーション pagination アーカイブ
------------------------------------------*/


/* ----------------------------------------
ページネーション pagination　詳細
------------------------------------------*/
.category .pagination {
    text-align: center;
}
.category .pagination .page-numbers {
    display: inline-block;
    margin: 0 1rem;
}
.category .pagination .prev,
.category .pagination .next {
    font-size: 12px;
}
.category .pagination .prev i,
.category .pagination .next i {
    color: #6B5251;
    font-size: 10px;
    transform: translate(-2px,-2px) rotate(45deg);
}
.pager {
    border-top: 1px solid #333;
    padding-top: 20px;
}
.pager_list {
    display: flex;
    justify-content: space-between;
}
.pager li {
    display: inline-block;
    vertical-align: middle;
}
.pager li i {
    color: #6B5251;
    font-size: 10px;
    transform: translate(-2px,-2px) rotate(45deg);
}
.pager li a {
    /* padding: 1rem 4rem;
    display: block;
    border: 1px solid #333;
    background: #000000; */
}

@media (max-width: 767px) {
    .page-numbers,.page-numbers.current,
    .page-numbers.prev,
    .page-numbers.next {
        padding: .5rem;
        margin-right: 5px;
    }
    .pager li a {
        padding: .5rem;
    }
}

/* ----------------------------------------
youtube_bnr
------------------------------------------*/
/* .youtube_bnr_wrap {
    position: fixed;
    left: -462px;
    top: 20%;
    z-index: 999;
    transition: .3s;
}
.youtube_bnr_img {
    width: 500px;
    height: 185px;
    object-fit: contain;
}
.youtube_bnr_wrap:hover {
    left: 0;
}
.youtube_bnr_wrap:hover .youtube_bnr {
    opacity: 1;
}

@media (max-width: 767px) {
    .youtube_bnr_wrap {
        top: 10%;
    }
} */

/* ----------------------------------------
スクロールダウン
------------------------------------------*/
.scrolldown {
    position: absolute;
    right: 10%;
    bottom: 0;
    height: 150px;
}
.scrolldown span {
    position: absolute;
    left: -25px;
    top: 0px;
    color: #191919;
    letter-spacing: .05em;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 3px;
    height: 20px;
    background: #191919;
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
    border-radius: 5px;
}
.scrolldown:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 150px;
    background: #191919;
}
@keyframes circlemove {
    0% {
        top: 0px;
    }
    100% {
        top: 130px;
    }
}
@keyframes circlemovesp {
    0% {
        top: 0px;
    }
    100% {
        top: 80px;
    }
}

@media (max-width: 767px) {
    .scrolldown {
        height: 100px;
        display: block;
    }
    .scrolldown span {
        color: #fff;
    }
    .scrolldown::before {
        animation: circlemovesp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
        background: #fff;
    }
    .scrolldown:after {
        height: 100px;
        background: #fff;
    }
}

/* ----------------------------------------
背景画像
------------------------------------------*/
.bg1 {
    position: relative;
}
.bg1::before {
    position: absolute;
    content: "";
    background: url(../images/common/bg1.png) no-repeat center / cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .2;
}

@media (max-width: 767px) {

}

/* ----------------------------------------
背景パーツ装飾
------------------------------------------*/
.svg {
    position: absolute;
    content: "";
}
.svg.partner {
    background: url(../images/common/partner.svg) no-repeat center / contain;
    width: 100%;
    max-width: 920px;
    height: 150px;
    z-index: 1;
}
.illust {
    position: absolute;
    content: "";
}
.tree1 {
    background: url(../images/common/tree1.png) no-repeat center / contain;
    width: 100px;
    height: 200px;
}

/* ----------------------------------------
パララックス画像
------------------------------------------*/
/* .parallax_img {
    background-image: url(../images/common/company_bg1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40vh;
    position: relative;
}
.parallax_img::before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,.3);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .parallax_img {
        height: 20vh;
    }
} */

/* ----------------------------------------
gradation
------------------------------------------*/
/* .bg_gradient {
    position: relative;
}
.bg_gradient::before {
    position: absolute;
    content: "";
    right: 0;
    width: 100%;
    top: 180px;
    height: 160px;
    background: linear-gradient(90deg, rgba(89,139,198,1) 0%, rgba(0,60,138,1) 100%);
    background: #000;
    z-index: -1;
}
.c_gradient {
    font-weight: bold;
    color: transparent;
    background: repeating-linear-gradient( 180deg, #DAEEBE 0, #BDDEC2 100% );
    -webkit-background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 820px) {
    .c_gradient {
    }
}

@media (max-width: 767px) {
    .c_gradient {
    }
} */

/* ----------------------------------------
言語切り替え GT-translate
------------------------------------------*/
/* .rang_switch_wrap {
    position: absolute;
    top: 0;
    right: 0;
}
.gt_float_switcher {
    box-shadow: unset !important;
}
.gt_float_switcher .gt_options a,
.gt_float_switcher .gt_options a,
.gt_float_switcher .gt-selected .gt-current-lang {
    padding: .5rem !important;
}
.gt_float_switcher .gt-selected {
    text-transform: unset !important;
}
.gt_float_switcher img {
    width: 20px !important;
    margin: 0 !important;
}
@media (max-width: 1180px) {
    .rang_switch_wrap {
        top: 28.5px;
        right: 10px;
    }
}
@media (max-width: 767px) {
    .rang_switch_wrap {
        top: 15.5px;
    }
} */

/* ----------------------------------------
スクロールトップ
------------------------------------------*/
.gotop_wrap {
    position: fixed;
    bottom: 50px;
    right: 25px;
    opacity: 0;
    transition: .3s;
    z-index: 1;
}
.gotop_wrap.active {
    opacity: 1;
    visibility: visible;
}
.gotop {
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #6B5251;
    border-radius: 50%;
    /* border: 1px solid #6B5251; */
    transition: .3s;
}
.gotop::before {
    position: absolute;
    content: '\f077';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.gotop:hover {
    background: #6B5251;
    color: #fff;
    /* border: 1px solid #fff; */
    transition: .3s;
    opacity: 1;
}

@media (max-width: 820px) {
    .gotop_wrap {
        bottom: 20px;
    }
    .gotop {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 767px) {
    .gotop_wrap {
        right: 15px;
    }
    .gotop {
        width: 35px;
        height: 35px;
    }
}

/* ----------------------------------------
追尾バナー
------------------------------------------*/
.fix_bnr_list_wrap {
    position: fixed;
    z-index: 99;
    right: 0;
    top: 30%;
}
.fix_bnr_ltem:not(:last-child) {
    margin-bottom: 20px;
}
.fix_bnr_link:hover {
    opacity: 1;
}
.fix_bnr_ltem:nth-child(1) .fix_bnr_link,
.fix_bnr_ltem:nth-child(2) .fix_bnr_link {
    padding: 2rem 4rem;
    border-radius: 80px 0 0 80px;
    text-align: center;
    line-height: 1.5;
    display: block;
}
.fix_bnr_ltem:nth-child(1) .fix_bnr_link {
    background: #fff;
}
.fix_bnr_ltem:nth-child(2) .fix_bnr_link {
    background: #000;
    color: #fff;
}
.fix_bnr_link span {
    color: #674B00;
    display: block;
}

/* ----------------------------------------
追尾バナー（縦）
------------------------------------------*/
.fix_bnr {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}
.fix_bnr_item:nth-child(1) .fix_bnr_link,
.fix_bnr_item:nth-child(2) .fix_bnr_link,
.fix_bnr_item:nth-child(3) .fix_bnr_link {
    writing-mode: vertical-rl;
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 2.5rem .5rem 3rem;
    letter-spacing: 1px;
    position: relative;
    transition: .3s;
}
.fix_bnr_item:nth-child(1) .fix_bnr_link {
    background: #000;
    border: 1px solid #000;
}
.fix_bnr_item:nth-child(2) .fix_bnr_link {
    background: #87CB54;
    border: 1px solid #87CB54;
}
.fix_bnr_item:nth-child(3) .fix_bnr_link {
    background: #585858;
    border: 1px solid #585858;
}
.fix_bnr_item:nth-child(1):hover .fix_bnr_link {
    background: #fff;
    color: #000;
}
.fix_bnr_item:nth-child(2):hover .fix_bnr_link {
    background: #fff;
    color: #87CB54;
}
.fix_bnr_item:nth-child(2):hover .fix_bnr_link {
    background: #fff;
    color: #585858;
}
.fix_bnr_link::before,
.fix_bnr_link::after {
    position: absolute;
    content: '';
}
.fix_bnr_link::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 120.8 120.8'%3E%3Cpath d='m60.4,0C27.04,0,0,27.04,0,60.4s27.04,60.4,60.4,60.4,60.4-27.04,60.4-60.4S93.76,0,60.4,0Zm-20.67,95.36l17.4-34.79-17.4-35.12,48.05,34.96-48.05,34.96Z'/%3E%3C/svg%3E") no-repeat center / contain;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
}
.fix_bnr_item:hover .fix_bnr_link::before,
.fix_bnr_item:hover .fix_bnr_link::after {
    transition: .3s;
}
.fix_bnr_item:nth-child(1):hover .fix_bnr_link::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2320992A' viewBox='0 0 120.8 120.8'%3E%3Cpath d='m60.4,0C27.04,0,0,27.04,0,60.4s27.04,60.4,60.4,60.4,60.4-27.04,60.4-60.4S93.76,0,60.4,0Zm-20.67,95.36l17.4-34.79-17.4-35.12,48.05,34.96-48.05,34.96Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.fix_bnr_item:nth-child(2):hover .fix_bnr_link::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2387CB54' viewBox='0 0 120.8 120.8'%3E%3Cpath d='m60.4,0C27.04,0,0,27.04,0,60.4s27.04,60.4,60.4,60.4,60.4-27.04,60.4-60.4S93.76,0,60.4,0Zm-20.67,95.36l17.4-34.79-17.4-35.12,48.05,34.96-48.05,34.96Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.fix_bnr_item:nth-child(1) .fix_bnr_link::after,
.fix_bnr_item:nth-child(2) .fix_bnr_link::after {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
}
.fix_bnr_item:nth-child(1) .fix_bnr_link::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 158.24 139.19'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23fff;stroke-linecap:round;stroke-miterlimit:10;stroke-width:6.4px;%7D%3C/style%3E%3C/defs%3E%3Cg %3E%3Cline class='cls-1' x1='49.43' y1='17.01' x2='108.97' y2='17.01'/%3E%3Cpath class='cls-1' d='m137.63,17.01h9.1c4.59,0,8.32,3.72,8.32,8.32v102.34c0,4.59-3.72,8.32-8.32,8.32H11.52c-4.6,0-8.32-3.73-8.32-8.32V25.33c0-4.59,3.72-8.32,8.32-8.32h9.41'/%3E%3Cpath class='cls-1' d='m35.18,30.83h0c-4.05,0-7.33-3.28-7.33-7.33v-12.98c0-4.05,3.28-7.33,7.33-7.33h0c4.05,0,7.33,3.28,7.33,7.33v12.98c0,4.05-3.28,7.33-7.33,7.33Z'/%3E%3Cpath class='cls-1' d='m123.07,30.83h0c-4.05,0-7.33-3.28-7.33-7.33v-12.98c0-4.05,3.28-7.33,7.33-7.33h0c4.05,0,7.33,3.28,7.33,7.33v12.98c0,4.05-3.28,7.33-7.33,7.33Z'/%3E%3Cline class='cls-1' x1='3.2' y1='48.53' x2='155.04' y2='48.53'/%3E%3Crect class='cls-1' x='19.67' y='66.18' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='19.67' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='54.19' y='66.18' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='54.19' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Cpath class='cls-1' d='m90.98,66.18h9.86c1.26,0,2.27,1.02,2.27,2.27v9.86c0,1.26-1.02,2.27-2.27,2.27h-9.86c-1.26,0-2.27-1.02-2.27-2.27v-9.86c0-1.26,1.02-2.27,2.27-2.27Z'/%3E%3Crect class='cls-1' x='88.7' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='123.22' y='66.18' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='123.22' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.fix_bnr_item:nth-child(1):hover .fix_bnr_link::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 158.24 139.19'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%2320992A;stroke-linecap:round;stroke-miterlimit:10;stroke-width:6.4px;%7D%3C/style%3E%3C/defs%3E%3Cg %3E%3Cline class='cls-1' x1='49.43' y1='17.01' x2='108.97' y2='17.01'/%3E%3Cpath class='cls-1' d='m137.63,17.01h9.1c4.59,0,8.32,3.72,8.32,8.32v102.34c0,4.59-3.72,8.32-8.32,8.32H11.52c-4.6,0-8.32-3.73-8.32-8.32V25.33c0-4.59,3.72-8.32,8.32-8.32h9.41'/%3E%3Cpath class='cls-1' d='m35.18,30.83h0c-4.05,0-7.33-3.28-7.33-7.33v-12.98c0-4.05,3.28-7.33,7.33-7.33h0c4.05,0,7.33,3.28,7.33,7.33v12.98c0,4.05-3.28,7.33-7.33,7.33Z'/%3E%3Cpath class='cls-1' d='m123.07,30.83h0c-4.05,0-7.33-3.28-7.33-7.33v-12.98c0-4.05,3.28-7.33,7.33-7.33h0c4.05,0,7.33,3.28,7.33,7.33v12.98c0,4.05-3.28,7.33-7.33,7.33Z'/%3E%3Cline class='cls-1' x1='3.2' y1='48.53' x2='155.04' y2='48.53'/%3E%3Crect class='cls-1' x='19.67' y='66.18' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='19.67' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='54.19' y='66.18' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='54.19' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Cpath class='cls-1' d='m90.98,66.18h9.86c1.26,0,2.27,1.02,2.27,2.27v9.86c0,1.26-1.02,2.27-2.27,2.27h-9.86c-1.26,0-2.27-1.02-2.27-2.27v-9.86c0-1.26,1.02-2.27,2.27-2.27Z'/%3E%3Crect class='cls-1' x='88.7' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='123.22' y='66.18' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3Crect class='cls-1' x='123.22' y='103.74' width='14.4' height='14.4' rx='2.27' ry='2.27'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.fix_bnr_item:nth-child(2) .fix_bnr_link::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 188.35 161.24'%3E%3Cg%3E%3Cline x1='50.66' y1='17.38' x2='111.79' y2='17.38' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m86.26,139.53H11.74c-4.72,0-8.54-3.82-8.54-8.54V25.92c0-4.72,3.82-8.54,8.54-8.54h9.66' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m141.21,17.38h9.34c4.72,0,8.54,3.82,8.54,8.54v29.75' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m36.03,31.56h0c-4.15,0-7.52-3.37-7.52-7.52v-13.32c0-4.15,3.37-7.52,7.52-7.52h0c4.15,0,7.52,3.37,7.52,7.52v13.32c0,4.15-3.37,7.52-7.52,7.52Z' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m126.26,31.56h0c-4.15,0-7.52-3.37-7.52-7.52v-13.32c0-4.15,3.37-7.52,7.52-7.52h0c4.15,0,7.52,3.37,7.52,7.52v13.32c0,4.15-3.37,7.52-7.52,7.52Z' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cline x1='3.2' y1='44.36' x2='159.09' y2='44.36' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='20.11' y='65.16' width='14.79' height='14.79' rx='2.34' ry='2.34' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m90.98,72.24v-4.74c0-1.29,1.05-2.34,2.34-2.34h5.06' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='20.11' y='103.73' width='14.79' height='14.79' rx='2.33' ry='2.33' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='55.55' y='65.16' width='14.79' height='14.79' rx='2.33' ry='2.33' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='55.55' y='103.73' width='14.79' height='14.79' rx='2.33' ry='2.33' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Ccircle cx='136.65' cy='109.54' r='48.49' transform='translate(-37.43 128.71) rotate(-45)' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m165.85,93.83l-34.36,34.36c-.77.77-2.02.77-2.78,0l-19.01-19.01' style='fill:none; stroke:%23fff; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.fix_bnr_item:nth-child(2):hover .fix_bnr_link::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 188.35 161.24'%3E%3Cg%3E%3Cline x1='50.66' y1='17.38' x2='111.79' y2='17.38' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m86.26,139.53H11.74c-4.72,0-8.54-3.82-8.54-8.54V25.92c0-4.72,3.82-8.54,8.54-8.54h9.66' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m141.21,17.38h9.34c4.72,0,8.54,3.82,8.54,8.54v29.75' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m36.03,31.56h0c-4.15,0-7.52-3.37-7.52-7.52v-13.32c0-4.15,3.37-7.52,7.52-7.52h0c4.15,0,7.52,3.37,7.52,7.52v13.32c0,4.15-3.37,7.52-7.52,7.52Z' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m126.26,31.56h0c-4.15,0-7.52-3.37-7.52-7.52v-13.32c0-4.15,3.37-7.52,7.52-7.52h0c4.15,0,7.52,3.37,7.52,7.52v13.32c0,4.15-3.37,7.52-7.52,7.52Z' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cline x1='3.2' y1='44.36' x2='159.09' y2='44.36' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='20.11' y='65.16' width='14.79' height='14.79' rx='2.34' ry='2.34' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m90.98,72.24v-4.74c0-1.29,1.05-2.34,2.34-2.34h5.06' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='20.11' y='103.73' width='14.79' height='14.79' rx='2.33' ry='2.33' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='55.55' y='65.16' width='14.79' height='14.79' rx='2.33' ry='2.33' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Crect x='55.55' y='103.73' width='14.79' height='14.79' rx='2.33' ry='2.33' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Ccircle cx='136.65' cy='109.54' r='48.49' transform='translate(-37.43 128.71) rotate(-45)' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3Cpath d='m165.85,93.83l-34.36,34.36c-.77.77-2.02.77-2.78,0l-19.01-19.01' style='fill:none; stroke:%2387CB54; stroke-linecap:round; stroke-miterlimit:10; stroke-width:6.4px;'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.fix_bnr.air_block {
    display: none;
}

@media (max-width: 820px) {
    .fix_bnr {
        width: 100%;
        top: unset;
        transform: unset;
        bottom: 0;
        display: none;
    }
    .fix_bnr_list {
        display: flex;
    }
    /* .fix_bnr_item {
        width: 50%;
    } */
    .fix_bnr_item:nth-child(1) .fix_bnr_link,
    .fix_bnr_item:nth-child(2) .fix_bnr_link,
    .fix_bnr_item:nth-child(3) .fix_bnr_link {
        writing-mode: unset;
        text-align: center;
        padding: 1rem 0;
    }
    .fix_bnr_link::before {
        /* top: 50%;
        left: 30%;
        transform: translate(-50%,-50%);
        width: 20px;
        height: 20px; */
        display: none;
    }
    .fix_bnr_item:nth-child(1) .fix_bnr_link::after,
    .fix_bnr_item:nth-child(2) .fix_bnr_link::after {
        /* top: 50%;
        left: unset;
        right: 20%;
        transform: translate(-50%,-50%);
        width: 30px;
        height: 30px; */
        display: none;
    }
    .fix_bnr.air_block {
        display: block;
    }
    .fix_bnr_item:nth-child(1) {
        width: 50%;
    }
    .fix_bnr_item:nth-child(2),
    .fix_bnr_item:nth-child(3) {
        width: 25%;
    }
    .fix_bnr_item:nth-child(1) span {
        font-size: .7rem;
        color: #fff;
        display: inline-block;
    }
}
@media (max-width: 767px) {
    /* .fix_bnr_item:nth-child(1) .fix_bnr_link, .fix_bnr_item:nth-child(2) .fix_bnr_link {
        padding: 0.75rem 0;
    }
    .fix_bnr_link::before {
        left: 30px;
        width: 15px;
        height: 15px;
    }
    .fix_bnr_item:nth-child(1) .fix_bnr_link::after, .fix_bnr_item:nth-child(2) .fix_bnr_link::after {
        right: 0;
        width: 25px;
        height: 25px;
    } */
    .fix_bnr_item:nth-child(1) .fix_bnr_link {
        height: 72px;
        padding: 1.8rem 0;
    }
    .fix_bnr_link {
        line-height: 1.2;
    }
}

/* ----------------------------------------
ページリンク
------------------------------------------*/
.link {
    color: #6B5251;
    text-decoration: underline;
    word-break: break-all;
}
.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/* ----------------------------------------
注釈
------------------------------------------*/
.annotation {
}

/* ----------------------------------------
境界線
------------------------------------------*/
hr {
    border: .5px solid #ccc;
}

/* ----------------------------------------
マスク
------------------------------------------*/
/* .mask1 {
    -webkit-mask-image: url(../images/common/mask1.svg);
    mask-image: url(../images/common/mask1.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right;
    mask-position:  right;
}
.mask2 {
    -webkit-mask-image: url(../images/common/mask2.svg);
    mask-image: url(../images/common/mask2.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-position:  left;
} */

/* ----------------------------------------
スクルール連動アニメーション
------------------------------------------*/
/* .js-scroll-item {
    overflow: hidden;
}
.js-scroll-item.animated .js-scroll-item-in {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}
.js-scroll-item .js-scroll-item-in {
    position: relative;
    overflow: hidden;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translate3d(-100.5%, 0px, 0px);
    transform: translate3d(-100.5%, 0px, 0px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-property: transform, -webkit-transform;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.js-scroll-item.animated .js-scroll-item-in::before {
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
}
.js-scroll-item .js-scroll-item-in::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 5;
    background: #fff;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-property: transform, -webkit-transform;
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.js-scroll-item .js-scroll-item-in img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 4s;
    -o-transition-duration: 4s;
    transition-duration: 4s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-property: transform, -webkit-transform;
} */


/* ----------------------------------------
サムネイルスタイダ－
------------------------------------------*/
.thumbnail_slider_main {
    margin-bottom: 30px;
}
.thumbnail_slider_main img {
    object-fit: contain;
    height: auto;
}
.thumbnail_slider_sub_item {
    padding: 0 5px;
}
.thumbnail_slider_sub img {
    height: auto;
    object-fit: contain;
}
.thumbnail_slider_sub .slick-active {
    position: relative;
}
.thumbnail_slider_sub .slick-active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
}
.thumbnail_slider_sub .slick-current::after {
    display: none;
}
.thumbnail_slider_sub .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.thumbnail_slider_sub .slick_prev,
.thumbnail_slider_sub .slick_next {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.thumbnail_slider_sub .slick_prev {
    background: url(../images/common/slickprev.png) no-repeat center / contain;
    left: -20px;
}
.thumbnail_slider_sub .slick_next {
    background: url(../images/common/slicknext.png) no-repeat center / contain;
    right: -20px;
}

@media (max-width: 767px) {
    .products_detail_contents .media_img_wrap {
        margin-bottom: 20px;
    }
}

/* ----------------------------------------
流れレイアウトテンプレート
------------------------------------------*/
/* .balloon_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.balloon1 {
    width: 100%;
    background: #EFF8EC;
    -webkit-box-shadow: 0px 5px 10px 0px #ccc;
            box-shadow: 0px 5px 10px 0px #ccc;
    padding: 3.5rem;
    position: relative;
    z-index: 9;
    box-sizing: border-box;
}
.balloon1:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #EFF8EC;
    z-index: 9;
}
.balloon2 {
    width: 100%;
    background: #FFFCF4;
    -webkit-box-shadow: 0px 5px 10px 0px #ccc;
            box-shadow: 0px 5px 10px 0px #ccc;
    padding: 3.5rem;
    position: relative;
    z-index: 8;
    box-sizing: border-box;
}
.balloon2:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #FFFCF4;
    z-index: 8;
}
.balloon3 {
    width: 100%;
    background: #EFF8EC;
    -webkit-box-shadow: 0px 5px 10px 0px #ccc;
            box-shadow: 0px 5px 10px 0px #ccc;
    padding: 3.5rem;
    position: relative;
    z-index: 7;
    box-sizing: border-box;
}
.balloon_img_wrap {
    width: 35%;
}
.balloon_content_wrap {
    width: 60%;
    padding: 0 2rem;
}
.balloon_content_ttl {
    font-weight: 900;
    border-bottom: 1px solid #707070;
    margin-bottom: 10px;
}

@media (max-width: 820px) {
    .balloon_img_wrap,
    .balloon_content_wrap {
        width: 100%;
    }
    .balloon_img_wrap {
        margin-bottom: 20px;
    }
    .balloon1, .balloon2, .balloon3 {
        padding: 6rem 2rem;
    }
}
@media (max-width: 767px) {
    .balloon1, .balloon2, .balloon3 {
        padding: 6rem 2.5rem 6rem 1rem;
    }
} */


/* ----------------------------------------
流れレイアウトテンプレートY
------------------------------------------*/
.big-content {
    background: #ffffff;
    position: relative;
    filter: drop-shadow(0 8px 3px #d6d6d6);
    border-radius: 0 0px 25px 25px;
    padding: 20px;
    margin-bottom: 40px;
}
.big-content::after {
    content: "";
    position: absolute;
    border-top: 20px solid #fff;
    border-right: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid transparent;
    top: 100%;
    left: 50%;
    z-index: -1;
}
.big-content .step01::before,
.big-content .step02::before,
.big-content .step03::before,
.big-content .step04::before,
.big-content .step05::before {
    position: absolute;
    width: 275px;
    height: auto;
    bottom: -40px;
    right: -50px;
    font-size: 130px;
    font-weight: bold;
    font-style: italic;
    color: #f2f2f2;
    z-index: -1;
    font-family: "Open Sans", sans-serif;
}
.big-content .step01::before {
    content: "01";
}
.big-content .step02::before {
    content: "02";
}
.big-content .step03::before {
    content: "03";
    }
.big-content .step04::before {
    content: "04";
}
.big-content .step05::before {
    content: "05";
}
.big-content:last-child:after {
    display: none;
}
.titletype_step {
    font-size: 28px;
    display:flex;
    align-items: center;
    border-bottom: solid 3px #f2f2f2;
    position: relative;
    padding-bottom: 0;
}
.titletype_step span {
    color: #181818;
    padding: 0 10px;
    margin-right: 1px;
    letter-spacing: 2px;
    font-style: italic;
    font-size: 20px;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
}
.titletype_step span::first-letter {
    color: #000;
    font-size: 26px;
}
.titletype_step::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 10%;
    height: 3px;
    background-color: #000;
}
.s-manufacture__flexBox {
    display:flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}
.s-manufacture__flexBox img {
    width: 100%;
    height: auto;
    clip-path: polygon(0% 0%, 88% 0, 100% 50%, 88% 100%, 0% 100%);
}
.s-manufacture__flexItem:first-child {
    width: 40%;
    padding: 20px;
}
.s-manufacture__flexItem:last-child {
    width: 60%;
    padding: 20px;
}

@media (max-width: 820px) {
    .titletype_step {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .titletype_step::before {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 767px) {
    .s-manufacture__flexBox {
        display: block;
        max-width: 100%;
    }
    .s-manufacture__flexItem:first-child {
        width: 100%;
        padding: 20px 0;
    }
    .big-content .step01::before, .big-content .step02::before, .big-content .step03::before, .big-content .step04::before, .big-content .step05::before {
        width: auto;
        bottom: 0;
        right: 5%;
        font-size: 80px;
    }
    .s-manufacture__flexItem:last-child {
        width: 100%;
        padding: 0;
    }
    .big-content {
        padding: 20px 20px 100px 20px;
    }
}

/* ----------------------------------------
luminous
------------------------------------------*/
.expansion {
    position: relative;
}
.expansion::before {
    position: absolute;
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    bottom: 0;
    right: 2%;
    font-size: 3rem;
}


/* ----------------------------------------
welcomeロゴ
------------------------------------------*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background:#fff;
    text-align:center;
}
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#splash_logo img {
    width: 300px;
    /* margin-bottom: 30px; */
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
/* .splash_txt {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 2px;
} */
@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------
simulation
------------------------------------------*/
.simulation_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
    margin-bottom: 50px;
}
.simulation_box_l {
	width: 60%;
}
.simulation_box_r {
	width: 40%;
}
.sum_num_box {
	font-weight: bold;
	padding: 5px 10px;
	text-align: center;
	line-height: 1;
	border-radius: 5px;
    background: #333;
        border: 1px solid #ccc;
}
.sum_num_box span {
    margin-top: 10px;
	font-size: 50px;
	font-family: sans-serif;
	display: inline-block;
}
.simulation_select select {
	padding: 3px 5px;
	width: 180px;
	font-size: 14px;
	background: #333;
    color: #fff;
}
.simulation_select .plus {
	margin: 0 5px;
	font-weight: bold;
	font-size: 30px;
}
.simulation_select .equal {
	margin-left: 10px;
	font-weight: bold;
	font-size: 30px;
}
@media (max-width: 1024px) {
    .simulation_select select {
        width: 150px;
    }
    .sum_num_box span {
        margin-top: 5px;
        font-size: 35px;
    }
    .simulation_select .plus,
    .simulation_select .equal {
        font-size: 24px;
    }
}
@media (max-width: 820px) {
    .simulation_select select {
        width: 120px;
    }
    .sum_num_box span {
        font-size: 30px;
    }
    .simulation_select .plus,
    .simulation_select .equal {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .simulation_select select {
        width: 110px;
    }
}

@media (max-width: 480px) {
    .simulation_select select {
        width: 100%;
    }
    .simulation_box_r {
        width: 100%;
    }
}

/* 以下、ページテンプレート */
/* ----------------------------------------
お問い合わせ
------------------------------------------*/
.contact_sec_contents {
    width: 80%;
    margin: auto;
}
.contact_form_tbl {
    margin: 0 auto;
}
.contact_form_tbl_wrap {
    margin-bottom: 30px;
}
.contact_privacy_wrap {
    margin-bottom: 30px;
    text-align: center;
}
.contact_submit_wrap {
    text-align: center;
}
.contact_form_tbl {
    border-collapse: collapse;
}
/* .contact_form_tbl tr:nth-child(odd) {
    background: #f4ffd7;
}
.contact_form_tbl tr:nth-child(even) {
    background: #fff;
} */
.contact_form_tbl th,
.contact_form_tbl td {
    padding: 1rem;
}
.contact_form_tbl th {
    width: 25%;
    text-align: left;
    vertical-align: middle;
    font-weight: bold;
}
/* .contact_form_tbl td {
    padding-left: 10rem;
    position: relative;
}
.contact_form_tbl td::after {
    position: absolute;
    content: "";
    background: #e8e8e8;
    width: 10%;
    height: 1px;
    top: 50%;
    left: 0;
}
.contact_form_tbl tr:nth-child(odd) td::after {
    background: #fff;
} */
.contact_form_address {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.contact_form_address dt {
    width: 20%;
    margin-bottom: 10px;
}
.contact_form_address dd {
    width: 75%;
    margin-bottom: 10px;
}
input[type="submit"] {
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    padding: 1rem 6rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: all .3s;
    display: inline-block;
}
input[type="submit"]:hover {
    color: #fff;
    background: #000;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 40px;
}
textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
input[type="number"] {
    width: 10%;
}
input[type="password"] {
    width: 30%;
}
input[name="day1"],
input[name="day2"] {
    width: 30%;
}
select {
    width: 50%;
    height: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    color: #888;
}
input[name="zip1"],
input[name="zip2"] {
    width: 150px;
}
.hissu {
    color: #FF0000;
    /* background: #ca353b;
    padding: 4px 5px 4px 7px;
    margin-right: 10px;
    border-radius: 3px;
    letter-spacing: 2px; */
}
.ninni {
    background: #181818;
    padding: 4px 5px 4px 7px;
    color: #fff;
    margin-right: 10px;
    border-radius: 3px;
    letter-spacing: 2px;
}
.complete_message {
    text-align: center;
    padding: 100px 0;
}
.contact_btn_wrap {
    display: flex;
    justify-content: center;
    text-align: center;
}
.contact_btn1,
.contact_btn2 {
    font-weight: 500;
    width: 100%;
    max-width: 350px;
    padding: 1rem 4rem;
    display: inline-block;
    transition: .3s;
    text-align: center;
}
.contact_btn1 {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
.contact_btn1:hover {
    background: #fff;
    color: #000;
}
.contact_btn2 {
    border: 1px solid #000;
    background: #fff;
}
.contact_btn2:hover {
    background: #000;
    color: #fff;
}
.contact_btn1:hover,
.contact_btn2:hover {
    opacity: 1;
    transition: .3s;
}
.contact_btn1.reverse {
    background: #fff;
    color: #1f1f1f;
}
.contact_btn1.reverse:hover {
    background: #000;
    color: #fff;
}
.contact_btn2.current {
    background: #000;
    color: #fff;
}
.contact_btn2.current:hover {
    background: #fff;
    color: #000;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

@media (max-width: 1024px) {
    .contact_form_tbl th {
        width: 25%;
    }
    .contact_form_address dt,
    .contact_form_address dd {
        width: 100%;
    }
    .contact_sec_contents {
        width: 100%;
    }
}
@media (max-width: 820px) {
    .contact_form_tbl th {
        width: 30%;
    }
    .contact_form_tbl td {
        padding-left: 5rem;
    }
    .mwform-radio-field {
        display: block;
    }
    .mw_wp_form .horizontal-item + .horizontal-item {
        margin-left: 0;
    }
    .contact_btn1, .contact_btn2 {
        padding: .5rem 4rem;
    }
    .contact_form_tbl td::after {
        width: 5%;
    }
}
@media (max-width: 767px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    input[type="number"] {
        width: 100%;
    }
    input[type="number"],
    input[name="day1"],
    input[name="day2"] {
        width: 90%;
    }
    input[name="zip1"],
    input[name="zip2"] {
        width: 120px;
    }
    .mwform-checkbox-field label, .mwform-radio-field label {
        line-height: 1;
    }
    input[name="syotai"],
    input[name="tikunensu"],
    input[name="nankaidade"] {
        width: 80%;
    }
    .contact_form_tbl th,
    .contact_form_tbl td {
        width: 100%;
        display: block;
        font-size: 1.4rem;
    }
    .contact_form_tbl th {
        padding: 1rem 1rem .5rem 1rem;
    }
    .contact_form_tbl td {
        padding: 1rem 1rem .5rem 1rem;
    }
    .contact_form_tbl th {
        text-align: left;
        border-bottom: 1px solid #b9b9b9;
    }
    .contact_form_tbl tr:nth-child(even) th {
        border-bottom: 1px solid #b9b9b9;
    }
    .contact_form_tbl td::after {
        display: none;
    }
    .contact_form_address dt,
    .contact_form_address dd {
        width: 100%;
        margin-bottom: 3px;
        font-size: 1.4rem;
    }
    .contact_btn1, .contact_btn2 {
        padding: 1rem;
    }
    .contact_sec_contents .contact_btn_wrap {
        flex-wrap: wrap;
    }
    .contact_sec_contents .contact_btn1,
    .contact_sec_contents .contact_btn2 {
        display: block;
    }
    .contact_sec_contents .contact_btn1,
    .contact_sec_contents .contact_btn2 {
        padding: .5rem;
    }
    .hissu,
    .ninni {
        font-size: 1rem;
    }
    input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], select {
        height: 35px;
    }
    select {
        width: 100%;
    }
}

/* ----------------------------------------
よくあるご質問
------------------------------------------*/
.faq_content_wrap:not(:last-child) {
    padding-bottom: 50px;
    margin-bottom: 50px;
    position: relative;
}
.faq_content_wrap:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 1px solid #000;
    bottom: 0;
    left: 0;
}
.faq {
    position: relative;
    margin: 20px 0 0;
    cursor: pointer;
}
.faq::after {
    position: absolute;
    top: 25px;
    right: 20px;
    transform: translateY(-50%) rotate(270deg);
    width: 15px;
    height: 15px;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.007 21.282'%3E%3Cpath d='M12.007,21.282,7.454,10.641,12.007,0,0,10.641Z' fill='%236b5251'/%3E%3C/svg%3E%0A") no-repeat center / contain;
}
.faq_q {
    background: #111110;
    display: flex;
    align-items: center;
    user-select: none;
    color: #fff;
}
.faq_q_deco {
    padding: 1rem;
    display: inline-block;
    font-weight: 900;
    background: #111110;
    color: #fff;
    text-align: center;
    /* width: 80px;
    margin-right: 2rem; */
}
.faq_a {
    position: relative;
    padding: 2rem;
    background: #535353;
}

@media (max-width: 1024px) {
    .faq_contents .tab_item {
        width: calc(100% / 3 - 10px);
        margin-bottom: 10px;
    }
    .faq_contents .tab_item:not(:last-child) {
        margin-right: 0;
    }
    .faq_contents .tab_item:not(:nth-child(3n)) {
        margin-right: 10px;
    }
}
@media (max-width: 820px) {
    .faq_q {
        padding-right: 50px;
    }
}
@media (max-width: 767px) {
    .faq {
        margin: 10px 0 0;
    }
    .faq_q {
        padding: .5rem 2.5rem .5rem 1rem;
    }
    .faq_q_deco {
        /* width: 30px;
        height: 30px;
        line-height: 1;
        margin-right: 1rem; */
        display: none;
    }
    .faq_a {
        margin: 0;
        padding: 16px;
    }
    .faq:after {
        top: 15px;
        right: 10px;
        width: 10px;
        height: 10px;
    }
    .faq_a::before {
        display: none;
    }
    .faq_contents .tab_item {
        width: calc(100% / 2 - 10px);
    }
    .faq_contents .tab_item:not(:nth-child(3n)) {
        margin-right: 0;
    }
    .faq_contents .tab_item:not(:nth-child(2n)) {
        margin-right: 10px;
    }
}

/* ----------------------------------------
お知らせ
------------------------------------------*/

.tab_wrap {
    margin-bottom: 50px;
}
.tab_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tab_item {
    width: calc(100% / 3 - 20px);
}
.tab_item:not(:last-child) {
    margin-right: 20px;
}
.tab_item:nth-child(1) .tab_link { background: #393939;}
.tab_item:nth-child(2) .tab_link { background: #595959;}
.tab_item:nth-child(3) .tab_link { background: #797979;}
.tab_link {
    color: #fff;
    padding: 1rem;
    display: block;
    text-align: center;
    background: #000;
}
.info_list {
    margin-bottom: 30px;
}
.info_list_item {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #333;
}
.info_list_item:not(:last-child) {
    margin-bottom: 10px;
}
.info_list_item_btn {
    font-size: 1.2rem;
    position: relative;
    display: block;
    text-align: right;
}
.info_list_item_btn::before {
    position: absolute;
    content: "";
    width: 7.5px;
    height: 7.5px;
    background: #6B5251;
    top: 50%;
    right: 80px;
    transform: translateY(-50%) rotate(45deg);
}
.label_wrap {
    width: 20%;
}
.time_label {
    margin-right: 20px;
    display: inline-block;
    font-family: Gothic A1;
    letter-spacing: .5px;
    vertical-align: middle;
}
.cat_label {
    width: 100%;
    max-width: 100px;
    padding: .5rem 0;
    border-radius: 15px;
    letter-spacing: .5px;
    text-align: center;
    display: inline-block;
    color: #fff;
    margin-right: 20px;
    background: #000;
}
/* .info_list_item_ttl {
    text-decoration: underline;
} */
.info_3column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info_3column_item {
    border-radius: 3px;
    box-shadow: 3px 3px 5px #cecece;
    margin: 0 20px 50px 0;
    width: calc(100% / 3 - 20px);
    padding: 2rem;
}
.info_3column_item:nth-child(3n) {
    margin-right: 0;
}
.info_3column_item_img_wrap {
    margin-bottom: 10px;
}
.info_3column_item_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.info_3column_item_ttl {
    position: relative;
    padding-left: 25px;
}
.info_3column_item_ttl::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: 15px;
    height: 2px;
    background: #009D2A;
}
@media (max-width: 1180px) {
    .category .xb .innerS > .section {
        padding: 10rem 0rem;
    }
    .category .innerS {
        padding: 0;
    }
}
@media (max-width: 1024px) {
    .label_wrap {
        width: 23%;
    }
    .time_label {
        margin-bottom: 10px;
    }
    .info_list_item_ttl {
        display: block;
    }
}
@media (max-width: 820px) {
    .info_list {
        width: 100%;
    }
    .label_wrap {
        width: 100%;
        margin-bottom: 10px;
    }
    .info_3column_item {
        width: calc(100% / 2 - 20px);
    }
    .info_3column_item:nth-child(2n) {
        margin-right: 0;
    }
    .info_3column_item:nth-child(3n) {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .info_3column_item {
        width: 100%;
        margin: 0 0 50px 0;
    }
    .info_3column_item:nth-child(2n) {
        margin-right: 0;
    }
    .info_3column_item:nth-child(3n) {
        margin-right: 0;
    }
    .time_label {
        margin-bottom: 0;
    }
    .tab_link {
        padding: .5rem;
    }
    .cat_label {
        padding: .25rem 0 .15rem;
        margin-right: 5px;
        margin-bottom: 10px;
        font-size: 1rem;
        max-width: 55px;
    }
    .info_list_item {
        padding-top: 5px;
    }
}

/* ----------------------------------------
お知らせ 詳細
------------------------------------------*/
.single_post_date_wrap {
    margin-bottom: 10px;
}
.single_post_time {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 900;
    letter-spacing: 2px;
}
.single_post_ttl {
    font-weight: 900;
    letter-spacing: .2rem;
    line-height: 1.2;
    position: relative;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}
/* .single_post_ttl::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #111111;
    bottom: -7px;
    left: 0;
} */

@media (max-width: 820px) {
    .single_post_ttl {
    }
}
@media (max-width: 767px) {
    .single_post_time {
        padding: 5px 10px 2px 10px;
        font-size: 1rem;
    }
}

/* ----------------------------------------
プライバシーポリシー
------------------------------------------*/
.privacy_box {
    margin: 2rem 0 5rem 0;
    /* padding: 2rem;
    background: #f1f1f1;
    border-radius: 3px; */
}
.privacy_box_bg {
    background: url(../images/page/privacy_box_bg.png) no-repeat center / cover;
    padding: 4rem 0;
}
.privacy_ttl {
    /* font-weight: bold;
    color: #fff;
    background: #555;
    padding: .3em .6em; */
    position: relative;
    padding-left: 2.5rem;
}
.privacy_ttl:before {
    top: 5px;
    left: 5px;
    position: absolute;
    content: "";
    width: 12.5px;
    height: 12.5px;
    background: #6B5251;

}
.privacy_ttl i {
    margin-right: 5px;
}
.privacy_txt_wrap {
    margin-bottom: 20px;
}
.privacy_list_item {
    position: relative;
    padding-left: 20px;
}
.privacy_list_item::before {
    position: absolute;
    content: '・';
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .privacy_box {
        margin: 0 0 50px;
        padding: 1rem;
    }
    .privacy_txt {
        padding: 0;
    }
}

/* ----------------------------------------
サイトマップ SITEMAP
------------------------------------------*/
/* .sitemap_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */
.sitemap_contents {
    width: 70%;
    margin: 0 auto;
}
.sitemap_list_item {
    border: 1px solid #535353;
    background: #111110;
    position: relative;
}
.sitemap_list_item:hover {
    background: #535353;
}
.sitemap_list_item:not(:last-child) {
    margin-bottom: 15px;
}
.sitemap_list_item::before {
    position: absolute;
    top: 50%;
    left: 20px;
    content: "";
    width: 10px;
    height: 10px;
    background: #333;
    transform: translateY(-50%) rotate(45deg);
}
.sitemap_list_item::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.007 21.282'%3E%3Cpath d='M12.007,21.282,7.454,10.641,12.007,0,0,10.641Z' transform='translate(12.007 21.282) rotate(180)' fill='%236b5251'/%3E%3C/svg%3E%0A") no-repeat center / contain;
}
.sitemap_link {
    display: block;
    padding: 1rem 0 1rem 4rem;
}
.sitemap_list_item:hover .sitemap_link {
    color: #111110;
    opacity: 1;
}

@media (max-width: 767px) {
    .sitemap_contents {
        width: 100%;
    }
    .sitemap_link {
        padding: .5rem 0 .5rem 4rem;
    }
}
