@charset "UTF-8";

body {
    font-family: 'ten-mincho';
}

.top {
    display: flex;
}
.mainvisual {
    width: 100%;
}
.sidemenu {
    width: 12%;
    /* height: 100%; */
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    padding-bottom: 30px;
    z-index: 900;
}
@media screen and (max-width: 768px){
    .sidemenu {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        padding-bottom: 0;
        z-index: 900;
        background-color: rgba(51, 51, 51, 0.9);
        transition: all 0.5s;/*アニメーション設定*/
    }
    .top.top--modify {
        flex-direction: column;
        position: relative;
        height: 100vh;
    }
    .top.top--modify::before {
        content: '';
        background-image: url(../img/icon-name_sp--tate.png);
        width: 25%;
        height:  50%;
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
    }
}

/* ボタンスタイルリセット */
input[type="submit"], input[type="button"], input[type="reset"] {
    -webkit-appearance: none;
    border-radius: 0;
}

/*---------- 共通部分 ----------*/
.img {
    width: 100%;
}
.pc_view{
    display: inline-block;
}
.sp_view{
    display: none;
}
@media screen and (max-width: 768px){
    .pc_view{
        display: none;
    }
    .sp_view{
        display: inline-block;
    }
}
/* main部分 */
.main .main-visual {
    width: 100%;
    /* height: 660px; */
}
.main .mainvisual.mainvisual--top {
    width: 100vw;
    height: auto;
    /* max-height: 660px; */
    overflow: hidden;
}
@media screen and (max-width: 768px){
    /* .main .mainvisual.mainvisual--top {
        position: relative;
        height: 100vh;
    } */
    /* .main .mainvisual.mainvisual--top::before {
        content: '';
        background-image: url(../img/icon-name_sp--tate.png);
        width: 25%;
        height:  50%;
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    } */
}

/* スライダー */
.top_slider {
	width: 100vw;
	/* max-width: 1267px; */
    height: 100%;
    /* max-height: 660px; */
    overflow: hidden;
}
@media screen and (max-width: 768px){
    /* .top_slider_list {
        position: relative;
        height: 100vh;
    }
    .top_slider_list::before {
        content: '';
        background-image: url(../img/icon-name_sp--tate.png);
        width: 25%;
        height:  50%;
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    } */
}

/* sidemenu部分 */
.sidemenu .sidemenu-icon {
    width: 82px;
    height: 255px;
    margin: 30px auto 0;
}
.sidemenu .sidemenu-list {
    margin-top: 45px;
    padding: 0 13px;
}

.sidemenu .sidemenu-list.sidemenu-list--modify::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #666666;
}
.sidemenu .sidemenu-list .sidemenu-list_item {
    font-family: "ten-mincho";
    font-size: 13px;
    margin-top: 20px;
}
.sidemenu .sidemenu-list .sidemenu-list_item.sidemenu-list_item--modify {
    padding-top: 20px;
}
.sidemenu .sidemenu-list .sidemenu-list_item.sidemenu-list_item--modify::before {
    content: '';
    background-image: url(../img/icon-cart.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
}
.sidemenu .sidemenu-list .sidemenu-list_item:first-child {
    margin-top: 0;
}
.sidemenu_link {
    text-decoration: none;
    color: #000;
}
.sidemenu_link:hover {
    opacity: 0.5;
}
.sidelink:hover {
    opacity: 0.5;
}
#menu-btn-check {
    display: none;
}
.menu-btn {
    display: none;
}
.hamburger-menu_add {
    display: none;
}
@media screen and (max-width: 768px){
    .menu-btn {
        display: inline-block;
    }
    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 30px;
        width: 30px;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 2px;
        width: 30px;
        background-color: #666666;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
        background-color: #fff;
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
        background-color: #fff;
    }
    #menu-btn-check:checked ~ .sidemenu {
        left: 0;/*メニューを画面内へ*/
    }
    .sidemenu .sidemenu-icon {
        width: 50%;
        height: auto;
        margin: 50px auto 0;
    }
    .sidemenu .sidemenu-list {
        width: 50%;
        margin: 45px auto 0;
    }
    .sidemenu .sidemenu-list.sidemenu-list--modify::before {
        background-color: #fff;
    }
    .sidemenu .sidemenu-list .sidemenu-list_item {
        font-family: "ten-mincho";
        font-size: 17px;
        margin-top: 20px;
        text-align: center;
    }
    .sidemenu .sidemenu-list .sidemenu-list_item.sidemenu-list_item--modify {
        padding-top: 20px;
    }
    .sidemenu .sidemenu-list .sidemenu-list_item.sidemenu-list_item--modify::before {
        background-image: url(../img/icon-cart--sp.png);
        width: 18px;
        height: 18px;
    }
    .sidemenu .sidemenu-list .sidemenu-list_item:first-child {
        margin-top: 0;
    }
    .sidemenu_link {
        color: #fff;
    }
    .hamburger-menu_add {
        display: inherit;
        position: fixed;
        top: 35px;
        right: 10px;
        z-index: 1000;
        font-size: 12px;
        color: #666666;
    }
    #menu-btn-check:checked ~ .hamburger-menu_add {
        color: #fff;
    }
}

