@charset "utf-8";
/* 共通設定
========================================================================== */
html {
    font-size: 62.5%;
    /* 10px */
}
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    min-width: inherit;
    color: #333;
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
    height: 100vh;
}
a {
    color: #000000;
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
ul, ol {
    list-style: none;
}
.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 calc(10 * 100vw / 750) rgba(0, 0, 0, .16);
    background-color: #ffffff;
}
h2, h3, p, li, dt, dd, span, a {
    font-family: "Noto Sans JP", sans-serif !important;
}

@media screen and (min-width: 751px) {
    .container {
        width: min(calc(1200 * 100vw / 1200), 1200px);
        box-shadow: 0 0 min(calc(10 * 100vw / 1200), 10px) rgba(0, 0, 0, .16);
    }
}

/* SP・PC 表示切替え
---------------------------------------------------------- */
@media screen and (min-width: 751px) {
    .is-pc {
        display: block;
    }
    .is-sp {
        display: none;
    }
}
@media screen and (max-width: 750px) {
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}

/* タグ
---------------------------------------------------------- */
#tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* top
========================================================================== */
.top {
    position: relative;
}
.logo_text {
    font-size: calc(16 * 100vw / 750);
    margin-bottom: calc(4 * 100vw / 750);
    color: #3A2A2A;
}
.top_logo {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 2%;
    left: 2%;
    line-height: 1.6;
}
.header_logo-link {
    width: calc(310 * 100vw / 750);
    min-width: 140px;
    line-height: 1;
}
.header_logo-images {
    width: 100%;
}

@media screen and (min-width: 751px) {
    .top {
        position: relative;
    }
    .top_logo {
        line-height: 2;
    }
    .logo_text {
        font-size: min(calc(11 * 100vw / 1200), 11px);
        margin-bottom: 0;
    }
    .header_logo-link {
        width: min(calc(290 * 100vw / 1200), 290px);
    }
}

/* recommend
========================================================================== */
.recommend_inner {
	background: #D6A368;
}
.recommend {
    position: relative;
    display: flex;
    flex-direction: column;
}
.recommend_contents .recommend_title {
	font-size: calc(34 * 100vw / 750);
	line-height: 1.17;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom:calc(26 * 100vw / 750);
}
.recommend_contents .recommend_list {
    display: flex;
    align-items: center;
    gap: 0 calc(40 * 100vw / 750);
}
/* swiper */
.swiper_wrap {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: calc(26 * 100vw / 750) calc(24 * 100vw / 750) calc(8 * 100vw / 750);
}
.recommend_contents .recommend_item {
	width: calc(244 * 100vw / 750);
}
.swiper_wrap img{
    height: auto;
    box-shadow: 0 0 calc(10 * 100vw / 750) rgb(0 0 0 / 16%);
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    width: calc(15 * 100vw / 750);
    height: calc(15 * 100vw / 750);
}
.swiper-pagination-bullet {
    background: #9F9E9E;
    opacity: inherit;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #fff;
}
.swiper-pagination {
    position: static;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,calc(12 * 100vw / 750));
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom,calc(8 * 100vw / 750));
}
.swiper-scrollbar-drag{
    background: #C49393;
}
.swiper-pagination {
    display: block;
}
/* list */
.recommend_menu {
    box-shadow: 0 calc(-6 * 100vw / 750) calc(15 * 100vw / 750) rgb(66 54 46 / 25%);
    z-index: 999;
}
.recommend_menu.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    max-width: 1200px;
    margin-inline: auto;
}
.menu_list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.menu_item {
    position: relative;
    font-size: calc(30 * 100vw / 750);
    line-height: 1.23;
    font-weight: 500;
    letter-spacing: .02em;
    text-align: center;
    background: #fff;
}
.menu_item a {
    display: block;
    color: #fff;
    padding: calc(18 * 100vw / 750) calc(12 * 100vw / 750) calc(20 * 100vw / 750) calc(140 * 100vw / 750);
    text-align: left;
    position: relative;
}
#side_menu ul.smenu_s li::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: calc(30 * 100vw / 750);
    transform: translateY(-50%);
    width: calc(55 * 100vw / 750);
    height: calc(55 * 100vw / 750);
}
.menu_item a::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: calc(30 * 100vw / 750);
    width: calc(75 * 100vw / 750);
    height: calc(98 * 100vw / 750);
    box-shadow: 0 0 calc(10 * 100vw / 750) rgb(0 0 0 / 16%);
}
.menu_item#menu_design a {
    background: #FFAD56;
}
.menu_item#menu_photo a {
    background: #A4DCF1;
}
.menu_item#menu_design a::before {
    background: url("../images/ico_design.webp") 0 0 no-repeat;
    background-size: cover;
}
.menu_item#menu_photo a::before {
    background: url("../images/ico_photo.webp") 0 0 no-repeat;
    background-size: cover;
}

