@charset "utf-8";

/*
navi用CSS
グローバルナビ・フッターナビ・パンくず
*/


/* パンくず リスト
---------------------------------------------------- */

.aioseo-breadcrumbs {
    width: 90%;
    max-width: 1160px;
    margin: 20px auto 0;
    position: relative;
    z-index: 5;

    @media screen and (max-width:900px) {
        margin: 0 auto 0;
    }
}

.breadcrumb span {
    margin: 0 auto 5%;
}


/* .aioseo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
} */

.aioseo-breadcrumbs span {
    font-size: 1.4rem;
    color: #999999;
    position: relative;
}

@media screen and (max-width:900px) {
    .aioseo-breadcrumbs span {
        font-size: 1.1rem;
    }
}

.aioseo-breadcrumbs span.aioseo-breadcrumb-separator {
    font-size: 1.4rem;
    padding: 0 5px 0 5px;
}

.aioseo-breadcrumbs span:first-child {
    padding: 3px 0 0 25px;
    background: url('../../assets/img/common/icon_home.png') no-repeat top 2px left;
    background-size: 15px auto;
}

@media screen and (max-width:900px) {
    .aioseo-breadcrumbs span:first-child {
        padding: 1px 15px 0 22px;
        background: url('../../assets/img/common/icon_home.png') no-repeat top 0 left;
        background-size: 15px auto;
    }
}

.aioseo-breadcrumbs a {
    color: #999999;
    transition: .6s;
}

.aioseo-breadcrumbs a:visited {
    color: #999999;
}

.aioseo-breadcrumbs a:hover {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
}

.aioseo-breadcrumbs::before {
    content: "";
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
}


/* CONTENTS NAV
---------------------------------------------------- */

.contents_nav {
    width: 100%;
    padding: 20px 0 18px;
    background: #F5F5F5;
}

.contents_nav dl {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

@media screen and (max-width:900px) {
    .contents_nav dl {
        flex-direction: column;
    }
}

.contents_nav dl dt {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.14em;
    color: #777777;
    margin: 0 35px 0 0;
}

@media screen and (max-width:900px) {
    .contents_nav dl dt {
        font-size: 1.6rem;
        margin: 0 auto 20px;
    }
}

.contents_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width:900px) {
    .contents_nav ul {
        /*flex-direction: column;*/
    }
}

.contents_nav li {
    margin: 0 20px;
}

.contents_nav li .link_txt_style02 a {
    font-size: 1.6rem;
    padding: 0 0 10px 30px;
}

@media screen and (max-width:900px) {
    .contents_nav li .link_txt_style02 a {
        font-size: 1.4rem;
        padding: 0 0 5px 20px;
    }
}


/* ページ送り
---------------------------------------------------- */

.pagination {
    width: 90%;
    max-width: 420px;
    margin: 0 auto 100px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width:900px) {
    .pagination {
        margin: 0 auto 50px;
    }
}

.pagination_items {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
}

@media screen and (max-width:900px) {
    .pagination_items {
        font-size: 1.4rem;
    }
}

.pagination_items li {
    margin: 0 5px;
}

.pagination_items li a {
    color: #444444;
    width: 40px;
    height: 40px;
    border: 1px solid #999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s;
}

@media screen and (max-width:900px) {
    .pagination_items li {
        margin: 0 2px;
    }
    .pagination_items li a {
        width: 30px;
        height: 30px;
    }
}

.pagination_items li a:visited {
    color: #444444;
}

.pagination_items li a:hover {
    background: #CFCFCF;
}

.pagination_items li.is-active a {
    color: #fff;
    border: 1px solid #EC8B2D;
    background: #EC8B2D;
}

.pagination_items li.dots {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:900px) {
    .pagination_items li.dots {
        width: 30px;
        height: 30px;
    }
}

.pagination_prev,
.pagination_next {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border: 1px solid #999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s;
    position: relative;
}

@media screen and (max-width:900px) {
    .pagination_prev,
    .pagination_next {
        width: 30px;
        height: 30px;
    }
}

.pagination_prev::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #555555;
    border-left: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:900px) {
    .pagination_prev::before {
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-right: 5px solid #555555;
    }
}

.pagination_next::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #555555;
    border-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:900px) {
    .pagination_next::before {
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #555555;
    }
}

.visuallyhidden {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}


/* sitemap
---------------------------------------------------- */

