@media screen and (min-width:1241px){
  .pc_hide{
    display: none!important;
  }
}/*@media(min-width:1241){*/

@media screen and (max-width:1240px){
  .pad_hide{
    display: none!important;
  }
  
  main{
    padding-top: 80px;
  }
  /*
  ------------------------------------
  アニメーション関係
  ------------------------------------
  */
  

  
  /*
  ------------------------------------
  共通パーツ
  ------------------------------------
  */
  
  .hide{
    display: none!important;
  }
  
  .container{
    max-width: 600px;
    margin:0 auto;
  }
  
  
  
  /*明太子のデコレーションが乗ったタイトル*/
  .common_sec_deco_title{
    font-size: 46px;
    line-height: 1.2;
  }
  
  .common_sec_deco_title::before{
    width:67px;
    height:27px;
    margin-bottom: 16px;
  }
  
  
  /*赤色のリンクボタン*/
  .common_red_button{
    width: 380px;
    height: 70px;
    font-size: 20px;
    transition-duration: 0.4s;
  } 
  

  .common_red_button::after{
    width: 30px;
    height: 30px;
    right:20px;
  }


  /*商品のカテゴリー選定エリア*/
  .common_products_cat_menu_area{
  
  }
  .common_products_cat_menu_area .products_menu_tag_list{
    display: flex;
    justify-content: space-between;
  }
  
  .common_products_cat_menu_area .products_cat_tag{
    width: 19.5%;
    padding:16px 3px;
    background-color: #ad9f82;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;    
  }

  
  .common_products_cat_menu_area .products_cat_body{
    padding:32px 24px;
    margin-top: 0;
  }
  
  .common_products_cat_menu_area .products_cat_body ul{
    display: flex;
    flex-wrap: wrap;
    gap:20px 2.3%;
  }
  
  .common_products_cat_menu_area .products_cat_body ul li{
    width: 31.8%;
  }
  
  .common_products_cat_menu_area .products_cat_body ul li a{
    border: solid 1px #e83929;
    font-size: 15px;
  }

  
  .common_products_cat_menu_area .products_cat_body ul li a .button_inner{
    height: 40px;
    padding: 0 10px;
    position: relative;
    
  }
  
  .common_products_cat_menu_area .products_cat_body ul li a .button_inner::after{
    width: 20px;
    height: 20px;
    margin-left: 6px;
  }
  
  /*新着情報一覧*/
  .common_news_list{

  }
  
  .common_news_list .news_line{
    border-bottom:2px solid #cecbc5;
  }
  
  .common_news_list .news_item{
    padding:24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .common_news_list .news_item::after{
    width: 26px;
    height: 26px;
    margin-left: 24px;
  }
  
  .common_news_list .news_contents{
    display: flex;
    align-items: flex-start;
  }
  
  .common_news_list .news_date{
    width:150px;
    font-size: 18px;
    line-height: 1.5;
  }
  
  .common_news_list .news_title{
    font-size: 18px;
    line-height: 1.5;
    letter-spacing:0.1em;
  }
  
  
  /*
  ------------------------------------
  ヘッダー
  ------------------------------------
  */
  
  header{

  }
  
  header .header_inner{
    padding:0 24px;
  }
  
  header .header_flex{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:80px;
  }
  
  header .header_logo{
    display: block;
    width:222px;
  }
  
  header .header_logo img{
    width:100%;
  }
  

  header .header_area01{
    display: none;
  } 

  header .header_area02{
    display: none;
  }
  

  header .header_right{
    display: flex;
    align-items: center;
  }

  header .sp_tel{
    width: 45px;
    border-radius: 50%;
  }

  header .sp_tel img{
    width:100%;
  }

  header .drawer_open{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 48px;
    height: 36px;
    cursor: pointer;
    margin-left: 32px;
  }

  header .drawer_open .bar{
    height:3px;
    background-color: #e83929;
    transition-duration: 0.5s;
  }

  header .drawer_open.active .bar1 {
    transform: translateY(16px) rotate(-45deg);
  }
  header .drawer_open.active .bar2 {
    display: none;
  }
  header .drawer_open.active .bar3 {
    transform: translateY(-16px) rotate(45deg);
  }

  #drawer_menu_bg {
    transition-duration: 0.4s;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 18;
    pointer-events: none;
    opacity: 0;
  }

  #drawer_menu_bg.show{
    pointer-events: auto;
    opacity: 1;
  }
    

  #drawer_menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 19;
    width: 100%;
    max-width: 450px;
    height: calc(100vh);
    height: calc(var(--vh2, 1vh)* 100);
    background-color: #e83929;
    pointer-events: none;
    transition-duration: 0.4;
    opacity: 0;
    overflow-y: scroll;
  }
  #drawer_menu.show {
    pointer-events: auto;
    opacity: 1;
  }

  #drawer_menu .drawer_menu_inner {
    padding: 110px 15px 60px;
  }

  #drawer_menu .input_frame{
    position: relative;
  }

  #drawer_menu .input_frame .keyword{
    display: block;
    width: 100%;
    height: 30px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.38;
    padding:0 16px;
  }

  #drawer_menu .input_frame .keyword::placeholder{
    color: #b1aea8;
  }

  #drawer_menu .input_frame .serach_button{
    border:none;
    background: none;
    border-radius: 0;
    position: absolute;
    width: 16px;
    cursor: pointer;
    top:0;
    bottom:0;
    right:16px;
    margin:auto;
  }

  #drawer_menu .input_frame .serach_button img{
    width:100%;
  }

  #drawer_menu .drawer_nav{
    margin-top: 32px;
  }

  #drawer_menu .parent_item{
    border-bottom:1px solid #f4877d;
  }

  #drawer_menu .parent_link{
    padding:16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    color: #fff;
  }

  #drawer_menu .parent_link::after{
    content:'';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-image: url('../img/common/icon_radi_arrow_right_red.png');
  }

  #drawer_menu .parent_name{
    padding:16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    color: #fff;
  }

  #drawer_menu .parent_name::after{
    content:'';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-image: url('../img/common/icon_radi_arrow_bottom_red.png');
    transition-duration: 0.4s;
  }

  #drawer_menu .has_child.active .parent_name::after{
    transform: rotateZ(180deg);
  }

  #drawer_menu .child_menu{
    padding:0 15px;
    background-color: #ef5a4c;
    padding-bottom: 8px;
    display: none;
  }

  #drawer_menu .child_item{
    border-bottom:1px solid #f9a79f;
  }

  #drawer_menu .child_link{
    padding:12px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    color: #fff;
  }

  #drawer_menu .child_link::after{
    content:'';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-image: url('../img/common/icon_radi_arrow_right_red.png');
  }

  #drawer_menu .child_name{
    padding:12px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    color: #fff;
  }

  #drawer_menu .child_name::after{
    content:'';
    width: 10px;
    height: 5.5px;
    background-image: url('../img/common/icon_angle_bottom_white.png');
    transition-duration: 0.4s;
    margin-right: 3px;
  }

  #drawer_menu .has_grand_child.active .child_name::after{
    transform: rotateZ(180deg);
  }

  #drawer_menu .grand_child_menu{
    display: none;
  }

  #drawer_menu .grand_child_item{
    border-bottom: 1px solid #f07267;
  } 

  #drawer_menu .grand_child_link{
    padding:10px 8px 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    color: #fff;
    font-size: 14px;
  }

  #drawer_menu .grand_child_link::after{
    content:'';
    width: 4.5px;
    height: 8px;
    background-image: url('../img/common/icon_angle_right_white.png');
    transition-duration: 0.4s;
    margin-right: 3px;
  
  }

  #drawer_menu .button_area{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }

  #drawer_menu .button_area a{
    width: 49%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    position: relative;
  }

  #drawer_menu .button_area a::after{
    content:'';
    position: absolute;
    top: 50%;
    right:10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  
  #drawer_menu .button_area a span{
    position: relative;
  }
  
  #drawer_menu .button_area a span::before{
    content:'';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  
  #drawer_menu .button_area a.contact_link{
    background-color: #fff;
    color:#e83929;
  }
  
  #drawer_menu .button_area a.contact_link::after{
    background-image: url('../img/common/icon_radi_arrow_right_white_red.png'); 
  }
  
  #drawer_menu .button_area a.contact_link span::before{
    background-image: url('../img/common/icon_mail_red.png'); 
    width: 18px;
    height: 14px;
    left:-24px;
  }
  
  #drawer_menu .button_area a.estimate_link{
    background-color: #37a24b;
    color:#fff;
  }
  
  #drawer_menu .button_area a.estimate_link::after{
    background-image: url('../img/common/icon_radi_arrow_right_green.png'); 
  }
  
  #drawer_menu .button_area a.estimate_link span::before{
    background-image: url('../img/common/icon_estimate_white.png'); 
    width: 13px;
    height: 18px;
    left:-18px;
  }
  /*
  ------------------------------------
  お問い合わせセクション
  ------------------------------------
  */
  
  .common_contact_section{
    padding-top: 72px;
    padding-bottom: 80px;
  }
  
  .common_contact_section .sec_title{
    font-size: 32px;
    line-height: 1;
  }
  
  .common_contact_section .p01{
    margin-top: 28px;
    font-size: 15px;
    white-space: nowrap;
    line-height: 2.11;
    text-align: center;
  }
  
  .common_contact_section .flex{
    margin:36px auto 0;
    display: flex;
    justify-content: space-between;
  }
  
  .common_contact_section .flex a{
    width: 48%;
    height: 80px;
    border-radius: 40px;
    font-size: 22px;
  }
  
  .common_contact_section .flex a::after{
    width: 40px;
    height: 40px;
    right:20px;
  }

  .common_contact_section .flex a.contact_link span::before{
    width: 34px;
    height: 25px;
    left:-46px;
  }
  
  .common_contact_section .flex a.estimate_link span::before{
    width: 24px;
    height: 34px;
    left:-40px;
  }
  
  .common_contact_section .tel_box_frame{
    max-width: 840px;
    margin:50px auto 0;
    position: relative;
  }
  
  .common_contact_section .tel_box_head{
    font-size: 22px;
    top:-11px;
  }
  
  .common_contact_section .tel_box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 32px 0;
    flex-direction: column;
  }
  
  .common_contact_section .tel_box::before{
    height:3px;
    background-image: linear-gradient(to right, #fff 25%, transparent 25%, transparent 75%, #fff 75%);

  }
  
  .common_contact_section .tel_box .tel{
    font-size: 44px;
  }
  
  .common_contact_section .tel_box .tel::before{
    width: 42px;
    height: 42px;
    margin-right: 10px;
  }
  
  
  .common_contact_section .tel_box p{
    font-size: 20px;
    margin-left: 0; 
    margin-top: 12px;
  
  }
  
  /*
  ------------------------------------
  フッター
  ------------------------------------
  */
  footer{
  
  }
  
  footer .footer_area01{
    padding-top: 60px;
    padding-bottom: 50px;
  }
  
  footer .footer_flex{
    display: flex;
    /* justify-content: space-between; */
    align-items:center;
    flex-direction: column;
  }
  
  footer .footer_flex .footer_left{
    flex-shrink: 0;
    margin-right: 0;
  }
  
  footer .footer_logo{
    display: block;
    width:202px;
    margin:0 auto;
  } 

  
  footer .sns_list{
    margin-top: 24px;
    justify-content: center;
  }
  
  footer .sns_list li{
    margin:0 10px;
  }
  
  footer .sns_list .sns_x{
    width:37px;
  }
  footer .sns_list .sns_youtube{
    width:41px;
  }
  footer .sns_list .sns_line{
    width:35px;
  }
  footer .sns_list .sns_facebook{
    width:35px;
  }
  
  footer .shop_link{
    margin:32px auto 0;
  }

  footer .footer_right{
    margin-top: 40px;
  }
  
  footer .footer_nav{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:0;
  }
  
  
  footer .parents_menu{
    width:46%;
    margin-top: 40px;
  }
  
  footer .parents_item{
    padding-top: 14px;
    padding-bottom: 14px;
  }
  
  footer .parents_item.has_child{
    border-bottom:2px solid #cecbc5;
    padding-right: 6px;
  }
  
  footer .parents_item:first-child{
    padding-top: 0;
  }
  
  footer .parents_link{
    font-size: 18px;
  }
  
  footer .parents_name{
    font-size: 18px;
    line-height: 1.3;
  }
  
  footer .parents_name::after{
    width: 14px;
    height: 8px;
    margin-left: 12px;
  }

  
  footer .child_menu .child_link{
    padding:8px 10px;
    font-size: 18px;
  }
  
  footer .child_menu .child_link::after{
    width: 8px;
    height: 14px;
    margin-left: 6px;
  }
  
  footer .footer_copy{
    padding:20px 0;
    font-size: 18px;
  }
  
  /*
  ------------------------------------
  トップページ
  ------------------------------------
  */
  
  body.top_body{
  
  }
  main.top_main{
  
  }
  
  .top_section{
    
  }

  
  .top_mv_section .flex{
    display: flex;
  }
  
  .top_mv_section .flex .left{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  .top_mv_section .left .p01{
    font-size: calc(36 / 1920 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.15;
  }
  
  .top_mv_section .left .p01 span{
    font-size: calc(44 / 1920 * 100vw);
  }
  
  .top_mv_section .left .p02{
    margin-top: calc(40 / 1920 * 100vw);
    font-size: calc(44 / 1920 * 100vw);
    line-height: 1.6;  
  }
  
  .top_mv_section .left .p02 span{
    font-size: calc(48 / 1920 * 100vw);
  } 
  
  .top_mv_section .flex .right{
    width:calc(1200 / 1920 * 100vw);
    flex-shrink: 0;
  }

  .top_mv_section .mv_swiper_button{
    width: calc(80 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
  }
  
  .top_mv_section .mv_swiper_button::after{
    width: calc(33 / 1920 * 100vw);
    height: calc(12 / 1920 * 100vw);
  }
  
  .top_mv_section .mv_swiper_prev{
    left:calc(40 / 1920 * 100vw);
  }

  .top_mv_section .mv_swiper_next{
    right:calc(40 / 1920 * 100vw);
  }
  
  .top_mv_section .mv_slide{
    aspect-ratio: 1/0.617;
  }

  
  .top_mv_section .mv_swiper_pagenation{
    bottom:30px;
    right:40px;
    z-index: 10;
  }
  
  .top_mv_section .mv_swiper_pagenation .swiper-pagination-bullet{
    width:12px;
    height:12px;
    margin:0 6px;
  }
  
  
  .top_pickup_section{
    padding:24px 0;
  }
  
  .top_pickup_section .flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    
    position: relative;
  }
  
  .top_pickup_section .flex .left{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  
  
  .top_pickup_section .sec_title{
    font-size: 24px;
    line-height: 1.5;
  }
  
  .top_pickup_section .news_list{
    margin-left: 0;
    margin-top: 16px;
    padding-top: 6px;
  }
  
  .top_pickup_section .news_item{
    display: flex;
  }
  
  .top_pickup_section .news_item+.news_item{
    margin-top: 8px;
  }
  
  .top_pickup_section .news_item .news_date{
    font-size: 18px;
    line-height: 1.5;
    width:130px;
  }
  
  .top_pickup_section .news_item .news_title{
    font-size: 18px;
    line-height: 1.5;
  }
  
  
  .top_pickup_section .flex .right{
    flex-shrink: 0;
    padding-top: 8px;
    margin-left: 0;
    width: 0;
  }
  
  .top_pickup_section .news_link{
    position: absolute;
    right:0;
    top:0;
    font-size: 18px;

  }
  
  .top_pickup_section .news_link::after{
    width: 22px;
    height: 22px;
    margin-left: 12px;
  }
  
  .top_text_section{
    padding-top: 72px;
    padding-bottom: 72px;
  }
  
  .top_text_section .head_text{
    font-size: 32px;
    line-height: 1.48;
    letter-spacing: 1.5;
    text-align: center;
  }
  
  .top_text_section .p01{
    margin-top: 32px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: 0.05em;
    text-align: center;
  }
  
  
  .top_search_section{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .top_search_section .common_products_cat_menu_area{
    margin-top: 48px;
  }
  
  .top_search_section .common_products_cat_menu_area .products_cat_body {
    border: solid 3px #e83929;
    margin-top: 0;
  }
  
  .top_search_section .common_red_button{
    margin:48px auto 0;
  }
  
  
  .top_recommend_section{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .top_recommend_section .recommend_list{
    margin-top: 48px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap:32px 0;
  }
  
  .top_recommend_section .recommend_list li{
    width:220px;
  }

  
  .top_recommend_section .recommend_item .recommend_name{
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.56;
  }
  
  .top_recommend_section .common_red_button{
    margin:72px auto 0;
  }
  
  .top_staff_section{
    padding-top: 140px;
    padding-bottom: 120px;

  }
  
  .top_staff_section .deco_border{
    height:3px;
  }
  
  .top_staff_section .deco_border01{
    height:6px;
  }
  .top_staff_section .deco_border02{
    top:12px;
  }
  .top_staff_section .deco_border03{
    bottom:6px;
  }
  
  .top_staff_section .text_deco{
    width: 100%;
  }

  .top_staff_section .text_deco img{
    height:133px;
  }

  .top_staff_section .text_deco01{
    top:32px;
  }
  
  .top_staff_section .text_deco02{
    bottom:24px;
  }

  .top_staff_section .sec_title img{
    width:1141px;
    max-width: 100%;
  }
  
  .top_staff_section .img_flex{
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .top_staff_section .img_flex .deco{
    position: static;
    z-index: 4;
  }
  
  .top_staff_section .img_flex .deco01{
    width:167px;
    top:0;
    left:-62px;
  }
  .top_staff_section .img_flex .deco02{
    width:204px;
    top:-48px;
    right:-80px;
  }
  
  .top_staff_section .p01{
    font-size: 24px;
    line-height: 1.83;
    margin-top: 16px;
  }
  
  
  .top_staff_section .common_red_button{
    margin: 56px auto 0;
  }
  
  .top_staff_section .swiper_block{
    width: 100vw;
    margin: 56px calc(50% - 50vw) 0;
  }
  
  .top_staff_section .color_deco{
  
  }
  
  .top_staff_section .color_deco01{
    width: 113px;
    height: 31px;
    bottom:90px;
    right:calc(50% + 615px);
  }
  .top_staff_section .color_deco02{
    width: 249px;
    height: 52px;
    bottom:20px;
    right:calc(50% + 428px);
  }
  
  .top_staff_section .color_deco03{
    width: 113px;
    height: 31px;
    top:48px;
    left:calc(50% + 592px);
  }
  
  .top_staff_section .color_deco04{
    width: 249px;
    height: 52px;
    top:108px;
    left:calc(50% + 446px);
  }
  
  
  .top_staff_section .staff_swiper_button{
    width: 56px;
    height: 56px;
  }
  
  .top_staff_section .staff_swiper_button::after{
    content:'';
    width: 30px;
    height: 10px;
  }
  
  .top_staff_section .staff_swiper_prev{
    left:calc(50% - 350px);
  }
  
  .top_staff_section .staff_swiper_next{
    right:calc(50% - 350px);
  }

  
  .top_staff_section .staff_slide{
    width:640px;
    padding: 20px 40px;
    opacity: 0.5;
  }
  
  .top_staff_section .staff_slide.swiper-slide-active{
    opacity: 1;
  }
  
  
  .top_staff_section .staff_card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-right: 0;
    min-height:auto;
    border-radius: 10px;

  }
  
  .top_staff_section .staff_card .img_area{
    width: calc(631px * 0.6);
    height: calc(464px * 0.6);
    padding-left: 12px;
  }
  
  .top_staff_section .staff_card .color_card01{
    width: calc(614px * 0.6);
    height: calc(441px * 0.6);
    transform: rotateZ(173deg);
    top:0;
    left:0;
  }
  
  .top_staff_section .staff_card .color_card02{
    z-index: 11;
    width: calc(614px * 0.6);
    height: calc(441px * 0.6);
    transform: rotateZ(178deg);
    top:0;
    left:0;
  }
  
  .top_staff_section .staff_card .pic_frame{
    width: calc(614px * 0.6);
    height: calc(441px * 0.6);
    border:6px solid #fff;
    transform: rotateZ(3deg);
    top:0;
    left:0;
  }

  
  .top_staff_section .staff_card .staff_right{
    width:100%;
    min-height:auto;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
  }
  
  .top_staff_section .staff_card .staff_catch span{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.83;
    letter-spacing: 0.1em;
  }
  
  .top_staff_section .staff_card .staff_name01{
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
  
  .top_staff_section .staff_card .staff_name02{
    font-size: 14px;
    line-height:1.3;
    letter-spacing: 0.1em;
    margin-top: 8px;
  }
  
  .top_staff_section .staff_card .staff_border{
    margin-top: 12px;
  
  }
  
  .top_staff_section .staff_card .staff_depart{
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0.1em;
  }
  
  .top_staff_section .staff_card .reco_flex{
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  .top_staff_section .staff_card .reco_left{
    margin-right: 20px;
    width:120px;
    height: 60px;
    border-radius: 6px;
    font-size: 18px;
    line-height: 1.22;

  }
  
  
  .top_staff_section .staff_card .reco_left::after{
    border-width: 8px 0 8px 8px;
    right:-7px;

  }
  
  .top_staff_section .staff_card .reco_right{
    font-size: 18px;
    line-height: 1.56;
    letter-spacing: 0.1em;
  }
  
  .top_link_section{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fdf8ed;
  }
  
  .top_link_section .flex{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 720px;
    margin:0 auto;
    padding:0 20px;
    gap:32px 0;
    margin-bottom: 100px;
  }
  
  .top_link_section .flex .block{
    width: 100%;
    border-radius: 10px;
    padding:56px 24px;
    position: relative;
  }

  
  .top_link_section .flex .block .radi_text{
    right:20px;
    bottom:20px;

    font-size: 18px;
  
  }
  
  .top_link_section .flex .block .radi_text::after{
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }
  
  .top_link_section .flex .block_inner{
    width:100%;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .top_link_section .flex .block_head{
    font-size: 32px;
  }
  
  .top_link_section .flex .block_head::after{
    width: 50px;
    height: 3px;
    margin-top: 16px;
  }
  
  .top_link_section .flex .block_text{
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.8;
    white-space: normal;
  }
  
  
  .top_link_section .link_list .link_item{
    display: flex;
    justify-content: center;
  }
  
  .top_link_section .link_list .link_item:nth-child(even){
    justify-content: center;
  }
  
  .top_link_section .link_block{
    width:530px;
    min-height: auto;
    position: relative;
    z-index: 1;
  }
  
  .top_link_section .link_block .common_sec_deco_title{
    align-items: center;
  }
  
  .top_link_section .link_block_text{
    margin-top: 24px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: 0.1em;
  } 
  
  .top_link_section .link_block .common_red_button{
    margin: 40px auto 0;
  }
  
  .top_link_section .link_block .pic{
    position: static;
    width:100%;
    margin-top: 24px;
  }
  
  
  .top_link_section .link_item02 {
    margin-top: 80px;
    position: relative;
  }
  
  .top_link_section .link_item02::before{
    content:none;
  }
  
  .top_link_section .link_item02 .link_block{
    min-height: auto;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .top_link_section .link_item03{
    margin-top: 80px;
  }
  
  .top_news_section{
    padding-top: 80px;
    padding-bottom: 80px;  
  } 
  
  .top_news_section .common_news_list{
    margin-top: 48px;
  }



  /*
  ------------------------------------
  下層共通
  ------------------------------------
  */

  /*
  ------------------------------------
  パンクズ
  ------------------------------------
  */


  .common_bread_section{

  }

  .common_bread_section{
    padding:24px 0;
  }

  .common_bread_section .bread_list{
    gap:20px;
    font-size: 18px;
  }

  /*
  ------------------------------------
  下層MV
  ------------------------------------
  */

  .page_mv_section{
    padding:20px 0;
    min-height:260px;
  }

  .page_mv_section .common_sec_deco_title{
    font-size: 42px;
  }

  .page_mv_section::before{
    width: 1860px;
    border-radius: 10px;
  }

  /*
  ------------------------------------
  商品一覧ページ
  ------------------------------------
  */

  body.archive_products_body{
    
  }

  main.archive_products_main{

  }

  .archive_products_section{

  }

  .archive_products_section01{
    padding-top: 72px;
    padding-bottom: 126px;
  }

  .archive_products_section01 .page_title{
    font-size: 36px;
  }

  .archive_products_section01 .cat_flex{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 60px auto 0;
  }

  .archive_products_section01 .cat_flex .cat_head{
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
  }

  .archive_products_section01 .cat_flex .cat_area{
    width:100%;
    
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    border: solid 2px #e83929;
    padding:24px 24px;
  }

  .archive_products_section01 .cat_area .cat_parents_list{
    flex-direction: column;
    align-items: flex-start;
  }

  .archive_products_section01 .cat_area .cat_parents_item{
    position: relative;
    cursor: pointer;
  }

  .archive_products_section01 .cat_area .cat_parents_item + .cat_parents_item{
    margin-top: 24px;
  }

  .archive_products_section01 .cat_area .cat_parents_item span{
    font-size: 18px;
    justify-content: flex-start;
  }

  .archive_products_section01 .cat_area .cat_parents_item span::after{
    width: 26px;
    height: 26px;
    margin-left: 8px;
    transition-duration: 0.4s;
  }

  .archive_products_section01 .cat_area .cat_parents_item.active span::after{
    transform: rotateZ(180deg);
  }


  .archive_products_section01 .cat_area .cat_child_frame{
    position: static;
    top: 100%;
    left: 50%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    padding-top: 16px;
    transition-duration: 0s;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .archive_products_section01 .cat_area .cat_child_menu{
    white-space: nowrap;
    border-radius: 0;
    border: none;
    background-color: transparent;
    min-width: auto;
  }

  .archive_products_section01 .cat_area .cat_child_item{
    border-bottom:none;
  }

  .archive_products_section01 .cat_area .cat_child_item:last-child{
    border-bottom:none
  }

  .archive_products_section01 .cat_area .cat_child_item + .cat_child_item{
    margin-top: 14px;
  }

  .archive_products_section01 .cat_area .cat_child_item a{
    width: fit-content;
    padding:0;
    font-size: 16px;
    line-height: 1.3;
  }

  .archive_products_section01 .cat_area .cat_child_item a::after{
    width: 6px;
    height: 12px;
    margin-left: 6px;
  }

  .archive_products_section01 .products_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:48px 0;
    margin-top: 80px;
  }

  .archive_products_section01 .products_item{
    width: 48%;
  } 

  .archive_products_section01 .products_card{
    display: block;
  }

  .archive_products_section01 .products_card .products_name{
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.5;
  }

  .archive_products_section01 .common_pagenation{
    margin-top: 80px;
  }


  /*
  ------------------------------------
  商品詳細
  ------------------------------------
  */

  body.single_products_body{
    
  }

  main.single_products_main{

  }

  .single_products_section{

  }

  .single_products_section01{
    padding-top: 72px;
    padding-bottom: 100px;
  }


  .single_products_section01 .flex{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .single_products_section01 .flex .left{
    flex-shrink: 0;
    width:100%;
    margin-right: 0;
  }

  .single_products_section01 .flex .right{
    width:100%;
  }


  .single_products_section01 .products_gal_arrow{
    width: 52px;
    height: 52px;
    border: solid 2px #e83929;
  }

  .single_products_section01 .products_gal_arrow::after{
    width: 26px;
    height: 10px;
  }
  .single_products_section01 .products_gal_arrow.prev{
    left:-26px;
  }

  .single_products_section01 .products_gal_arrow.next{
    right:-26px;
  }

  .single_products_section01 .products_gal_list{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap:15px;
  }

  .single_products_section01 .products_gal_list .products_gal_item{
    width:108px;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
  }


  .single_products_section01 .products_num{
    width: fit-content;
    padding: 6px 15px;
    background-color: #e83929;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    color: #fff;
  }

  .single_products_section01 .products_name{
    margin-top: 24px;
    font-size: 32px;
    padding-bottom: 30px;
    border-bottom:none;
  }

  .single_products_section01 .products_info{
    margin-top: 32px;
    font-size: 18px;
    line-height: 2.11;
  }

  .single_products_section01 .right .products_pdf{
    margin:0 auto;
    margin-top: 60px;
  }

  .single_products_section01 .right .products_contact{
    margin:0 auto;
    margin-top: 60px;
  }

  .single_products_section01 .right .products_pdf + .products_contact{
    margin-top: 20px;
  }

  .single_products_section01 .products_content{
    margin-top: 56px;
  }


  .single_products_section01 .products_staff_box{
    margin-top: 72px;
    position: relative;
    padding: 32px 40px 24px 24px;
    border: solid 2px #e83929;
    border-radius: 10px;
  }

  .single_products_section01 .products_staff_box::before{
    width:340px;
    height:20px;
    top:-4px;
  }

  .single_products_section01 .products_staff_head{
    font-size: 28px;
    top:-20px;    
  }

  .single_products_section01 .staff_info{
    margin-right: 24px;
    width:160px;
  }

  .single_products_section01 .staff_info .staff_img{
    width: 160px;
    height: 160px;

  }

  .single_products_section01 .staff_info .staff_name{
    margin-top: 12px;
    font-size: 20px;
  }

  .single_products_section01 .staff_info .staff_area{
    margin-top: 4px;
    line-height: 1.3;
  }

  .single_products_section01 .products_staff_text{
    padding-bottom: 40px;
    font-size: 18px;
    line-height: 2.11;
  }

  .single_products_section01 .staff_link{
    font-size: 18px;
    right:-28px;
  }

  .single_products_section01 .staff_link::after{
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }

  .single_products_section01 .list{
    margin-top: 80px;
  }

  .single_products_section01 .list li{
    padding:24px 0;
    font-size: 16px;
    line-height: 2.11;
    letter-spacing: 0.1em;
  }

  .single_products_section01 .list .list_title{
    width:240px;
    padding:0 16px;
    flex-shrink: 0;
    font-weight: bold;

  }

  .single_products_section01 .list .list_contents{
    width:100%;
    padding-right: 16px;
  }

  .single_products_section01 .products_contact02{
    margin:60px auto 0;
  }

  .single_products_section02{
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .single_products_section02 .common_red_button{
    margin:72px auto 0;
  }

  .single_products_section02 .recommend_link{
    font-size: 18px;
    /* position: static; */
    right:-30px;
    top:-70px; 
  }

  .single_products_section02 .recommend_link::after{
    width: 22px;
    height: 22px;
    margin-left: 12px;

  }

  .single_products_section02 .relation_area{
    position: relative;
    margin-top: 48px;
  }

  .single_products_section02 .relation_list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px 0;
  }

  .single_products_section02 .relation_item{
    width: 220px;
  }

  .single_products_section02 .relation_card .recommend_name{
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.56;
  }



  /*
  ------------------------------------
  スタッフ一覧
  ------------------------------------
  */

  body.archive_staff_body{
    
  }

  main.archive_staff_main{

  }

  .archive_staff_section{

  }

  .archive_staff_mv_section::before{
    background-image: url('../img/staff/staff_mv.png');
  }

  .archive_staff_section01{
    padding-top: 96px;
    padding-bottom: 120px;
  }

  .archive_staff_section01 .pickup_frame{
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    border:4px solid #e83929;
    display: block;
    margin-bottom: 132px;
  }

  .archive_staff_section01 .pickup_frame::before{
    width:460px;
    height:20px;
    top:-5px;
  }

  .archive_staff_section01 .pickup_frame::after{
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    border: solid 3px #37a24b;
    border-radius: 10px;
  }

  .archive_staff_section01 .pickup_frame .staff_intro img{
    width: 100%;
  }

  .archive_staff_section01 .pickup_frame .staff_intro01{
    top:36px;
  }
  .archive_staff_section01 .pickup_frame .staff_intro02{
    bottom:36px;
  }

  .archive_staff_section01 .pickup_head{
    position: absolute;
    z-index: 3;
    width:416px;
    top:-49px;
    left:0;
    right:0;
    margin:auto;
  }

  .archive_staff_section01 .pickup_head img{
    width:100%;
  }

  .archive_staff_section01 .staff_deco01{
    width: 133px;
    left: -64px;
    top: -41px;
  }

  .archive_staff_section01 .staff_deco02{
    width: 160px;
    right: -80px;
    top: -69px;
  }

  .archive_staff_section01 .staff_intro01{
    width: 100%;
  }

  .archive_staff_section01 .staff_block{
    display: block;
    width: 540px;
    max-width: 100%;
    margin:0 auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .archive_staff_section01 .staff_block .img_area{
    width:520px;
    height:380px;
    position: relative;
    margin:0 auto;
    margin-left: 16px;

  }

  .archive_staff_section01 .staff_block .color_card01,
  .archive_staff_section01 .staff_block .color_card02,
  .archive_staff_section01 .staff_block .pic_frame{
    width:505px;
    height:360px;
    position: absolute;
    border-radius: 6px;
  }


  .archive_staff_section01 .staff_block .staf_info_area{
    width: 490px;
    margin: 24px auto 0;
  }

  .archive_staff_section01 .staff_block .staff_catch span{
    font-size: 36px;
    line-height: 1.83;
    padding: 0 6px;
  }


  .archive_staff_section01 .staff_block .staff_name{
    margin-top: 24px;
    line-height: 1.2;
  }

  .archive_staff_section01 .staff_block .staff_name_ja{
    font-size: 28px;  
  }

  .archive_staff_section01 .staff_block .staff_name_en{
    margin-top: 12px;
    font-size: 14px;
  }

  .archive_staff_section01 .staff_block .staff_border{
    margin-top: 12px;
    height:2px;
  }

  .archive_staff_section01 .staff_block .staff_area{
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0.1em;

  }

  .archive_staff_section01 .staff_block .common_red_button{
    width: 340px;
    height: 66px;
    margin-top: 40px;
    padding-right: 20px;
  }

  .archive_staff_section01 .pickup_swiper_button{
    width: 64px;
    height: 64px;
    border: solid 1px #f95a37;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 15;
    top:0;
    bottom:0;
    margin:auto;
    border-radius: 50%;
  }

  .archive_staff_section01 .pickup_swiper_button::before{
    content:"";
    width: 20px;
    height: 8px;
  }
  
  .archive_staff_section01 .pickup_swiper_prev{
    left:-30px;
  }
  .archive_staff_section01 .pickup_swiper_prev::before{
    background-image: url('../img/common/icon_arrow_left_red.png');
  }


  .archive_staff_section01 .pickup_swiper_next{
    right:-30px;
  }
  .archive_staff_section01 .pickup_swiper_next::before{
    background-image: url('../img/common/icon_arrow_right_red.png');
  }


  .archive_staff_section01 .pickup_swiper{
    overflow: hidden;
    z-index: 9;
  }

  .archive_staff_section01  .pickup_slide{
    z-index: 10;
  }

  /*2カラムの場合*/

  .archive_staff_section01 .pickup_frame02{
    display: none;
  }


  .archive_staff_section01 .common_staff_list{
    margin-top: 60px;
  }

  .common_staff_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:60px 0;
  }

  .common_staff_list .staff_item{
    width:280px;
  }


  .common_staff_list .staff_card .staff_catch{
    margin-top: 24px;
    font-size: 26px;
    line-height: 1.38;
  }

  .common_staff_list .staff_card .staff_name_box{
    margin-top: 12px;
    padding:24px 30px;
    border-radius: 10px;
    border: solid 2px #cecbc5;
  }

  .common_staff_list .staff_card .staff_name{
    font-size: 22px;
    line-height: 1.18;
    border-bottom:2px solid #e83929;
    padding-bottom: 6px;
  }


  .common_staff_list .staff_card .staff_area{
    margin-top: 8px;
    line-height: 1.63;
  }

  /*
  ------------------------------------
  スタッフ詳細
  ------------------------------------
  */

  body.single_staff_body{
    
  }

  main.single_staff_main{

  }

  .single_staff_section{

  }


  .single_staff_mv_section::before{
    background-image: url('../img/staff/staff_mv.png');
    border-radius: 10px;
  }

  .single_staff_section01{
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .single_staff_section01 .common_red_button{
    width: 340px;
    height: 66px;
    margin:60px auto 0;
    padding-right: 20px;
  }

  .single_staff_section01 .staff_sec_head{

  }

  .single_staff_section01 .staff_sec_head img{
    height:92px;
    width: auto;
  }

  .single_staff_section01 .staff_sec_head .sub_title{
    height: 40px;
    padding:0 24px;
    border-radius: 20px;
    font-size: 22px;
    white-space: nowrap;
    top:calc(100% - 20px);
  }

  .single_staff_section01 .flex{
    display: flex;
    align-self: flex-start;
    flex-direction: column;
  }

  .single_staff_section01 .img_area{
    width: 631px;
    height: 464px;
    margin-right: 72px;
    margin-top: 0;
  }

  .single_staff_section01 .color_card01,
  .single_staff_section01 .color_card02,
  .single_staff_section01 .pic_frame{
    width:614px;
    height:441px;
  }

  .single_staff_section01 .color_card01{
    transform: rotateZ(173deg);
    z-index: 6;
  }

  .single_staff_section01 .color_card02{
    transform: rotateZ(177deg);
  }

  .single_staff_section01 .pic_frame{
    transform: rotateZ(3deg);
    padding:6px;
  }



  .single_staff_section01 .staf_info_area{
    width:100%;
    margin-top: 48px;
  }

  .single_staff_section01 .staff_catch span{
    font-size: 36px;
    line-height: 1.83;
    padding: 0 6px;
  }


  .single_staff_section01 .staff_name{
    gap:12px;
    margin-top: 36px;
  }

  .single_staff_section01 .staff_name_ja{
    font-size: 28px;
  }


  .single_staff_section01 .staff_name_en{
    font-size: 14px;
  }

  .single_staff_section01 .staff_border{
    height: 2px;
    margin-top: 10px;
  }

  .single_staff_section01 .staff_area{
    font-size: 18px;
    margin-top: 16px;
  }

  .single_staff_section01 .staff_enthusiasm{
    font-size: 22px;
    margin-top: 18px;
  }

  .single_staff_section01 .staff_place_frame{

    margin-top: 20px;
  }

  .single_staff_section01 .staff_place_frame .staff_place_head{
    margin-right: 20px;
    width: 120px;
    height: 30px;
    border-radius: 6px;
    font-size: 18px;
    padding-bottom: 2px;
  }

  .single_staff_section01 .staff_place_frame .staff_place_head::after{
    border-width: 4px 0 4px 10px;
    right:-9px;
  }

  .single_staff_section01 .staff_place_frame .staff_place{
    font-size: 18px;
    padding-top: 2px;
  }

  .single_staff_section01 .staff_products_area{
    margin-top: 30px;
  }

  .single_staff_section01 .staff_products_head{
    padding:12px;
    border-radius: 6px;
    align-items: center;
    font-size: 18px;
  }

  .single_staff_section01 .staff_products_head::after{
    border-width: 10px 10px 0 10px;
    bottom:-9px;
  }


  .single_staff_section01 .staff_products_flex{
    margin-top: 30px;
  }

  .single_staff_section01 .staff_products_flex .staff_products_img{
    width: 120px;
    height: 120px;
    margin-right: 24px;
  }

  .single_staff_section01 .staff_products_flex .staff_products_right{
    width: 100%;
  }

  .single_staff_section01 .staff_products_flex .staff_products_name{
    font-size: 18px;
    line-height: 1.56;
  }

  .single_staff_section01 .staff_products_flex .staff_products_text{
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.56;
  }


  .single_staff_section01 .staff_products_link{
    margin-top: 20px;
    font-size: 18px;
  }


  .single_staff_section01 .staff_products_link::after{
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }

  .single_staff_section01 .history_box{
    margin-top: 96px;
    border: solid 3px #e83929;
    padding:60px 40px 48px;
  }

  .single_staff_section01 .history_box::before{
    width:345px;
    height:20px;
    top:-4px;
  }

  .single_staff_section01 .history_box .history_head{
    font-size: 32px;
    top:-20px;
  }

  .single_staff_section01 .history_list{
    width: 100%;
  }

  .single_staff_section01 .history_list::after{
    width: 2px;
    height: 100%;
    left: 141px;
    top: 14px;
  }

  .single_staff_section01 .history_item + .history_item{
    margin-top: 32px;
  }

  .single_staff_section01 .history_item .history_year{
    font-size: 28px;
    line-height: 1.29;
    width:135px;
  }

  .single_staff_section01 .history_item .history_radi{
    margin-right: 56px;
    padding-top: 10px;
  }

  .single_staff_section01 .history_item .history_radi span{
    width: 14px;
    height: 14px;
  }

  .single_staff_section01 .history_item .history_text{
    font-size: 18px;
    line-height: 1.6;
  }


  .single_staff_section01 .staff_strength_area{
    margin-top: 100px;
  }


  .single_staff_section01 .staff_strength_flex{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 80px;
  }


  .single_staff_section01 .staff_strength_text{
    width:100%;
    padding-top: 40px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: 0.1em;

  }



  .single_staff_section01 .staff_strength_img{
    flex-shrink: 0;
    width:600px;
  }

  .single_staff_section01 .staff_strength_text + .staff_strength_img{
    margin-left: 0;
  }


  .single_staff_section01 .staff_impression_area{
    margin-top: 100px;
  }


  .single_staff_section01 .impression_list{
    margin-top: 80px;
  }

  .single_staff_section01 .impression_item{
    display: flex;
    align-items: flex-start;
  }

  .single_staff_section01 .impression_item + .impression_item{
    margin-top: 48px;
  }

  .single_staff_section01 .impression_item .impression_img{
    width: 180px;
    height: 180px;
  }

  .single_staff_section01 .impression_item .impression_text{
    width: 100%;
    min-height: 180px;
    padding:36px 32px;
    border: solid 2px #cecbc5;
    font-size: 18px;
    line-height: 2.11;
  }

  .single_staff_section01 .impression_item .impression_text::before{
    top:80px;
  }


  .single_staff_section01 .impression_item:nth-child(odd){

  }
  .single_staff_section01 .impression_item:nth-child(odd) .impression_img{
    margin-right: 32px;
  }

  .single_staff_section01 .impression_item:nth-child(even){
    flex-direction: row-reverse;
  }
  .single_staff_section01 .impression_item:nth-child(even) .impression_img{
    margin-left: 32px;
  }


  .single_staff_section01 .staff_hobby_area{
    margin-top: 100px;
  }

  .single_staff_section01 .staff_hobby_flex{
    display: flex;
    flex-direction: column-reverse;
    margin-top: 80px;
  }


  .single_staff_section01 .staff_hobby_text{
    width:100%;
    padding-top: 40px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: 0.1em;
  }

  .single_staff_section01 .staff_hobby_img{
    flex-shrink: 0;
    width:100%;
  }

  .single_staff_section01 .staff_hobby_text + .staff_hobby_img{
    margin-left: 0;
  }


  .single_staff_section01 .evaluation_area{
    margin-top: 120px;
  }

  .single_staff_section01 .evaluation_area .evaluation_head{
    font-size: 32px;
  }

  .single_staff_section01 .evaluation_list{
    margin-top: 40px;
  } 

  .single_staff_section01 .evaluation_item{
    padding:32px 24px;
  }

  .single_staff_section01 .evaluation_item + .evaluation_item{
    margin-top: 30px;
  }

  .single_staff_section01 .evaluation_item .evaluation_img{
    width: 160px;
    height: 160px;
    margin-right: 30px;
  }


  .single_staff_section01 .evaluation_item .evaluation_name{
    font-size: 20px;
    line-height: 1.3;
  }

  .single_staff_section01 .evaluation_item .evaluation_star{
    width:158px;
    margin-top: 16px;
  }

  .single_staff_section01 .evaluation_item .evaluation_text{
    margin-top: 16px;
    font-size: 18px;
    line-height: 2.11;
  }

  .single_staff_section01 .staff_list_link{
    
  }

  .single_staff_section02{
    padding-top: 100px;
    padding-bottom: 120px;

  }


  .single_staff_section02 .common_staff_list{
    margin-top: 60px;
  }



  /*
  ------------------------------------
  新着情報一覧
  ------------------------------------
  */

  body.archive_news_body{
    
  }

  main.archive_news_main{

  }


  .archive_news_mv_section::before{
    background-image: url('../img/news/news_mv.jpg');
    
  }

  .archive_news_section01{
    padding-top: 90px;
    padding-bottom: 122px;

  }


  .archive_news_section01 .common_pagenation{
    margin-top: 80px;
  }

  /*
  ------------------------------------
  新着情報詳細
  ------------------------------------
  */

  body.single_news_body{
    
  }

  main.single_news_main{

  }


  .single_news_mv_section::before{
    background-image: url('../img/news/news_mv.jpg');
    
  }

  .single_news_section01{
    padding-top: 96px;
    padding-bottom: 122px;
  }


  .single_news_section01 .news_title{
    font-size: 34px;
    line-height: 1.59;
  }

  .single_news_section01 .news_date{
    margin-top: 6px;
    font-size: 18px;
  }



  .common_single_frame{

  } 

  .common_single_frame .wp-block-image{
    margin-top: 32px;
  }

  .common_single_frame .wp-block-image img{
    max-width: 100%;
  }

  .common_single_frame h2{
    margin-top: 48px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.1em;
    border-bottom:3px solid #e83929;
    padding-bottom: 10px;
    padding-left: 68px;
  }

  .common_single_frame h2::before,
  .common_single_frame h2::after{
    width: 40px;
    height: 14px;
    border-radius: 14px;
  }

  .common_single_frame h2::before{
    top:9px;
  }
  .common_single_frame h2::after{
    top:16px;
    left:10px;
  }

  .common_single_frame h3{
    margin-top: 48px;
    font-size: 28px;
    padding-left: 48px;
  }

  .common_single_frame h3::before{
    width: 34px;
    height: 12px;
    top:12px;
  }

  .common_single_frame h4{
    margin-top: 48px;
    font-size: 26px;
    line-height: 1.31;
    padding-left: 22px;
  }

  .common_single_frame h4::before{
    width: 5px;
    height: 28px;
    top:3px;
  }

  .common_single_frame h5{
    margin-top: 48px;
    font-size: 24px;
    line-height: 1.42;
    padding:8px 20px;
  }

  .common_single_frame h6{
    margin-top: 48px;
    font-size: 22px;
    line-height: 1.55;
  }

  .common_single_frame p{
    margin-top: 20px;
    font-size: 18px;
    line-height: 2.11;
  }


  .common_single_frame pre{
    margin-top: 64px;
    padding:30px 40px;
    font-size: 18px;
    line-height: 2.11;
  }

  .common_single_frame .wp-block-table{
    margin-top: 60px;
  }

  .common_single_frame table{
    width: 100%;
  }

  .common_single_frame table tr{
    
  }

  .common_single_frame table td{
    padding:24px 16px;
    font-size: 15px;
    line-height: 1.3;
  }

  .single_news_section01 .link_flex{
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .single_news_section01 .link_flex a{
    width: 240px;
    height: 60px;
    font-size: 20px;
  }

  .single_news_section01 .link_flex .link_home{
    order:1;
    margin-top: 32px;
  }

  .single_news_section01 .link_flex .link{
    width: 240px;
    order:0;
    
  }


  .single_news_section01 .link_flex .link a::after{
    width: 30px;
    height: 30px;
  }

  .single_news_section01 .link_flex .link_prev a{
    padding-left: 20px;
  }
  .single_news_section01 .link_flex .link_prev a::after{
    left:10px;
  }

  .single_news_section01 .link_flex .link_next a{
    padding-right: 20px;
  }
  .single_news_section01 .link_flex .link_next a::after{
    right:10px;
  }

  /*
  ------------------------------------
  ご提案書・企画書一覧
  ------------------------------------
  */

  body.proposal_body{
    
  }

  main.proposal_main{

  }

  .proposal_section{

  }

  .proposal_mv_section::before{
    background-image: url('../img/proposal/proposal_mv.jpg');
  }

  .proposal_section01{
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .proposal_section01 .cat_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:24px 0;
  }

  .proposal_section01 .cat_list li{
    width: 280px;
  }

  .proposal_section01 .cat_list li a{
    min-height: 60px;
    padding:6px 8px;
    font-size: 18px;
    line-height: 1.33;
  }


  .proposal_section01 .download_list{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap:50px 0;
    flex-direction: column;
  } 

  .proposal_section01 .download_list .download_item{
    width:380px;
    padding-bottom: 96px;
    border-radius: 10px;
  }

  .proposal_section01 .download_item .download_body{
    padding:20px 30px 0;
  }

  .proposal_section01 .download_item .download_title{
    font-size: 22px;
    line-height: 1.45;

  }

  .proposal_section01 .download_item .download_cat_list{
    gap:10px;
    margin-top: 12px;
  }

  .proposal_section01 .download_item .download_cat_list span{
    padding: 8px 12px;
    font-size: 14px;
  }

  .proposal_section01 .download_item .download_text{
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.56;
  }

  .proposal_section01 .download_item .download_link{
    bottom:24px;
    width: 280px;
  }


  .proposal_section01 .common_pagenation{
    margin-top: 80px;
  }
  /*
  ------------------------------------
  ご提案書ダウンロード
  ------------------------------------
  */

  body.download_body{
    
  }

  main.download_main{

  }

  .download_section{

  }

  .download_mv_section::before{
    background-image: url('../img/download/download_mv.jpg');
  }

  .download_section01{
    padding-top: 60px;
    padding-bottom: 120px;
  }

  /*
  ------------------------------------
  会社概要・沿革
  ------------------------------------
  */

  body.company_body{
    
  }

  main.company_main{

  }

  .company_mv_section{

  }

  .company_mv_section::before{
    background-image: url('../img/company/company_mv.jpg');
  }

  .company_section{
  }

  .company_section .link_flex{
    gap:0 ;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .company_section .anchor_link{
    width: 180px;
    height: 60px;
    padding-right: 32px;
  }


  .company_outline_section{
    padding-top: 60px;
  }

  .company_outline_section .outline_list{
    margin: 1080px;
    margin:50px auto 0;
  }

  .company_outline_section .outline_item{
    padding:20px 0;
    border-bottom:2px solid #cecbc5;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 2.11;

  }

  .company_outline_section .outline_item .outline_title{
    flex-shrink: 0;
    width:220px;
    padding-left:12px;
    padding-right: 12px;
    font-weight: bold;
  }

  .company_outline_section .outline_item .outline_contents{
    width:100%;
    padding-right: 12px;
  }

  .company_outline_section .outline_item ul li{

  }

  .company_access_section{
    padding-top: 120px;
  }

  .company_access_section .access_frame{
    margin-top: 50px;
  }

  .company_access_section .access_frame iframe{
    height:460px;
  }

  .company_history_section{
    padding-top: 100px;
    padding-bottom: 200px;
  }

  .company_history_section .history_list{
    margin:80px auto 0;
    margin-left: 0;
    position: relative;
  }

  .company_history_section .history_list::before{
    width:2px;
    top: 18px;
    left: 236px;
  }


  .company_history_section .history_item + .history_item{
    margin-top: 20px;
  }

  .company_history_section .history_item .history_year{
    width:230px;
    padding-right: 16px;
    padding-top: 10px;
    font-size: 18px;
    line-height: 1;
  }

  .company_history_section .history_item .history_year span{
    font-size: 20px;
    padding:0 3px;
  }

  .company_history_section .history_item .history_radi{
    padding-top: 14px;
    margin-right: 64px;
  }

  .company_history_section .history_item .history_radi span{
    width: 14px;
    height: 14px;

  }

  .company_history_section .history_item .history_text{
    font-size: 18px;
    font-weight: 500;
    line-height: 2.22;
  }

  /*
  ------------------------------------
  こだわり・ブランド紹介
  ------------------------------------
  */

  body.commit_body{
    
  }

  main.commit_main{

  }

  .commit_mv_section{

  }

  .commit_mv_section::before{
    background-image: url('../img/commit/commit_mv.jpg');
  }

  .commit_about_section{
    padding-top: 80px;
  }

  .commit_about_section .p01{
    margin-top: 32px;
    font-size: 18px;
    line-height: 2.11;
  }

  .commit_about_section .img_frame{
    max-width: 960px;
    margin: 48px auto 0;
  }


  .commit_about_section .deco01{
    width: 113px;
    height: 31px;
    bottom:160px;
    left:-100px;
  }

  .commit_about_section .deco02{
    width: 249px;
    height: 52px;
    left:-80px;
    bottom:80px;
  }

  .commit_about_section .deco03{
    width: 113px;
    height: 31px;
    top:80px;
    right:-100px;
  }

  .commit_about_section .deco04{
    width: 249px;
    height: 52px;
    top:130px;
    right:-80px;
  }


  .commit_point_section{
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .commit_point_section .point_list{
    margin-top: 60px;
  }

  .commit_point_section .point_block{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .commit_point_section .point_block .img_area{
    width: 100%;
    flex-shrink: 0;
  }


  .commit_point_section .point_block .text_area{
    width: 100%;
    padding-top: 32px;
  }

  .commit_point_section .point_block .point_num{
    font-size: 36px;
  }

  .commit_point_section .point_block .point_title{
    margin-top: 20px;
    font-size: 28px;
    line-height: 1.29;
    white-space: normal;
  }

  .commit_point_section .point_block .point_text{
    margin-top: 20px;
    font-size: 18px;
    line-height: 2.11;
  }

  .commit_point_section .point_block .pdf_link{
    font-size: 18px;
    line-height: 2;
  }

  .commit_point_section .point_block .pdf_link::before{
    width: 18px;
    height: 25px;
    margin-right: 6px;
  }

  .commit_point_section .point_block + .point_block{
    margin-top: 80px;
  }

  .commit_point_section .point_block:nth-child(even){
    flex-direction: column;
  }
  .commit_point_section .point_block:nth-child(even) .img_area{
    margin-left: 0;
  }

  .commit_point_section .point_block:nth-child(odd){

  }
  .commit_point_section .point_block:nth-child(odd) .img_area{
    margin-right: 0;
  }



  .commit_brand_section{
    padding-top: 100px;
    padding-bottom: 100px;

  }


  .commit_brand_section::before{
    width:1920px;
    min-width: 100vw;
  }

  .commit_brand_section .brand_list{
    margin-top: 48px;
  }

  .commit_brand_section .brand_block{
    padding:24px 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }

  .commit_brand_section .brand_block .text_area{
    width:100%;
    margin-top: 32px;
  }

  .commit_brand_section .brand_block .brand01_head{
    width:261px;
  }
  .commit_brand_section .brand_block .brand02_head{
    width:265px;
  }
  .commit_brand_section .brand_block .brand03_head{
    width:201px;
  }

  .commit_brand_section .brand_block .brand_text{
    margin-top: 20px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: 0.1em;
  }



  .commit_brand_section .brand_block .link::after{
    width: 18px;
    height: 18px;
    margin-left: 6px;
  }

  .commit_brand_section .brand_block .img_area{
    width:500px;
    flex-shrink: 0;
    margin-left: 0;
  }

  .commit_brand_section .brand_block .img_area .pic{
    width:100%;
  }


  .commit_brand_section .brand_block + .brand_block{
    margin-top: 50px;
  }

  .commit_abroad_section{
    padding-top: 100px;
    padding-bottom: 120px;
  }


  .commit_abroad_section .p01{
    margin-top: 32px;
    font-size: 18px;
    line-height: 2.11;
  }

  .commit_abroad_section .map_frame{
    margin-top: 16px;
  }

  .commit_abroad_section .map_frame .map{
    width:930px;
    margin: 0 auto;
    max-width: 100%;
  }

  .commit_abroad_section .list_box{
    gap:0 100px;
    padding:40px 24px 32px;
    border: solid 3px #e83929;
    margin:44px auto 0;
  } 

  .commit_abroad_section .list_box::before{
    width:260px;
    height:5px;
    top:-4px;
  }


  .commit_abroad_section .list_box .box_head{
    font-size: 22px;
    top:-14px;
  }

  .commit_abroad_section .list_box ul{

  }

  .commit_abroad_section .list_box ul li{
    font-size: 18px;
    line-height: 1.3;
  }

  .commit_abroad_section .list_box ul li + li{
    margin-top: 12px;
  }

  .commit_abroad_section .list_box ul li::before{
    width: 15px;
    height: 15px;
    margin-right: 15px;
  }

  .commit_abroad_section .company_link{
    margin:60px auto 0;
  }


  /*
  ------------------------------------
  FAQ
  ------------------------------------
  */

  body.faq_body{
    
  }

  main.faq_main{

  }

  .faq_mv_section{

  }

  .faq_mv_section::before{
    background-image: url('../img/faq/faq_mv.jpg');
  }

  .faq_section{
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .faq_section .link_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:32px 0;
  }

  .faq_section .anchor_link{
    width:280px;
    height: 60px;
  }
  
  .faq_section .faq_area{
    margin-top: 100px;
  }

  .faq_section .faq_head{
    font-size: 32px;
    line-height: 1.13;
  }

  .faq_section .common_faq_list{
    margin-top: 40px;
  }

  .common_faq_list{
    
  }


  .common_faq_list .faq_block{
    border-bottom: 2px solid #cecbc5;
  }

  .common_faq_list .faq_question{
    padding:26px 72px 26px 90px;
    font-size: 20px;
    line-height: 1.8;
  }

  .common_faq_list .faq_question::before{
    width: 50px;
    height: 50px;
    font-size: 28px;
    left:20px;
    top:18px;
    padding-bottom: 4px;
  }

  .common_faq_list .faq_question::after{
    width: 24px;
    height: 24px;
    right:28px;
    top:32px;
  }

  .common_faq_list .faq_question.active::after{
    height: 3px;
    top:42px;
  }

  .common_faq_list .faq_answer{
    padding:22px 64px 22px 90px;
    font-size: 18px;
    line-height: 2.11;
  }

  .common_faq_list .faq_answer::before{
    width: 50px;
    height: 50px;
    font-size: 28px;
    left:20px;
    top:18px;
    padding-bottom: 4px;
  }


  /*
  ------------------------------------
  お取引について
  ------------------------------------
  */

  body.transaction_body{
    
  }

  main.transaction_main{

  }

  .transaction_mv_section{

  }

  .transaction_section{
  }


  .transaction_mv_section::before{
    background-image: url('../img/transaction/transaction_mv.jpg');
  }

  .transaction_think_section{
    padding-top: 80px;
  }

  .transaction_think_section .flex{
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .transaction_think_section .img_area{
    width:100%;
    flex-shrink: 0;
    margin-right: 0;
  }

  .transaction_think_section .text_area{
    width: 100%;
    padding-top: 40px;
    font-size: 18px;
    line-height: 2.11;
  }

  .transaction_flow_section{
    padding-top: 100px;
  }

  .transaction_flow_section .p01{
    margin-top: 36px;
    font-size: 18px;
    line-height: 2.11;
  }

  .transaction_flow_section .flow_list{
    margin-top: 60px;
  }

  .transaction_flow_section .flow_block{
    padding:32px 40px 40px;
    border-radius: 20px;
    border: solid 3px #e83929;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .transaction_flow_section .flow_block::after{
    width: 48px;
    height: 48px;
    bottom:-26px;
  }

  .transaction_flow_section .flow_block + .flow_block{
    margin-top: 60px;
  }

  .transaction_flow_section .flow_block .flow_pic{
    flex-shrink: 0;
    margin-right: 0;
  }

  .transaction_flow_section .flow_block .flow_pic img{
    width: 220px;
    height:220px;
  }

  .transaction_flow_section .flow_block .flow_contents_area{
    width: 100%;
    margin-top: 32px;
  }

  .transaction_flow_section .flow_block .flow_head{
    font-size: 28px;
    line-height: 1.29;
  }

  .transaction_flow_section .flow_block .flow_head span{
    font-size: 36px;
    margin-right: 24px;
  }

  .transaction_flow_section .flow_block .flow_text{
    margin-top: 10px;
    font-size: 18px;
    line-height: 2.11;
  }

  .transaction_flow_section .flow_block .button_flex{
    display: flex;
    align-items: center;
    margin-top: 8px;
  }

  .transaction_flow_section .flow_block .button_flex a{
    width: 200px;
    height: 44px;
    font-size: 18px;
  }

  .transaction_flow_section .flow_block .button_flex a::after{
    right:10px;
    width: 24px;
    height: 24px;
  }




  .transaction_flow_section .flow_block .button_flex a.contact_link span::before{
    width: 22px;
    height: 17px;
    left:-28px;
  }

  .transaction_flow_section .flow_block .button_flex a.estimate_link{
    margin-left: 20px;
  }


  .transaction_flow_section .flow_block .button_flex a.estimate_link span::before{
    width: 16px;
    height: 23px;
    left:-22px;
  }


  .transaction_faq_section{
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .transaction_faq_section .common_faq_list{
    margin-top: 56px;
  }

  .transaction_faq_section .faq_link{
    margin:60px auto 0;
  }

  /*
  ------------------------------------
  カタログダウンロード
  ------------------------------------
  */

  body.catalog_body{
    
  }

  main.catalog_main{

  }


  .catalog_mv_section::before{
    background-image: url('../img/catalog/catalog_mv.jpg');
    
  }

  .catalog_section01{
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .catalog_section01 .p01{
    font-size: 18px;
    line-height: 2.11;
  }

  .catalog_section01 .catalog_frame{
    margin-top: 40px;
  }

  /*
  ------------------------------------
  お問い合わせ
  ------------------------------------
  */

  body.contact_body{
    
  }

  main.contact_main{

  }


  .contact_mv_section::before{
    background-image: url('../img/contact/contact_mv.jpg');
    
  }

  .contact_section01{
    padding-top: 80px;
    padding-bottom: 120px;
  }

  /*
  ------------------------------------
  無料お見積り
  ------------------------------------
  */

  body.quotation_body{
    
  }

  main.quotation_main{

  }


  .quotation_mv_section::before{
    background-image: url('../img/quotation/quotation_mv.jpg');
    
  }

  .quotation_section01{
    padding-top: 80px;
    padding-bottom: 120px;
  }


  /*
  ------------------------------------
  プライバシーポリシー
  ------------------------------------
  */

  body.privacy_body{
    
  }

  main.privacy_main{

  }


  .privacy_mv_section::before{
    background-image: url('../img/privacy/privacy_mv.jpg');
    
  }

  .privacy_section{
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .privacy_section .page_title{
    font-size: 36px;
    line-height: 1.2;
  }


  /*
  ------------------------------------
  404
  ------------------------------------
  */

  body.page404_body{
    
  }

  main.page404_main{

  }



  .page404_section{
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .page404_section .p01{
    font-size: 32px;
  }

  .page404_section .p02{
    line-height: 1.7;
    margin-top: 32px;
    font-size: 18px;
  }
  
}/*@media(max-width:1240px){*/