@media screen and (min-width: 751px){
    .recommend {
        display: flex;
        flex-direction: column-reverse;
    }
    .recommend_menu.fixed{
        box-shadow: initial;
    }
    .swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper,.swiper-backface-hidden .swiper-slide{
        transform: none;
    }
    .swiper-slide{
        height: auto;
        flex-shrink: inherit;
    }
    .swiper-wrapper{
        padding-bottom: 0;
        transform: translate3d(0, 0, 0)!important;
    }
    .swiper-pagination {
        display: none;
    }
    .recommend_contents .recommend_inner {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: min(calc(20* 100vw / 1200), 20px) min(calc(80* 100vw / 1200), 80px);
        gap: min(calc(40* 100vw / 1200), 40px);
    }
    .recommend_contents .recommend_title {
        font-size: min(calc(23 * 100vw / 1200), 23px);
        font-weight: bold;
        line-height: 1.69;
        letter-spacing: 0.03em;
        margin: 0;
        text-align: right;
    }
    .recommend_contents .recommend_list {
        display: flex;
        align-items: center;
        gap: 0 min(calc(32* 100vw / 1200), 32px);
    }
    .recommend_contents .recommend_item {
        width: min(calc(108* 100vw / 1200), 108px);
        transition: transform .3s;
    }
    .recommend_contents .recommend_item:hover {
        transform: scale(1.1);
    }
    /* ヨコはがき */
    .recommend_contents .recommend_item.-width {
    width: min(calc(184 * 100vw / 1200), 184px);
    }
    /* list */
    .recommend_menu {
        width: 100%;
        box-shadow: 0 min(calc(4* 100vw / 1200), 4px) min(calc(14* 100vw / 1200), 14px) rgb(0 0 0 / 25%);
        /* position: absolute;
        left: 0;
        top: 0;
        transform: translateY(-100%); */
    }
    .menu_item {
        font-size: min(calc(18* 100vw / 1200), 18px);
    }
    .menu_item a {
        padding: min(calc(11* 100vw / 1200), 11px) 0 min(calc(11* 100vw / 1200), 11px) min(calc(50* 100vw / 1200), 50px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 min(calc(14* 100vw / 1200), 14px);
        height: min(calc(63* 100vw / 1200), 63px);
    }
    .menu_item a::before {
        width: min(calc(46* 100vw / 1200), 46px);
        height: min(calc(60* 100vw / 1200), 60px);
    }
    .menu_item#menu_design a::before {
        left: min(calc(160 * 100vw / 1200), 160px);
    }
    .menu_item#menu_photo a::before {
        left: min(calc(140 * 100vw / 1200), 140px);
    }
    .menu_item a::after {
        content: "";
        display: inline-block;
        width: min(calc(12* 100vw / 1200), 12px);
        height: min(calc(12* 100vw / 1200), 12px);
        border-bottom: min(calc(3* 100vw / 1200), 3px) solid #FFF;
        border-right: min(calc(3* 100vw / 1200), 3px) solid #FFF;
        transform: rotate(45deg);
    }
    .menu_item:hover {
        opacity: .5;
    }
}

/* entrance
========================================================================== */
.entrance {
    position: relative;
    margin: 0 calc(24 * 100vw / 750);
    padding: calc(60 * 100vw / 750) 0 calc(60 * 100vw / 750);
}
.entrance_text {
    color: #3A2A2A;
    font-family: "Noto Sans JP", sans-serif;
    font-size: calc(32 * 100vw / 750);
    font-weight: 500;
    letter-spacing: -.08em;
    line-height: 2;
    text-align: center;
}
.entrance_text + .entrance_text {
    margin-top: calc(40 * 100vw / 750);
}
@media screen and (min-width: 751px) {
    .entrance {
        padding: min(calc(64 * 100vw / 1200), 64px) 0 min(calc(50 * 100vw / 1200), 50px);
        margin: auto;
    }
    .entrance_text {
        font-size: min(calc(22 * 100vw / 1200), 22px);
        letter-spacing: .015em;
        line-height: 1.9;
    }
    .entrance_text + .entrance_text {
        margin-top: initial;
    }
}