.sitemap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:780px) {
    .sitemap {
        margin: 0 auto 40px;
        flex-direction: column;
    }
}

.sitemap_block {
    margin: 0 20px 20px;
}

.sitemap_margin01 {
    margin-top: 35px;
    margin-right: 0;
}

@media screen and (max-width:780px) {
    .sitemap_block {
        margin: 0 20px 0;
    }
    .sitemap_margin01 {
        margin-top: 0;
    }
}

.sitemap_block li {
    padding: 0 0 10px 15px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
}

.sitemap_block li a {
    color: #444444;
    transition: .6s;
}

.sitemap_block li a:visited {
    color: #444444;
}

.sitemap_block li a:hover {
    color: #EC8B2D;
}

.sitemap_block li:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #EC8B2D;
    border-right: 0;
    position: absolute;
    top: 8px;
    left: 0;
}

@media screen and (max-width:900px) {
    .sitemap_block li {
        font-size: 1.4rem;
    }
    .sitemap_block li:after {
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid #EC8B2D;
        top: 5px;
    }
}

.sitemap_block li.lv2 {
    padding: 0 0 10px 40px;
}

.sitemap_block li.lv2:after {
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    border-style: solid;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #BBBBBB;
    border-left: 1px solid #BBBBBB;
    border-right: 0;
    position: absolute;
    top: 5px;
    left: 20px;
}


/* グローバルナビゲーション
---------------------------------------------------- */

.grobal_nav {
    /*margin: 0 0 0 10px;*/
    background: rgba(255, 138, 25, 0.9);
    padding: 20px 0;
    line-height: 1.4;
    position: relative;
    z-index: 10;
    transition: .6s;
}

.top_nav_color {
	background: rgba(102,102,102,0.9);
}

#toggle {
    display: none;
}

.grobal_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grobal_nav ul ul {
    display: block;
}

.grobal_nav ul li {
    margin: 0 12px 0 12px;
    text-align: center;
    position: relative;
}

@media screen and (max-width:1200px) {
    .grobal_nav ul li {
        margin: 2px 6px;
    }
}

.grobal_nav ul ul li {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.grobal_nav ul li a {
    display: block;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
	font-weight: 700;
    padding: 0 10px;
    color: #fff;
    white-space: nowrap;
    position: relative;
    transform: 6s;
    opacity: 1;
}

.grobal_nav ul li a span {
    width: 100%;
    font-size: 1.3rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #fff;
    display: block;
}

@media screen and (max-width:1200px) {
    .grobal_nav ul li a {
        font-size: 1.5rem;
    }
    .grobal_nav ul li a span {
        font-size: 1.2rem;
    }
}

.grobal_nav ul li a:visited {
    color: #fff;
}

.grobal_nav ul li a:hover {
    transform: 6s;
}

.grobal_nav ul li li a {
    padding: 10px 35px;
    font-size: 1.4rem;
    font-weight: normal;
}


/*2階層目を持つliの矢印の設定*/

.grobal_nav ul li.has-child::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 45px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #fff;
    border-bottom: 0;
    transform: translateX(-50%);
}

.grobal_nav li.has-child ul {
    position: absolute;
    left: 50%;
    top: 62px;
    transform: translateX(-50%);
    z-index: 4;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}


/*hoverしたら表示*/

.grobal_nav li.has-child:hover>ul,
.grobal_nav li.has-child ul li:hover>ul,
.grobal_nav li.has-child:active>ul,
.grobal_nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}


/*ナビゲーションaタグの形状*/

.grobal_nav li.has-child ul li a {
    color: #fff;
    border-bottom: solid 1px rgba(0, 0, 0, 0.06);
    background: rgba(255, 138, 25, 1);
    transition: all .3s;
}

.grobal_nav li.has-child ul li:last-child a {
    border-bottom: solid 1px rgba(255, 138, 25, 1);
}

.grobal_nav li.has-child ul li a:hover,
.grobal_nav li.has-child ul li a:active {
    color: rgba(255, 138, 25, 1);
    background: rgba(255, 255, 255, 1);
}

.grobal_nav ul li.other {
    display: none;
    padding: 20px 0;
}