/* footer */
.footer {
    border-top: 1px solid #666666;
    margin-top: 30px;
    padding: 30px 0;
}
.footer .footer-img {
    text-align: center;
}
.footerlink {
    display: inline-block;
    text-decoration: none;
    color: #000;
}
.footer .footer-img .footer-img_container {
    width: auto;
    max-width: 250px;
}
.footer .footer-img .footer-img_container:hover {
    opacity: 0.5;
}
.footer .footer-nav {
    margin-top: 35px;
}
.footerlist {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerlist .footerlist-item {
    margin-left: 15px;
}
.footerlist .footerlist-item:first-child {
    margin-left: 0;
}
.footerlink {
    font-size: 14px;
}
.footerlink:hover {
    opacity: 0.5;
}
@media screen and (max-width: 768px){
    .footer {
        padding: 30px;
    }
    .footer .footer-img {
        text-align: center;
    }
    .footerlink {
        display: inline-block;
        text-decoration: none;
        color: #000;
    }
    .footer .footer-img .footer-img_container {
        width: auto;
        max-width: 250px;
    }
    .footer .footer-img .footer-img_container:hover {
        opacity: 0.5;
    }
    .footer .footer-nav {
        margin-top: 35px;
    }
    .footerlist {
        display: flex;
        justify-content: inherit;
        align-items: center;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-top: -5px;
    }
    .footerlist .footerlist-item {
        margin-top: 5px;
        margin-left: 10px;
    }
    .footerlist .footerlist-item:first-child {
        margin-left: 10px;
    }
    .footerlink {
        font-size: 13px;
    }
}

/* パンくずリスト */
.breadcrumb {
    width: 84%;
    margin: 20px 0 0 auto;
}

.breadcrumb-inner {
    display: flex;
    list-style: none;
    font-size: 12px;
    text-decoration: none;
}

.breadcrumb_list-link {
    color: #000;
    text-decoration: none;
}

.breadcrumb_list-left::after {
    content: "\03e";
    margin: 0 5px;
    display: inline-block;
    line-height: 1;
}
@media screen and (max-width: 768px){
    .breadcrumb {
        width: auto;
        margin-top: 10px;
        padding: 0 12px;
    }
    .breadcrumb-inner {
        font-size: 10px;
    }
}

/* main-content　共通部分 */
.main-content {
    margin-top: 50px;
}
.main-content .main-content_item {
    margin-top: 50px;
}
.main-content .main-content_item:first-child {
    margin-top: 0;
}
.main-content .main-content_item.main-content_item--modify {
    background-color: #F6EFE4;
    padding: 40px 0;
}
.title {
    text-align: center;
}
.title::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: #BF272D;
}
.title .title-ruby {
    font-size: 14px;
    letter-spacing: 0.3em;
}
.title .title-main {
    font-family: "ten-mincho";
    font-size: 26px;
    margin-top: 5px;
    letter-spacing: 0.3em;
}

.container {
    width: auto;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 12%;
}