/* design
========================================================================== */
.design {
    padding: calc(60 * 100vw / 750) 0 0;
}
.design_inner {
    position: relative;
}
.design_title {
    font-weight: 600;
    font-size: calc(42 * 100vw / 750);
    padding-top: calc(80 * 100vw / 750);
    margin: 0 auto;
    text-align: center;
    width: calc(664 * 100vw / 750);
}
#photo + .design_title {
    padding-top: calc(150 * 100vw / 750);
}
.design_title span {
    display: flex;
    align-items: center;
    margin-bottom: min(calc(5 * 100vw / 1200), 5px);
}
.design_title span:before, .design_title span:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #3A2A2A;
}
.design_title span:before {
    margin-right: .5em;
}
.design_title span:after {
    margin-left: .5em;
}
.design_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    /* gap: calc(100 * 100vw / 750) 0; */
}
.design_item {
    background: #FFFFFF;
    padding: calc(120 * 100vw / 750) 0;
    text-align: center;
    /* width: calc(466 * 100vw / 750); */
    width: 100%;
}
.design_item:nth-child(2n) {
    background: #FFF4DF;
}
.design_item-thumb {
    margin-bottom: calc(72 * 100vw / 750);
}
.design_item-link {
    display: block;
}
.design_item-image {
    margin: auto;
    width: calc(466 * 100vw / 750);
    box-shadow: calc(5 * 100vw / 750) calc(5 * 100vw / 750) calc(25 * 100vw / 750) rgba(0, 0, 0, .35);
}
.design_item-detail {
    width: calc(664 * 100vw / 750);
    margin: 0 auto;
}
.radio-title {
    color: #444;
    font-weight: 500;
    font-size: calc(28 * 100vw / 750);
    margin-bottom: calc(24 * 100vw / 750);
    text-align: left;
}
.radio-group {
    box-shadow: calc(1 * 100vw / 750) calc(1 * 100vw / 750) calc(10 * 100vw / 750) rgba(0, 0, 0, .15);
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: calc(80 * 100vw / 750);
}
.radio-group .radio-item {
    border-bottom: 1px solid #DFD5C2;
    position: relative;
    text-align: left;
    width: 100%;
}
.radio-group .radio-item:last-child {
    border-bottom: none;
}
.radio-group input[type="radio"] {
    appearance: none;
    width: calc(36 * 100vw / 750);
    height: calc(36 * 100vw / 750);
    border: 2px solid #333;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(29 * 100vw / 750);
    z-index: 1;
}
.radio-group input[type="radio"]:checked {
    border-color: #FF6C32;
}
.radio-group input[type="radio"]:checked:after {
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(20 * 100vw / 750);
    height: calc(20 * 100vw / 750);
    background-color: #FF6C32;
    border-color: #FF6C32;
    border-radius: 50%;
}
.radio-group label {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: calc(30 * 100vw / 750) calc(29 * 100vw / 750);
    position: relative;
}
.radio-group label span {
    color: #000;
    display: block;
    font-weight: 500;
    font-size: calc(28 * 100vw / 750);
    letter-spacing: .01em;
    padding-left: calc(54 * 100vw / 750);
    width: 100%;
}
.radio-group input:checked + label {
    color: #FF6C32;
    background-color: #FFF4DF;
    z-index: 0;
}
.radio-group input:checked + label span {
    color: #FF6C32;
}
.radio-group .radio-item:first-child input:checked + label {
    border-radius: 10px 10px 0 0;
}
.radio-group .radio-item:last-child input:checked + label {
    border-radius: 0 0 10px 10px;
}
/*写真フレームタイム*/
#list_photo .design_item:nth-child(2n) {
    background: #D6F4FF;
}
#list_photo .radio-group input[type="radio"]:checked {
    border-color: #0F5CCF;
}
#list_photo .radio-group input[type="radio"]:checked:after  {
    background-color: #0F5CCF;
    border-color: #0F5CCF;
}
#list_photo .radio-group input:checked + label {
    color: #0F5CCF;
    background-color: #D6F4FF;
}
#list_photo .radio-group input:checked + label span {
    color: #0F5CCF;
}