@media screen and (max-width:900px) {
    .grobal_nav {
        margin: 0;
        width: 100%;
        background: rgba(255, 138, 25, 0);
        padding: 0;
        position: fixed;
        top: 0 !important;
        left: 0;
        z-index: 2000;
    }
    /*トグルボタンのスタイルを指定*/
    #toggle {
        display: block;
		position: fixed;
		right: 0;
		top: 0;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 2000;
		background: rgba(255, 138, 25, 1);
    }
    #toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 1px #fff;
        transition: .35s ease-in-out;
        left: 10px;
    }
    #toggle span:nth-child(1) {
        top: 14px;
    }
    #toggle span:nth-child(2) {
        top: 23px;
    }
    #toggle span:nth-child(3) {
        top: 32px;
    }
    /* 最初のspanをマイナス45度に */
    #toggle.active span:nth-child(1) {
        top: 23px;
        left: 10px;
        border-bottom: solid 1px #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* 2番目と3番目のspanを45度に */
    #toggle.active span:nth-child(2),
    #toggle.active span:nth-child(3) {
        top: 23px;
        border-bottom: solid 1px #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .grobal_nav ul {
        background-color: rgba(255, 138, 25, 0.95);
        display: block;
    }
    #gnav {
        position: fixed;
        width: 100%;
        height: 100%;
        padding: 0 0 80px;
        background: rgba(255, 138, 25, 1);
        padding: 20px;
        overflow: scroll;
        display: none;
    }
    .grobal_nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
    .grobal_nav ul li a {
        display: block;
        padding: 15px 5px;
        font-size: 1.6rem;
        font-weight: 700;
        width: 100%;
        color: #fff;
        transition: .6s;
    }
    .grobal_nav ul li a:after {
        display: none;
    }
    .grobal_nav ul li a span {
        font-size: 1.4rem;
        color: #fff;
    }
    .grobal_nav ul li a:visited {
        color: #fff;
    }
    .grobal_nav ul li a:hover {
        opacity: 0.6;
    }
    .grobal_nav li.has-child ul {
        position: relative;
        left: 0;
        top: 0;
        transform: translateX(0);
        width: 100%;
        visibility: visible;
        /*JSで制御するため一旦表示*/
        opacity: 1;
        /*JSで制御するため一旦表示*/
        display: none;
        transition: none;
        border: 5px solid rgba(255, 255, 255, 0.5);
    }
    .grobal_nav ul li.has-child::before {
        /*display: none;*/
    }
    .grobal_nav ul li.has-child::before {
        top: 35px;
        left: 20px;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-top: 6px solid #fff;
    }
    .grobal_nav ul ul li.has-child::before {
        transform: rotate(135deg);
        left: 20px;
    }
    .grobal_nav ul li.has-child.active::before {
        transform: rotate(-180deg);
    }
    .grobal_nav ul li li a {
        font-size: 1.4rem;
        font-weight: normal;
    }
    .grobal_nav li.has-child ul li a {
        color: #fff;
        border-bottom: 1px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.1);
        transition: all .3s;
    }
    .grobal_nav li.has-child ul li:last-child {
        border-bottom: 0px;
    }
    .grobal_nav li.has-child ul li a:hover,
    .grobal_nav li.has-child ul li a:active {
        color: rgba(255, 138, 25, 1);
        background: rgba(255, 255, 255, 1);
        opacity: 1;
    }
    .grobal_nav ul li.other {
        display: block;
    }
}

.grobal_nav ul li.other .tel_box {
    padding: 0;
}

.grobal_nav ul li.other .tel_box p {
    display: inline-block;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.2;
    padding: 0 0 0 35px;
    background: url('../../assets/img/common/icon_tel01_w.png') no-repeat top 10px left 0;
    background-size: 25px auto;
    white-space: nowrap;
}

.grobal_nav ul li.other .tel_box p a {
    font-size: 3.4rem;
    color: #fff;
    padding: 0 0 5px 0px;
}

.grobal_nav ul li.other .tel_box .inner {
    justify-content: center;
    font-size: 1.3rem;
}

.grobal_nav ul li.other .tel_box .inner dl {
    display: flex;
    justify-content: center;
    color: #fff;
    margin: 0 10px;
}

.grobal_nav ul li.other .tel_box .inner dt {
    margin: 0 10px 0 0;
}

.grobal_nav ul li.other .btn {
    margin: 20px 0 0;
}

.grobal_nav ul li.other .btn a {
    width: 280px;
    height: 55px;
    background: #fff;
    border: 1px solid #EC8B2D;
    color: #EC8B2D;
    margin: 0 auto;
}

.grobal_nav ul li.gnav__instagramblog img {
    margin-bottom: 0;
    width: 28px;
    height: auto;
}