.button {
    text-align: center;
    margin-top: 30px;
}
.button--contact {
    display: inline-flex;
}
.button_link {
    border: 1px solid #666666;
    padding: 3px 15px;
    text-decoration: none;
    color: #000;
    font-family: "ten-mincho";
}
.button_link:hover {
    opacity: 0.5;
}
.button_link.button_link--contact {
    background-color: #fff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}
.button_link.button_link--contact:first-child {
    margin-left: 0;
}
.button_link.button_link--news {
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button_link.button_link--news:hover {
    color: #fff;
    background-color: #666666;
}
.buttonlist {
    display: inline-flex;
}
.buttonlist .buttonlist-item {
    margin-left: 20px;
}
.buttonlist .buttonlist-list:first-child {
    margin-left: 0;
}
.banner {
    text-align: center;
    margin-top: 30px;
}
.banner_link {
    display: inline-block;
}
.banner_link-img {
    width: auto;
    max-width: 660px;
}
.banner_link-img:hover {
    opacity: 0.5;
}
.anchor {
	display: block;
	padding-top: 50px;
	margin-top: -50px;
}
@media screen and (max-width: 768px){
    .main-content {
        margin-top: 25px;
    }
    .container {
        width: auto;
        max-width: auto;
        padding: 0 8%;
    }
    .title::after {
        width: 30px;
    }
    .title .title-ruby {
        font-size: 10px;
        letter-spacing: 0.3em;
    }
    .title .title-main {
        font-size: 14px;
        margin-top: 5px;
        letter-spacing: 0.3em;
    }
    .button {
        margin-top: 20px;
    }
    .button_link {
        font-size: 14px;
    }
    .banner {
        padding: 0 12px;
    }
}

/*--------- topページ ---------*/

/* news部分 */

.newslist {
    margin-top: 30px;
    border-top: 1px solid #666666;
}
.newslist .newslist-item {
    border-bottom: 1px solid #666666;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.newslist .newslist-item::after {
    content: '';
    display: inline-block;
    background-image: url(../img/icon-arrow.png);
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    color: #666666;
    margin-left: 5px;
}
.news {
    display: flex;
    text-decoration: none;
    color: #000;
    width: 100%;
}

.news:hover {
    opacity: 0.5;
}
.news .news-date {
    font-size: 16px;
}
.news .news-title {
    margin-left: 50px;
    flex: 1;
    font-size: 16px;
    word-break: break-all;
}
@media screen and (max-width: 768px){
    .newslist .newslist-item {
        padding: 10px 5px;
    }
    .news {
        flex-direction: column;
    }
    .news .news-date {
        font-size: 14px;
    }
    .news .news-title {
        margin-left: 0px;
        margin-top: 10px;
        font-size: 14px;
    }
}

/* about部分 */

.about {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.about .about-img {
    width: 400px;
}
.about .about-text {
    margin-left: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;

}
.about .about-text .about-text_item {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 14px;
    margin-right: 50px;
    line-height: 2;
}
.about .about-text .about-text_item.about-text_item--modify {
    font-size: 18px;
    margin-right: 0;
}
@media screen and (max-width: 768px){
    .about {
        flex-direction: column;
    }
    .about .about-img {
        width: auto;
    }
    .about .about-text {
        margin-left: 0;
        margin-top: 25px;
        justify-content: center;
    }
    .about .about-text .about-text_item {
        font-size: 12px;
        margin-right: 15px;
        line-height: 1.5;
    }
    .about .about-text .about-text_item.about-text_item--modify {
        font-size: 15px;
    }
}

/* sweets */

.sweetslist {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}
.sweetslist .sweetslist-item {
    margin-left: 30px;
}
.sweetslist .sweetslist-item:first-child {
    margin-left: 0;
}
.sweetslink {
    text-decoration: none;
}
.sweets {
    width: auto;
    max-width: 320px;
}
.sweets:hover {
    opacity: 0.5;
}
.sweets .sweets-img {
    width: auto;
}
.sweets .sweets-title {
    text-align: center;
    font-family: "ten-mincho";
    font-size: 17px;
    color: #000;
    margin-top: 5px;
}
@media screen and (max-width: 768px){
    .sweetslist {
        flex-direction: column;
        margin-top: 30px;
    }
    .sweetslist .sweetslist-item {
        margin-left: 0;
        margin-top: 25px;
    }
    .sweetslist .sweetslist-item:first-child {
        margin-top: 0;
    }
    .sweets {
        max-width: 100%;
    }
    .sweets .sweets-img {
        width: auto;
    }
    .sweets .sweets-title {
        font-size: 14px;
        margin-top: 5px;
    }
}

/* shopinfo */

.shop {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
}
.shop .shop-map {
    width: 404px;
}
.info {
    margin-left: 30px;
}
.info .info-title {
    font-size: 24px;
}
.info .info-detail {
    margin-top: 23px;
}
.info .info-detail .info-detail_item {
    font-size: 18px;
    margin-top: 5px;
}
.info .info-detail .info-detail_item:first-child {
    margin-top: 0;
}
.info .info-link {
    margin-top: 30px;
    display: flex;
}
.info .info-link .info-link_item {
    margin-left: 20px;
}
.info .info-link .info-link_item:first-child {
    margin-left: 0;
}
.infolink {
    width: 100px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border: 1px solid #666666;
    text-decoration: none;
    color: #000;
}
@media screen and (max-width: 768px){
    .shop {
        flex-direction: column;
        margin-top: 25px;
    }
    .shop .shop-map {
        width: 100%;
        overflow: hidden;
        text-align: center;
    }
    .info {
        margin-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .info .info-title {
        font-size: 16px;
    }
    .info .info-detail {
        margin-top: 15px;
    }
    .info .info-detail .info-detail_item {
        font-size: 13px;
        margin-top: 5px;
    }
    .info .info-detail .info-detail_item:first-child {
        margin-top: 0;
    }
    .info .info-link {
        flex-direction: column;
        margin-top: 15px;
    }
    .info .info-link .info-link_item {
        margin-left: 0;
        text-align: center;
    }
    .infolink {
        width: 90px;
        height: 20px;
        font-size: 10px;
    }
}

/*--------- 店舗のご案内  ---------*/

.company {
    margin-top: 50px;
}
.company .company-infolist {
    width: auto;
    max-width: 500px;
    margin: 0 auto;
}
.company .company-infolist .company-infolist_item {
    border-bottom: 1px dotted #666666;
    padding-bottom: 5px;
    margin-top: 15px;
}
.company .company-infolist .company-infolist_item:first-child {
    margin-top: 0;
}
.companyinfo {
    display: flex;
}
.companyinfo .companyinfo-title {
    font-size: 17px;
    color: #666666;
    width: 70px;
}
.companyinfo .companyinfo-detail {
    font-size: 17px;
    margin-left: 20px;
    flex: 1;
    word-break: break-all;
    line-height: 1.5;
}

.access {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.access .access-info {
    margin: 0 auto;
}
.access .access-info .access-info_list {
    width: auto;
    max-width: 850px;
    margin: 0 auto;
}
.access .access-info .access-info_list .access-info_item {
    margin-top: 30px;
}
.access .access-info .access-info_list .access-info_item:first-child {
    margin-top: 0;
}
.accessinfo {
    display: flex;
    align-items: baseline;
}
.accessinfo .accessinfo-title {
    font-size: 17px;
    color: #736357;
    width: 150px;
    border-right: 1px solid #736357;
    border-left: 1px solid #736357;
    padding: 0 13px;
    box-sizing: border-box;
}
.accessinfo .accessinfo-detail {
    font-size: 17px;
    margin-left: 20px;
    word-break: break-all;
    line-height: 1.5;
    width: auto;
    max-width: 675px;
}
.access .access-info .access-info_add {
    font-size: 15px;
    text-indent: -1em;
    padding-left: 1em;
    width: auto;
    max-width: 850px;
    margin: 20px auto 0;
}
.access .access-map {
    width: 800px;
    margin: 20px auto 0;
}
@media screen and (max-width: 768px){
    .company {
        margin-top: 25px;
    }
    .companyinfo .companyinfo-title {
        font-size: 13px;
        width: 60px;
    }
    .companyinfo .companyinfo-detail {
        font-size: 13px;
        margin-left: 10px;
    }
    .accessinfo .accessinfo-title {
        font-size: 13px;
        width: auto;
        min-width: 120px;
        max-height: 40px;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border-top: 1px solid #736357;
        border-bottom: 1px solid #736357;
    }
    .accessinfo .accessinfo-detail {
        font-size: 13px;
        margin-left: 20px;
    }
    .access .access-info .access-info_add {
        font-size: 12px;
        text-indent: -1em;
        padding-left: 1em;
        width: auto;
        margin: 15px auto 0;
    }
    .access .access-map {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

/* 千代乃舎竹村のこと */

.about_us {
    margin-top: 50px;
}
.about_us .about_us-text {
    font-size: 17px;
    line-height: 1.7;
}
.about_us .about_us-text.about_us-text--modify {
    margin-top: 25px;
}
.about_us .about_us-container {
    background-color: #F4F1EB;
    padding: 20px;
    margin-top: 25px;
    box-sizing: border-box;
}
.about_us .about_us-sign {
    text-align: right;
    font-size: 17px;
    margin-top: 15px;
}
.about_us .about_us-sign>span {
    font-size: 20px;
    margin-left: 10px;
}
.description {
    display: flex;
}
.description .description-item {
    font-size: 17px;
    line-height: 1.7;
    flex: 1;
}
.description .description-item .description-item--modify {
    padding-left: 1em;
    flex: inherit;
    display: inline-block;
}
.description .description-img {
    width: 360px;
    margin-left: 30px;
}
.description .description-add {
    font-size: 14px;
    line-height: 1.4;
}
.history {
    width: 100%;
    margin-top: 50px;
}

.materiallist {
    margin-top: 50px;
}
.materiallist .materiallist-item {
    margin-top: 60px;
}
.materiallist .materiallist-item:first-child {
    margin-top: 0;
}

.material {
    display: flex;
}
.material .material-title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 27px;
    font-family: "ten-mincho";
    border-right: 1px solid #333333;
    padding-right: 20px;
}
.material .material-text {
    flex: 1;
    margin-left: 25px;
    font-size: 17px;
    line-height: 1.7;
}
.material .material-img {
    width: 315px;
}
.material .material-img.material-img--right {
    margin-left: 25px;
}
.material .material-img.material-img--left {
    margin-right: 25px;
}
@media screen and (max-width: 768px){
    .about_us {
        margin-top: 25px;
    }
    .about_us .about_us-text {
        font-size: 15px;
    }
    .about_us .about_us-container {
        background-color: #F4F1EB;
        padding: 30px 15px;
        margin-top: 20px;
    }
    .about_us .about_us-sign {
        text-align: right;
        font-size: 15px;
        margin-top: 15px;
    }
    .about_us .about_us-sign>span {
        font-size: 18px;
        margin-left: 5px;
    }
    .description {
        flex-direction: column;
    }
    .description .description-item {
        font-size: 13px;
    }
    .description .description-img {
        width: auto;
        margin-left: 0px;
        margin-top: 15px;
    }
    .description .description-add {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 14px;
    }
    .history {
        margin-top: 30px;
    }
    .material {
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }
    .material .material-title {
        font-size: 20px;
        padding-right: 10px;
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }
    .material .material-text {
        margin-top: 10px;
        margin-left: 15px;
        font-size: 13px;
        grid-row: 2 / 3;
        grid-column: 2 / 3;
    }
    .material .material-img {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        width: auto;
        max-width: 315px;
    }
    .material .material-img.material-img--right {
        margin-left: 15px;
    }
    .material .material-img.material-img--left {
        margin-right: 0;
        margin-left: 15px;
    }
}

/* product */
.headline {
    font-size: 17px;
    text-align: center;
    margin-top: 15px;
}
.productlist {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
}
.productlist .productlist-item {
    width: auto;
    max-width: 20%;
    margin-left: 50px;
    margin-top: 30px;
}
.productlist .productlist-item:hover {
    opacity: 0.5;
}
.product .product-title {
    font-size: 17px;
    text-align: center;
    color: #000;
    margin-top: 5px;
}
.product .product-subtitle {
    font-size: 15px;
    text-align: center;
    color: #000;
    margin-top: 5px;
}
.product .product-img {
    position: relative;
    width: 214px;
    height: 214px;
    overflow: hidden;
}
.img.product_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: auto;
    height: 100%;
    object-fit: cover;
}

.detail {
    background-color: #fff;
    width: auto;
    height: auto;
    padding: 50px 50px 25px;
    box-sizing: border-box;
    position: relative;
}
.detail .detail-head .detail-head_rabel {
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    box-sizing: border-box;
    display: inline-block;
}
.detail .detail-head .detail-head_rabel.detail-head_rabel--always {
    background-color: #C65F4D;
}
.detail .detail-head .detail-head_rabel.detail-head_rabel--season {
    background-color: #586e59;
}
.detail .detail-head .detail-head_rabel.detail-head_rabel--eatin {
    background-color: #aa8059;
}
.detail .detail-head .detail-head_title {
    font-size: 38px;
    margin-top: 15px;
}
.detail .detail-head .detail-head_subtitle {
    font-size: 36px;
    margin-top: 5px;
}
.detail .detail-body {
    margin-top: 15px;
}
.detail .detail-body .detail-body_img {
    width: 100%;
}
.detail .detail-body .detail-body_text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}
.detail .detail-foot {
    margin-top: 30px;
}

.inline {
    text-decoration: none;
}


@media screen and (max-width: 1024px){
    .headline {
        font-size: 12px;
    }
    .productlist {
        margin: 0;
        justify-content: space-between;
        margin-left: 0;
    }
    .productlist .productlist-item {
        width: 45%;
        max-width: inherit;
        min-width: 140px;
        margin-top: 30px;
        margin-left: 0;
    }
    .product {
        width: 100%;
    }
    .product .product-title {
        font-size: 12px;
    }
    .product .product-subtitle {
        font-size: 10px;
    }
    .product .product-img {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }
    .detail {
        padding: 0;
    }
    .detail .detail-head .detail-head_rabel {
        font-size: 10px;
    }
    .detail .detail-head .detail-head_title {
        font-size: 25px;
        margin-top: 10px;
    }
    .detail .detail-head .detail-head_subtitle {
        font-size: 23px;
    }
    .detail .detail-body {
        margin-top: 12px;
    }
    .detail .detail-body .detail-body_img {
        width: 100%;
    }
    .detail .detail-body .detail-body_text {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 10px;
    }
    .detail .detail-foot {
        margin-top: 15px;
    }
}

/* お問い合わせページ */

.headline.headline--modify {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.7;
}
.contactlist {
    margin: 30px auto 0;
    border-top: 1px dotted #666666;
    width: auto;
    max-width: 620px;
}
.contactlist .contactlist-item {
    border-bottom: 1px dotted #666666;
    padding: 10px 0 10px 10px;
}
.contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contact .contact-title {
    display: flex;
    align-items: center;
}
.contact .contact-title .contact-title_main {
    font-family: "ten-mincho";
    font-size: 17px;
    color: #666666;
}
.contact .contact-title .contact-title_rabel {
    font-family: "ten-mincho";
    font-size: 14px;
    line-height: 1;
    color: #fff;
    background-color: #BF272D;
    width: 38px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}
.contact_area {
    width: 410px;
    background-color: #F7F6F0;
    border: none;
    padding: 10px;
    box-sizing: border-box;
}
.contact_area.contact_area--modify {
    height: 240px;
    resize: none;
}
.m-captcha {
    text-align: center;
    margin-top: 30px;
}
.captcha__img {
    display: inline-flex;
    align-items: center;
}
.other {
    margin-left: 15px;
}
.captcha__desc {
    margin-top: 15px;
}
.captcha__input {
    margin-top: 15px;
}
@media screen and (max-width: 768px){
    .headline.headline--modify {
        font-size: 13px;
        line-height: 1.7;
        text-align: center;
    }
    .contactlist {
        width: 100%;
    }
    .contactlist .contactlist-item {
        padding: 10px;
    }
    .contact {
        flex-direction: column;
    }
    .contact .contact-title .contact-title_main {
        font-size: 13px;
    }
    .contact .contact-title .contact-title_rabel {
        font-size: 8px;
        width: 25px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }
    .contact .contact-item {
        width: 100%;
        margin-top: 10px;
    }
    .contact_area {
        width: 100%;
    }
    .captcha__img {
        flex-direction: column;
    }
}

/* 記事詳細 */
.article {
    margin-top: 50px;
}
.article .article-head {
    border-bottom: 1px solid #BF272D;
    padding: 0 10px 5px;
}
.article .article-head .article-head_date {
    font-size: 14px;
}
.article .article-head .article-head_title {
    font-size: 25px;
    margin-top: 10px;
}
.article .article-body {
    padding: 15px 10px;
    box-sizing: border-box;
}
.article .article-body .article-body_text {
    font-size: 16px;
    word-break: break-all;
    line-height: 1.5;
    margin-top: 15px;
}
.article .article-body .article-body_img {
    width: 640px;
    margin-top: 15px;
}