.design_item-btn {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: calc(22 * 100vw / 750) 0;
    border-radius: calc(50 * 100vw / 750);
    box-sizing: border-box;
    background-color: #F62C00;
    color: #ffffff;
    font-weight: 500;
    font-size: calc(35 * 100vw / 750);
    letter-spacing: .05em;
    text-decoration: none;
    transition: opacity .3s;
    width: calc(510 * 100vw / 750);
}
.btn-arrow {
    position: relative;
    left: calc(12 * 100vw / 750);
    width: calc(38 * 100vw / 750);
    height: calc(38 * 100vw / 750);
    border-radius: 50%;
    background: #ffffff;
}
.btn-arrow::after {
    position: absolute;
    content: "";
    top: 50%;
    left: calc(21 * 100vw / 750);
    transform: translate(-50%,-50%);
    width: calc(14 * 100vw / 750);
    height: calc(18 * 100vw / 750);
    background-color: #F62C00;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
/* 横向きはがき */
.design_list.-width {
    margin-top: calc(90 * 100vw / 750);
}
.design_item.-width {
    width: calc(685 * 100vw / 750);
}
.design_item.-width .design_item-image {
    height: auto;
}

@media screen and (min-width: 751px) {
    .design {
        padding: min(calc(50 * 100vw / 1200), 50px) 0 0;
    }
    .design_title {
        font-size: min(calc(28 * 100vw / 1200), 28px);
        padding-top: min(calc(40 * 100vw / 1200), 40px);
        margin: 0 auto;
        width: min(calc(880 * 100vw / 1200), 880px);
    }
    #photo + .design_title {
        padding-top: min(calc(80 * 100vw / 1200), 80px);
    }
    .design_list {
        flex-direction: row;
        flex-wrap: wrap;
        /* max-width: min(calc(864 * 100vw / 1200), 864px); */
        margin: 0 auto;
        /* gap: min(calc(104 * 100vw / 1200), 104px) min(calc(214 * 100vw / 1200), 214px); */
        width: 100%;
    }
    .design_item {
        padding: min(calc(80 * 100vw / 1200), 80px) min(calc(170 * 100vw / 1200), 170px) min(calc(80 * 100vw / 1200), 80px) min(calc(200 * 100vw / 1200), 200px);
        width: 100%;;
    }
    .design_item dl {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        gap: 0 min(calc(80 * 100vw / 1200), 80px);
    }
    .design_item:nth-child(2n) dl {
        flex-direction: row;
    }
    .design_item-thumb {
        margin-bottom: min(calc(32 * 100vw / 1200), 32px);
        width: min(calc(325 * 100vw / 1200), 325px);
    }
    .design_item-link {
        display: block;
        transition: opacity .4s;
    }
    @media (hover: hover) and (pointer: fine) {
            .design_item-link:hover {
            opacity: .7;
        }
    }
    .design_item-image {
        box-shadow: min(calc(5 * 100vw / 1200), 5px) min(calc(5 * 100vw / 1200), 5px) min(calc(25 * 100vw / 1200), 25px) rgba(0, 0, 0, .35);
    }

    .design_item-detail {
        margin: 0;
        width: min(calc(424 * 100vw / 1200), 424px);
    }
    .radio-title {
        font-size: min(calc(18 * 100vw / 1200), 18px);
        margin: min(calc(60 * 100vw / 1200), 60px) 0 min(calc(12 * 100vw / 1200), 12px);
    }
    .radio-group {
        box-shadow: calc(1 * 100vw / 750) calc(1 * 100vw / 750) calc(10 * 100vw / 750) rgba(0, 0, 0, .15);
        margin-bottom: min(calc(80 * 100vw / 1200), 80px);
    }
    .radio-group input[type="radio"] {
        width: min(calc(24 * 100vw / 1200), 24px);
        height: min(calc(24 * 100vw / 1200), 24px);
        left: min(calc(19 * 100vw / 1200), 19px);
        border-radius: 50px;
    }
    .radio-group input[type="radio"]:checked:after {
        width: min(calc(12 * 100vw / 1200), 12px);
        height: min(calc(12 * 100vw / 1200), 12px);
        border-radius: 50px;
    }
    .radio-group label {
        padding: min(calc(20 * 100vw / 1200), 20px) min(calc(40 * 100vw / 1200), 40px);
    }
    .radio-group label span {
        font-size: min(calc(18 * 100vw / 1200), 18px);
        padding-left: min(calc(12 * 100vw / 1200), 12px);
    }
    .design_item-btn {
        padding: min(calc(12 * 100vw / 1200), 12px) 0;
        border-radius: min(calc(50 * 100vw / 1200), 50px);
        font-size: min(calc(20 * 100vw / 1200), 20px);
        transition: .3s all;
        width: min(calc(340 * 100vw / 1200), 340px);
    }
    .btn-arrow {
        left: min(calc(6 * 100vw / 1200), 6px);
        width: min(calc(22 * 100vw / 1200), 22px);
        height: min(calc(22 * 100vw / 1200), 22px);
    }
    .btn-arrow::after {
        left: min(calc(12 * 100vw / 1200), 12px);
        width: min(calc(9 * 100vw / 1200), 9px);
        height: min(calc(12 * 100vw / 1200), 12px);
        transition: .3s all;
    }
    @media (hover: hover) and (pointer: fine) {
        .design_item-btn:hover {
            background: #FF6652 !important;
        }
        .design_item-btn:hover .btn-arrow::after {
            background-color: #FF6652 !important;
        }
    }
    /* 横向きはがき */
    .design_list.-width {
        max-width: min(calc(996 * 100vw / 1200), 996px);
        margin-top: min(calc(90 * 100vw / 1200), 90px);
        gap: min(calc(104 * 100vw / 1200), 104px) min(calc(64 * 100vw / 1200), 64px);
    }
    .design_item.-width {
        width: min(calc(466 * 100vw / 1200), 466px);
    }
}

/* service
========================================================================== */
/* .service {
    background: #F7F7F7;
} */
:is(.messeage,.step) {
    background: #F7F7F7;
    color: #3A2A2A;
}
:is(.messeage-text,.step_about,.step_item-text,.service_item-text,.service_item-link) {
    font-family: "Noto Sans JP", sans-serif;
}
.messeage-text,.step_about {
    font-weight: 500;
}
.step_item::before {
    border-top: calc(41* 100vw / 750) solid #FF6243;
}
.step_item-text {
    font-weight: 500;
}
.service_item-arrow {
    background: #FF6243;
}

@media screen and (min-width: 751px) {
    .step_item::before {
        border-top: min(calc(20* 100vw / 1200), 20px) solid transparent;
        border-left: min(calc(25* 100vw / 1200), 25px) solid #FF6243;
    }
    .service_item-link:hover {
        opacity: 1;
        color: #FF6243;
    }
}
/* appeal
========================================================================== */

/* design_feature
========================================================================== */
.feature_bottom-btn a {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #F62C00;
}
.feature_btn-arrow::after {
    border-left: calc(16* 100vw / 750) solid #F62C00 !important;
}
@media screen and (min-width: 751px) {
    .feature_bottom-btn a:hover {
        background: #78A9B7 !important;
    }
    .feature_bottom-btn a:hover::before{
        opacity: 0;
    }
    .feature_btn-arrow::after {
        border-bottom: min(calc(8* 100vw / 1200), 8px) solid transparent;
        border-left: min(calc(12* 100vw / 1200), 12px) solid #F62C00 !important;
        transition: all .3s;
    }

    .feature_bottom-btn a:hover .feature_btn-arrow::after {
        border-left: min(calc(12* 100vw / 1200), 12px) solid #78A9B7 !important;
        opacity: 1;
    }
}
/* footer
========================================================================== */
.footer {
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    height: calc(368*100vw/750);
}
.footer_inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}
/* bottom
-------------------------------------------------------------------------- */
.bottom {
    padding: calc(20 * 100vw / 750) 0;
    font-size: calc(24 * 100vw / 750);
    letter-spacing: .02em;
    background: #D6A368;
    color: #fff;
}
.bottom a {
    color: #fff;
}
/* bread */
.bread_list {
    display: flex;
    justify-content: center;
    margin-bottom: calc(8 * 100vw / 750);
}
.bread_item:not(:last-child)::after {
    padding: 0 calc(8 * 100vw / 750);
    content: "＞";
}
/* copy */
.copyright {
    text-align: center;
}
.copyright_link {
    text-decoration: underline;
}
.copyright_link:hover {
    text-decoration: none;
}

@media screen and (min-width: 751px) {
    .footer {
        height: min(calc(244 * 100vw / 1200), 244px);
    }
    /* bottom
    -------------------------------------------------------------------------- */
    .bottom {
        padding: min(calc(14 * 100vw / 1200), 14px) 0;
        font-size: min(calc(12 * 100vw / 1200), 12px);
        letter-spacing: .04em;
    }
    /* bread */
    .bread_list {
        margin-bottom: min(calc(4 * 100vw / 1200), 4px);
    }
    .bread_item:not(:last-child)::after {
        padding: 0 min(calc(8 * 100vw / 1200), 8px);
    }
    .bread_item a:hover {
        text-decoration: underline;
    }

}
