@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

*::before,
*::after{
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body{
  color: #231815;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-feature-settings: 'palt';
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

img{
  display: block;
  object-position: center;
}

#body_wrap{
  overflow: hidden;
}

.lato{
  font-family: "Lato", sans-serif;
}

input,textarea,select{
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  border:none;
  background: none;
  border-radius: 0;
}



a{
  color: #231815;
  font-weight: 500;
}

@media (any-hover:hover){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

main{
  padding-top: 130px;
}
/*
------------------------------------
アニメーション関係
------------------------------------
*/

.common_hover_opa{
  transition: 0.4s;
}


@media (any-hover:hover){
  .common_hover_opa:hover{
    opacity: 0.5;
  }
  
}

/*
------------------------------------
共通パーツ
------------------------------------
*/

.hide{
  display: none!important;
}

.container{
  max-width: 1200px;
  margin:0 auto;
}

.red_text{
  color:#e83929;
}


/*明太子のデコレーションが乗ったタイトル*/
.common_sec_deco_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing:0.1em;
}

.common_sec_deco_title::before{
  content:'';
  width:67px;
  height:27px;
  background-image: url('../img/common/icon_common_deco.png');
  margin-bottom: 16px;
  flex-shrink: 0;
}

/*下線がついたセクションのタイトル*/
.common_bottom_border_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}

.common_bottom_border_title::after{
  content:'';
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: #e83929;
  margin-top: 28px;
}


/*赤色のリンクボタン*/
.common_red_button{
  display: block;
  width: 380px;
  height: 70px;
  border-radius: 35px;
  background-color: #e83929;
  border:2px solid #e83929;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  transition-duration: 0.4s;
} 

.common_red_button::before{
  content:'';
  width:0;
  height:100%;
  background-color:#fff;
  position: absolute;
  top:0;
  left:0;
  transition-duration: 0.4s;
}

.common_red_button::after{
  content:'';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_red.png');
  transition-duration: 0.4s;
  position: absolute;
  top:0;
  bottom:0;
  margin:auto;
  right:20px;
}

.common_red_button .button_inner{
  width: 100%;
  height:100%;
  z-index: 3;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common_red_button .button_inner span{
  position: relative;
}

.common_red_button.contact span::before{
  content:'';
  width: 22px;
  height: 17px;
  background-image: url('../img/common/icon_mail_white.png');
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition-duration: 0.4s;
}



.common_red_button.download{
  background-color: #37a24b;
  border:2px solid #37a24b;
}

.common_red_button.download::after{
  background-image: url('../img/common/icon_radi_arrow_right_green.png');
}

.common_red_button.download span::before{
  content:'';
  width: 24px;
  height: 20px;
  background-image: url('../img/common/icon_download_white.png');
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}


@media(any-hover:hover){
  .common_red_button:hover{
    color: #e83929;
  }

  .common_red_button:hover::after{
    background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  }

  .common_red_button:hover::before{
    width:100%;
  }


  .common_red_button.contact:hover span::before{
    background-image: url('../img/common/icon_mail_red.png');
  }

  .common_red_button.download:hover{
    color: #37a24b;
  }
  .common_red_button.download:hover::after{
    background-image: url('../img/common/icon_radi_arrow_right_white_green.png');
  }
  .common_red_button.download:hover span::before{
    background-image: url('../img/common/icon_download_green.png');
  }


}


/*商品のカテゴリー選定エリア*/
.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: 230px;
  padding:16px 6px;
  background-color: #ad9f82;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  border-radius: 8px 8px 0 0;
  
}

.common_products_cat_menu_area .products_cat_tag.active{
  color:#e83929;
  background-color: #fff;
}

.common_products_cat_menu_area .products_cat_body{
  padding:40px 50px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  margin-top: -1px;
}

.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{
  display: block;
  border-radius: 10px;
  border: solid 2px #e83929;
  background-color: #fff8f6;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  transition-duration: 0.4s;
  overflow: hidden;
}

.common_products_cat_menu_area .products_cat_body ul li a::before{
  content:'';
  width:0;
  height:100%;
  background-color:#e83929;
  position: absolute;
  top:0;
  left:0;
  transition-duration: 0.4s;
}

.common_products_cat_menu_area .products_cat_body ul li a .button_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  position: relative;
  
}

.common_products_cat_menu_area .products_cat_body ul li a .button_inner::after{
  content:'';
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-left: 6px;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  transition-duration: 0.4s;
}

@media (any-hover:hover){
  .common_products_cat_menu_area .products_cat_body ul li a:hover{
    color:#fff;
  }
  .common_products_cat_menu_area .products_cat_body ul li a:hover::before{
    width:100%;
  }
  .common_products_cat_menu_area .products_cat_body ul li a:hover .button_inner::after{
    background-image: url('../img/common/icon_radi_arrow_right_red.png');
  }
}


/*新着情報一覧*/
.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{
  content:'';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  flex-shrink: 0;
  margin-left: 24px;
}

.common_news_list .news_contents{
  display: flex;
  align-items: flex-start;
}

.common_news_list .news_date{
  flex-shrink: 0;
  width:150px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing:0.1em;
  color: #e83929;
}

.common_news_list .news_title{
  font-size: 18px;
  line-height: 1.5;
  letter-spacing:0.1em;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .common_news_list .news_item:hover .news_title{
    color: #e83929;
    text-decoration: underline;
  }
}


/*ページネーション*/
.common_pagenation{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px 0;
}

.common_pagenation span.current{/*現在のページボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 2px #e83929;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height:1;
  color: #fff;
  background-color:#e83929;
  
  margin:0 6px;
  transition-duration: 0.4s;
}

.common_pagenation a.page-numbers{/*指定のページ移動ボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 2px #e83929;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height:1;
  color: #e83929;
  margin:0 6px;
  transition-duration: 0.4s;
}

.common_pagenation a.page-numbers.next,
.common_pagenation a.page-numbers.prev{/*next prevボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url('../img/common/icon_radi_arrow_right_red.png'); */
}

.common_pagenation a.page-numbers.next::after,
.common_pagenation a.page-numbers.prev::after{
  content:'';
  width: 16px;
  height: 6px;
  transition-duration: 0.4s;
}

.common_pagenation a.page-numbers.prev{
  margin-right: 20px;
}
.common_pagenation a.page-numbers.prev::after{
  background-image: url('../img/common/icon_page_prev_red.png');
}

.common_pagenation a.page-numbers.next{
  margin-left: 20px;
}
.common_pagenation a.page-numbers.next::after{
  background-image: url('../img/common/icon_page_next_red.png');
}

@media(any-hover:hover){
  .common_pagenation a.page-numbers:hover{
    color: #fff;
    background-color:#e83929;
  }
  .common_pagenation a.page-numbers:hover.prev::after{
    background-image: url('../img/common/icon_arrow_left_white.png');
  }
  .common_pagenation a.page-numbers:hover.next::after{
    background-image: url('../img/common/icon_arrow_right_white.png');
  }
  /* .common_pagenation a.page-numbers.next:hover,
  .common_pagenation a.page-numbers.prev:hover{
    background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  } */
}



/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
  position: fixed;
  width:100%;
  background-color: #fdf8ed;
  z-index: 20;
  top:0;
  left:0;
}

header .header_inner{
  /* height:130px; */
  display: flex;
  align-items: center;
  position: relative;
  padding:0 40px;
  padding-top: 20px;
}

header .header_flex{
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

header .header_logo{
  display: block;
  width:222px;
}

header .header_logo img{
  width:100%;
}

header .header_area01{
  display: flex;
  align-items: center;
  justify-content: flex-end;
} 

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

header .header_area01 .tel_line a{
  display: flex;
  align-items: center;
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #e83929;

}

header .header_area01 .tel_line a::before{
  content:'';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 6px;
  background-image:url('../img/common/icon_tel_red.png');
  flex-shrink: 0;
}

header .header_area01 .tel_line p{
  margin-left: 8px;
  line-height: 1;
}


header .header_area01 .search_line{
  margin-left: 40px;
  width:410px;
}

header .header_area01 .search_line .input_frame{
  position: relative;
}

header .header_area01 .search_line .keyword{
  display: block;
  width:100%;
  width: 410px;
  height: 40px;
  padding: 0 48px 0 16px;
  border-radius: 20px;
  border: solid 2px #cecbc5;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

header .header_area01 .search_line .keyword::placeholder{
  color: #b1aea8;
}

header .header_area01 .search_line .serach_button{
  border:none;
  background: none;
  border-radius: 0;
  position: absolute;
  width: 20px;
  cursor: pointer;
  top:0;
  bottom:0;
  right:16px;
  margin:auto;
}

header .header_area01 .search_line .serach_button img{
  width:100%;
}

header .header_area02{
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  /* align-items: center; */
  align-items: flex-start;
}


header .header_area02 .button_area{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 410px;
  margin-left: 40px;
}

header .header_area02 .button_area a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48.7%;
  height: 44px;
  border-radius: 22px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #e83929;
  position: relative;
}

header .header_area02 .button_area a::after{
  content:'';
  position: absolute;
  top: 50%;
  right:10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

header .header_area02 .button_area a span{
  position: relative;
}

header .header_area02 .button_area a span::before{
  content:'';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

header .header_area02 .button_area a.contact_link{
  background-color: #e83929;
}

header .header_area02 .button_area a.contact_link::after{
  background-image: url('../img/common/icon_radi_arrow_right_red.png'); 
}

header .header_area02 .button_area a.contact_link span::before{
  background-image: url('../img/common/icon_mail_white.png'); 
  width: 22px;
  height: 17px;
  left:-28px;
}

header .header_area02 .button_area a.estimate_link{
  background-color: #37a24b;
}

header .header_area02 .button_area a.estimate_link::after{
  background-image: url('../img/common/icon_radi_arrow_right_green.png'); 
}

header .header_area02 .button_area a.estimate_link span::before{
  background-image: url('../img/common/icon_estimate_white.png'); 
  width: 16px;
  height: 23px;
  left:-22px;
}

header .header_area02 .parent_menu{
  display: flex;
  align-items: center;
  gap:0 32px;
  padding-top:10px;
}

header .header_area02 .parent_item{
  height:50px;
  display: flex;
  align-items: flex-start;
}

header .header_area02 .parent_link{
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

header .header_area02 a.parent_link{
  transition: 0.4s;
}

@media (any-hover:hover){
  header .header_area02 a.parent_link:hover{
    color:#e83929;
    text-decoration: underline;
  }
}

header .header_area02 .has_child .parent_link{
  /* display: flex; */
  display: inline-block;
  position: relative;
  line-height: 1;
  padding-right: 36px;
}



header .header_area02 .has_child .parent_link::after{
  content:'';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_bottom_wihte_red.png');
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

header .header_area02 .has_child.no_icon .parent_link{
  padding-right: 0;
}

header .header_area02 .has_child.no_icon .parent_link::after{
  content:none;
}

header .has_child02{
  position: relative;
}

header .child_menu{
  position: absolute;
  left:0;
  top:calc(100% - 8px);
  background-color: #e83929;
  border-radius: 10px;
  border:2px solid #fff;
  white-space: nowrap;
  transition-duration: 0.4s;
  opacity: 0;
  pointer-events: none;
}

header .child_menu.show{
  opacity: 1;
  pointer-events: auto;
}

header .child_menu li + li{
  border-top:1px solid rgba(255,255,255,0.5);
}

header .child_menu li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:300px;
  height:55px;
  padding:0 24px;
  color:#fff;
  font-weight: bold;
  line-height: 1;
}

header .child_menu li a::after{
  content:'';
  content:'';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_red.png');
}

header .mega_menu{
  position: absolute;
  top:100%;
  left:0;
  z-index: 21;
  width:100%;
  padding:32px 0 48px;
  background-color: rgba(232,57,41,0.95);
  transition-duration: 0.4s;
  opacity: 0;
  pointer-events: none;
}

header .mega_menu.show{
  opacity: 1;
  pointer-events: auto;
}

header .products_mega_menu{
  
}

header .products_mega_menu .products_list_link{
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

header .products_mega_menu .products_list_link::after{
  content:'';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_red.png');
  margin-left: 12px;
}

header .products_mega_menu .products_border{
  background-color: #f4877d;
  height:2px;
  margin-top: 24px;
}


header .products_mega_menu  .common_products_cat_menu_area{
  margin-top: 30px;
}


@media(max-width:1720px){
  main{
    padding-top:calc(130 / 1720 * 100vw);
  }
  header .header_inner{
    
    padding:0 calc(40 / 1720 * 100vw);
    padding-top: calc(20 / 1720 * 100vw);
  }
  
  header .header_logo{
    width:calc(220 / 1720 * 100vw);
  }
  
  
  header .header_area01 .tel_line a{
    font-size: calc(32 / 1720 * 100vw);  
  }
  
  header .header_area01 .tel_line a::before{
    content:'';
    width: calc(30 / 1720 * 100vw);
    height: calc(30 / 1720 * 100vw);
    margin-right: calc(6 / 1720 * 100vw);
    flex-shrink: 0;
  }
  
  header .header_area01 .tel_line p{
    margin-left: calc(8 / 1720 * 100vw);
  }
  
  
  header .header_area01 .search_line{
    margin-left: calc(32 / 1720 * 100vw);
    width:calc(410 / 1720 * 100vw);
  }

  header .header_area01 .search_line .keyword{
    width: calc(410 / 1720 * 100vw);
    height: calc(40 / 1720 * 100vw);
    padding: 0 calc(48 / 1720 * 100vw) 0 calc(16 / 1720 * 100vw);
    font-size: calc(18 / 1720 * 100vw);
  }
  
  header .header_area01 .search_line .serach_button{
    width: calc(20 / 1720 * 100vw);
    right:calc(16 / 1720 * 100vw);
  }

  
  header .header_area02{
    margin-top: calc(10 / 1720 * 100vw);

  }
  
  
  header .header_area02 .button_area{
    width: calc(410 / 1720 * 100vw);
    margin-left: calc(32 / 1720 * 100vw);
  }
  
  header .header_area02 .button_area a{
    width: 48.7%;
    height: calc(44 / 1720 * 100vw);
    font-size: calc(18 / 1720 * 100vw);

  }
  
  header .header_area02 .button_area a::after{
    right:calc(10 / 1720 * 100vw);
    width: calc(24 / 1720 * 100vw);
    height: calc(24 / 1720 * 100vw);
  }

  header .header_area02 .button_area a.contact_link span::before{
    width: calc(22 / 1720 * 100vw);
    height: calc(17 / 1720 * 100vw);
    left:calc(-28 / 1720 * 100vw);
  }
  
  
  header .header_area02 .button_area a.estimate_link span::before{
    width: calc(16 / 1720 * 100vw);
    height: calc(23 / 1720 * 100vw);
    left:calc(-22 / 1720 * 100vw);
  }
  
  header .header_area02 .parent_menu{
    gap:0 calc(20 / 1720 * 100vw);
    padding-top:calc(10 / 1720 * 100vw);
  }
  
  header .header_area02 .parent_item{
    height:calc(50 / 1720 * 100vw);
  }
  
  header .header_area02 .parent_link{
    font-size: calc(18 / 1720 * 100vw);
  }

  header .header_area02 .has_child .parent_link{
    padding-right: 24px;
  }
  
  header .header_area02 .has_child .parent_link::after{
    width: 16px;
    height: 16px;
  }
}


/*
------------------------------------
お問い合わせセクション
------------------------------------
*/

.common_contact_section{
  padding-top: 72px;
  padding-bottom: 80px;
  position: relative;
  
}

.common_contact_section .page_top{
  position: absolute;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  top:-26px;
  right:60px;
}

.common_contact_section .page_top img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.top_staff_section + .common_contact_section .page_top{
  display: none;
}

.common_contact_section:before{
  content:'';
  width:1920px;
  min-width:100vw;
  height:100%;
  background-image: url('../img/common/common_contact_section_bg.jpg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -2;
}

.common_contact_section .sec_title{
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}

.common_contact_section .p01{
  margin-top: 28px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  font-weight: 400;
}

.common_contact_section .flex{
  max-width: 840px;
  margin:36px auto 0;
  display: flex;
  justify-content: space-between;
}

.common_contact_section .flex a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 80px;
  position: relative;
  border-radius: 40px;
  border: solid 2px #fff;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  

}

.common_contact_section .flex a::after{
  content:'';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right:20px;
  top:0;
  bottom:0;
  margin:auto;
}

.common_contact_section .flex a span{
  position: relative;
}

.common_contact_section .flex a span::before{
  content:'';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.common_contact_section .flex a.contact_link{
  color: #e83929;
  background-color: #fff;
}


.common_contact_section .flex a.contact_link::after{
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png'); 
}

.common_contact_section .flex a.contact_link span::before{
  background-image: url('../img/common/icon_mail_red.png'); 
  width: 34px;
  height: 25px;
  left:-46px;
}

.common_contact_section .flex a.estimate_link{
  background-color: #37a24b;
  color:#fff;
}

.common_contact_section .flex a.estimate_link::after{
  background-image: url('../img/common/icon_radi_arrow_right_green.png'); 
}

.common_contact_section .flex a.estimate_link span::before{
  background-image: url('../img/common/icon_estimate_white.png'); 
  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{
  position: absolute;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
  width:100%;
  left:0;
  top:-11px;
}

.common_contact_section .tel_box{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 105px;
  border: solid 3px #fff;
  border-radius: 10px;
  border-top:none;
  overflow: hidden;
}

.common_contact_section .tel_box::before{
  content:'';
  width:100%;
  height:3px;
  background-image: linear-gradient(to right, #fff 33%, transparent 33%, transparent 67%, #fff 67%);
  top:0;
  left:0;
  position: absolute;
}

.common_contact_section .tel_box .tel{
  font-family: 'Lato', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
}

.common_contact_section .tel_box .tel::before{
  content:'';
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-image: url('../img/common/icon_tel_white.png');
  margin-right: 10px;
  flex-shrink: 0;
}


.common_contact_section .tel_box p{
  font-size: 20px;
  margin-left: 16px; 
  line-height: 1.2;
  color: #fff;

}

/*
------------------------------------
フッター
------------------------------------
*/
footer{

}

footer .footer_area01{
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #fdf8ed;
}

footer .footer_flex{
  display: flex;
  /* justify-content: space-between; */
  align-items: flex-start;
}

footer .footer_flex .footer_left{
  flex-shrink: 0;
  margin-right: 48px;
}

footer .footer_logo{
  display: block;
  width:202px;
} 

footer .footer_logo img{
  width: 100%;
}

footer .sns_list{
  margin-top: 24px;
  display: flex;
  align-items: center;
}

footer .sns_list li{
  margin-right: 20px;
}

footer .sns_list li:last-child{
  margin-right: 0;
}

footer .sns_list li a{
  display: block;
}

footer .sns_list li img{
  width: 100%;
}

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{
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 32px;
  font-weight: bold;
  line-height: 1.2;
}

footer .shop_link::after{
  content:'';
  width: 18px;
  height: 18px;
  background-image: url('../img/common/icon_link_orange.png');
  margin-left: 6px;
}

footer .footer_nav{
  display: flex;
  align-items: flex-start;
  gap:0 56px;
}

footer .footer_nav a{
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  footer .footer_nav a:hover{
    opacity: 0.5;
  }
}

footer .parents_menu{

}

footer .parents_item{
  padding-top: 14px;
  padding-bottom: 14px;
}

footer .parents_item.has_child{
  border-bottom:2px solid #cecbc5;
  cursor: pointer;
  padding-right: 6px;
}

footer .parents_item:first-child{
  padding-top: 0;
}

footer .parents_link{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

footer .parents_name{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 1.3;
}

footer .parents_name::after{
  content:'';
  width: 14px;
  height: 8px;
  background-image: url('../img/common/icon_angle_bottom_red.png');
  flex-shrink: 0;
  margin-left: 12px;
  transition-duration: 0.4s;
}

footer .parents_item.active .parents_name::after{
  transform: rotateZ(180deg);
}

footer .child_menu{
  display: none;
}

footer .child_menu .child_item{
  border-bottom:1px solid #cecbc5;
}

footer .child_menu .child_link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:8px 10px;
  background-color: #fffcf5;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

footer .child_menu .child_link::after{
  content:'';
  width: 8px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 6px;
  background-image: url('../img/common/icon_angle_right_gray.png');
}

footer .footer_copy{
  padding:20px 0;
  text-align: center;
  background-color: #c6b9a0;
  font-size: 18px;
  line-height: 1;
  color: #fff;

}

/*
------------------------------------
トップページ
------------------------------------
*/

body.top_body{

}
main.top_main{

}

.top_section{
  
}

.top_mv_section{
  overflow: hidden;
  background-color: #fffdf8;
}


.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(32 / 1920 * 100vw);
  font-weight: bold;
  line-height: 2.06;
  letter-spacing: 0.15;
}

.top_mv_section .left .p01 span{
  display: inline-block;
  font-size: calc(38 / 1920 * 100vw);
  font-family: 'Lato', sans-serif;
}

.top_mv_section .left .p02{
  margin-top: calc(24 / 1920 * 100vw);
  font-size: calc(44 / 1920 * 100vw);
  font-weight: bold;
  line-height: 1.92;
  letter-spacing: 0.15em;
  text-align: left;
  

}

.top_mv_section .left .p02 span{
  font-size: calc(48 / 1920 * 100vw);
  display: inline-block;
} 

.top_mv_section .flex .right{
  width:calc(1200 / 1920 * 100vw);

  
  flex-shrink: 0;
}

.top_mv_section .flex .swiper_block{
  overflow: hidden;
  position: relative;
}

.top_mv_section .mv_swiper_button{
  position: absolute;
  top:0;
  bottom:0;
  margin:auto;
  z-index: 10;
  width: calc(52 / 1920 * 100vw);
  height: calc(52 / 1920 * 100vw);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffdf8;
  cursor: pointer;
}

.top_mv_section .mv_swiper_button::after{
  content:'';
  width: calc(26 / 1920 * 100vw);
  height: calc(10 / 1920 * 100vw);
}

.top_mv_section .mv_swiper_prev{
  left:calc(40 / 1920 * 100vw);
}
.top_mv_section .mv_swiper_prev::after{
  background-image: url('../img/common/icon_arrow_left_red.png');
}

.top_mv_section .mv_swiper_next{
  right:calc(40 / 1920 * 100vw);
}
.top_mv_section .mv_swiper_next::after{
  background-image: url('../img/common/icon_arrow_right_red.png');
}

.top_mv_section .mv_slide{
  width:100%;
  aspect-ratio: 1/0.617;
}

.top_mv_section .mv_slide img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.top_mv_section .mv_swiper_pagenation{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom:30px;
  right:40px;
  z-index: 10;
}

.top_mv_section .mv_swiper_pagenation .swiper-pagination-bullet{
  width:12px;
  height:12px;
  margin:0 6px;
  opacity:1;
  background:#fff;
  transition-duration: 0.4s;
  border-radius: 50%;
  cursor: pointer;
}

.top_mv_section .mv_swiper_pagenation .swiper-pagination-bullet:hover{
  background-color: #e83929;
}

.top_mv_section .mv_swiper_pagenation .swiper-pagination-bullet-active{
  opacity:1;
  background-color: #e83929;
}

.top_pickup_section{
  padding:24px 0;
}

.top_pickup_section .flex{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.top_pickup_section .flex .left{
  display: flex;
  align-items: flex-start;
}


.top_pickup_section .sec_title{
  flex-shrink: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.top_pickup_section .news_list{
  margin-left: 48px;
  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-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #e83929;
  flex-shrink: 0;
  width:150px;
  letter-spacing: 0.1em;
}

.top_pickup_section .news_item .news_title{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition-duration: 0.4s;
  letter-spacing: 0.1em;
}

@media(any-hover:hover){
  .top_pickup_section .news_item:hover .news_title{
    color: #e83929;
    text-decoration: underline;
  }
}


.top_pickup_section .flex .right{
  flex-shrink: 0;
  padding-top: 8px;
  margin-left: 24px;
}

.top_pickup_section .news_link{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #e83929;
}

.top_pickup_section .news_link::after{
  content:'';
  width: 22px;
  height: 22px;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  margin-left: 12px;
}

.top_text_section{
  padding-top: 72px;
  padding-bottom: 72px;
  background-color: #fffdf8;
}

.top_text_section .head_text{
  font-size: 42px;
  font-weight: bold;
  line-height: 1.48;
  letter-spacing: 0.15em;
  text-align: center;
}

.top_text_section .p01{
  margin-top: 32px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
  text-align: center;
}


.top_search_section{
  background-color: #fdf8ed;
  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_products_cat_menu_area .products_cat_tag.active {
  color: #fff;
  background-color: #e83929;
}

.top_search_section .common_red_button{
  margin:48px auto 0;
}


.top_recommend_section{
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fffdf8;
}

.top_recommend_section .recommend_list{
  margin-top: 48px;
  display: flex;
  gap:0 24px;
}

.top_recommend_section .recommend_list li{
  width:220px;
}

.top_recommend_section .recommend_item{
  display: block;
}

.top_recommend_section .recommend_item .thumb{
  aspect-ratio: 1/1;
}

.top_recommend_section .recommend_item .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
}

.top_recommend_section .recommend_item .recommend_name{
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  letter-spacing: 0.1em;
}

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

.top_staff_section{
  padding-top: 80px;
  padding-bottom: 92px;
  position: relative;
  background-color: #fff8e7;

}

.top_staff_section .deco_border{
  position: absolute;
  width:100%;
  height:3px;
  left:0;
}

.top_staff_section .deco_border01{
  top:0;
  height:6px;
  background-color: #e83929;
}
.top_staff_section .deco_border02{
  top:12px;
  background-color: #37a24b;
}
.top_staff_section .deco_border03{
  bottom:6px;
  background-color: #37a24b;
}

.top_staff_section .text_deco{
  position: absolute;
  width: 100%;
  left:0;
}

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

.top_staff_section .text_deco01{
  top:32px;
}

.top_staff_section .text_deco01 img{
  animation: text_roop01 20s linear infinite;
}

@keyframes text_roop01 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1982.5px);
  } 
}

.top_staff_section .text_deco02{
  bottom:32px;
  
}

.top_staff_section .text_deco02 img{
  animation: text_roop02 20s linear infinite;
}

@keyframes text_roop02 {
  0% {
    transform: translateX(-1982.5px);
  }
  100% {
    transform: translateX(0);
  }
}

.top_staff_section .text_deco02 img{

}



.top_staff_section .sec_title{
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_staff_section .sec_title img{
  width:1141px;
  max-width: 100%;
}

.top_staff_section .img_flex{
  margin-top: 40px;
  position: relative;
}

.top_staff_section .img_flex .deco{
  position: absolute;
  z-index: 4;
}

.top_staff_section .img_flex .deco01{
  width:182px;
  top:-16px;
  left:-62px;
}
.top_staff_section .img_flex .deco02{
  width:231px;
  top:-48px;
  right:-80px;
}

.top_staff_section .p01{
  
  font-size: 24px;
  font-weight: bold;
  line-height: 1.83;
  letter-spacing: 0.1em;
  text-align: center;
}


.top_staff_section .common_red_button{
  margin: 80px auto 0;
}

.top_staff_section .swiper_block{
  position: relative;
  width: 100vw;
  margin: 88px calc(50% - 50vw) 0;
}

.top_staff_section .color_deco{
  position: absolute;
  z-index: 0;
  border-radius: 26px;
}

.top_staff_section .color_deco01{
  width: 113px;
  height: 31px;
  background-color: #ffd8ce;
  bottom:90px;
  right:calc(50% + 615px);
}
.top_staff_section .color_deco02{
  width: 249px;
  height: 52px;
  background-color: #dbeed5;
  bottom:20px;
  right:calc(50% + 428px);
}

.top_staff_section .color_deco03{
  width: 113px;
  height: 31px;
  background-color: #dbeed5;
  top:48px;
  left:calc(50% + 592px);
}

.top_staff_section .color_deco04{
  width: 249px;
  height: 52px;
  background-color: #ffd8ce;
  top:108px;
  left:calc(50% + 446px);
}


.top_staff_section .staff_swiper_button{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  cursor: pointer;
  border: solid 2px #f95a37;
  background-color: #fff;
  z-index: 18;
  top:0;
  bottom:0;
  margin:auto;
  border-radius: 50%;
}

.top_staff_section .staff_swiper_button::after{
  content:'';
  width: 26px;
  height: 10px;
}

.top_staff_section .staff_swiper_prev{
  left:calc(50% - 626px);
}
.top_staff_section .staff_swiper_prev::after{
  background-image: url('../img/common/icon_arrow_left_red.png');
}

.top_staff_section .staff_swiper_next{
  right:calc(50% - 626px);
}
.top_staff_section .staff_swiper_next::after{
  background-image: url('../img/common/icon_arrow_right_red.png');
}


.top_staff_section .staff_slide{
  width:1280px;
  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;
  padding-right: 80px;
  min-height:500px;
  border-radius: 400px;
  background-color: #e83929;
}

.top_staff_section .staff_card .img_area{
  width: 631px;
  height: 464px;
  position: relative;
}

.top_staff_section .staff_card .color_card01{
  position: absolute;
  z-index: 10;
  width: 614px;
  height: 441px;
  border-radius: 6px;
  background-color: #fecbbe;
  position: absolute;
  transform: rotateZ(173deg);
  top:0;
  left:32px;
}

.top_staff_section .staff_card .color_card02{
  position: absolute;
  z-index: 11;
  width: 614px;
  height: 441px;
  border-radius: 6px;
  background-color: #258036;
  position: absolute;
  transform: rotateZ(178deg);
  top:0;
  left:32px;
}

.top_staff_section .staff_card .pic_frame{
  position: absolute;
  z-index: 12;
  width: 614px;
  height: 441px;
  border-radius: 6px;
  border:6px solid #fff;
  position: absolute;
  transform: rotateZ(3deg);
  top:0;
  left:32px;
}

.top_staff_section .staff_card .pic_frame img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

.top_staff_section .staff_card .staff_right{
  width:400px;
  min-height:100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
}

.top_staff_section .staff_card .staff_catch span{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.83;
  letter-spacing: 0.1em;
  color: #e83929;
  background-color: #fff;
  padding: 0 6px;
  /* background: linear-gradient(transparent 0%, #FFD9D7 0%); */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.top_staff_section .staff_card .staff_name01{
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
}

.top_staff_section .staff_card .staff_name02{
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height:1.3;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 8px;
}

.top_staff_section .staff_card .staff_border{
  height: 2px;
  background-color: #fff;
  margin-top: 12px;

}

.top_staff_section .staff_card .staff_depart{
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.44;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.top_staff_section .staff_card .reco_flex{
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.top_staff_section .staff_card .reco_left{
  flex-shrink: 0;
  margin-right: 20px;
  width:120px;
  height: 60px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.22;
  text-align: center;
  color: #e83929;
  position: relative;
  white-space: nowrap;
}


.top_staff_section .staff_card .reco_left::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  right:-7px;
  top:0;
  bottom:0;
  margin:auto;
}

.top_staff_section .staff_card .reco_right{
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 400;
  /* padding-top: 7px; */
}

.top_link_section{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fdf8ed;
}

.top_link_section .flex{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1920px;
  margin:0 auto;
  padding:0 20px;
  gap:32px 1.7%;
  margin-bottom: 100px;
}

.top_link_section .flex .block{
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 910px; */
  width: 49%;
  border-radius: 10px;
  /* padding:70px 70px; */
  padding:70px 3.7%;
  position: relative;
}

.top_link_section .flex .block01{
  background-image: url('../img/top/top_download_bg01.jpg');
}
.top_link_section .flex .block02{
  background-image: url('../img/top/top_download_bg02.jpg');
}

.top_link_section .flex .block .radi_text{
  position: absolute;
  right:20px;
  bottom:20px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

.top_link_section .flex .block .radi_text::after{
  content:'';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  margin-left: 10px;
}

.top_link_section .flex .block_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  padding-top: 56px;
  padding-bottom: 56px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 10px;
  background-color: rgba(255,255,255,0.85);
}

.top_link_section .flex .block_head{
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_link_section .flex .block_head::after{
  content:'';
  width: 50px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #e83929;
  margin-top: 16px;
}

.top_link_section .flex .block_text{
  margin-top: 16px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing:0.1em;
  text-align: center;
}

@media screen and (max-width:1600px){
  .top_link_section .flex .block{
    padding:56px 1.5%;
  }

  .top_link_section .flex .block_head{
    font-size: 32px;
  }

  .top_link_section .flex .block_text{
    font-size: 16px;
    white-space: nowrap;
  }

}


.top_link_section .link_list .link_item{
  display: flex;
}

.top_link_section .link_list .link_item:nth-child(even){
  justify-content: flex-end;
}

.top_link_section .link_block{
  width:530px;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.top_link_section .link_block .common_sec_deco_title{
  align-items: flex-start;
}

.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-top: 40px;
}

.top_link_section .link_block .pic{
  position: absolute;
  width:600px;
  top:0;
  left:600px;
  border-radius: 10px;
}


.top_link_section .link_item02 {
  margin-top: 110px;
  position: relative;
}

.top_link_section .link_item02::before{
  content:'';
  width:1920px;
  min-width: 100vw;
  height:100%;
  background-image: url('../img/top/top_company01.jpg');
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 0;
}

.top_link_section .link_item02 .link_block{
  min-height: auto;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.top_link_section .link_item03{
  margin-top: 60px;
}

.top_news_section{
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fffdf8;

} 

.top_news_section .common_news_list{
  max-width: 1100px;
  margin: 48px auto 0;
}

.top_news_section .common_red_button{
  margin:60px auto 0;
}

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

body.page_body{
  position: relative;
}

body.page_body::before{
  content:'';
  width:100%;
  height:100%;
  background-color: #fdf8ed;
  position: absolute;
  top:0;
  left:0;
  z-index:-10;
}

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


.common_bread_section{

}

.common_bread_section{
  padding:24px 0;
}

.common_bread_section .bread_list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.common_bread_section .bread_list a{
  transition-duration: 0.4s;
  color: #e83929;
}

.common_bread_section .bread_list .arrow{
  width: 20px;
  height: 7px;
  background-image: url('../img/common/bread_arrow.png');
}

@media(any-hover:hover){
  .common_bread_section .bread_list a:hover{
    opacity: 0.5;
  }
}


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

.page_mv_section{
  position: relative;
  padding:20px 0;
  min-height:260px;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#fff;
}

.page_mv_section .common_sec_deco_title{
  font-size: 42px;
  position: relative;
  z-index: 3;
}

.page_mv_section::before{
  content:'';
  width: 1860px;
  height:100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index:0;
  border-radius: 10px;
}

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

body.archive_products_body{
  
}

main.archive_products_main{

}

.archive_products_section{

}

.archive_products_section01{
  padding-top: 72px;
  padding-bottom: 126px;
  background-color: #fffdf8;

}

.archive_products_section01 .page_title{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing:0.1em;
  text-align: center;
}

.archive_products_section01 .cat_flex{
  display: flex;
  margin-top: 60px;
}

.archive_products_section01 .cat_flex .cat_head{
  width: 150px;
  padding: 24px 0;
  background-color: #e83929;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing:0.1em;
  color: #fff;
  border-radius: 10px 0 0 10px;
}

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

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

.archive_products_section01 .cat_area .cat_parents_item span{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.archive_products_section01 .cat_area .cat_parents_item span::after{
  content:'';
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-left: 8px;
  background-image: url('../img/common/icon_radi_arrow_bottom_wihte_red.png');
}

.archive_products_section01 .cat_area .cat_parents_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

@media screen and (min-width:1241px){
  .archive_products_section01 .cat_area .cat_child_frame{
    display: block!important;
  }
}


.archive_products_section01 .cat_area .cat_parents_item:hover .cat_child_frame{
  opacity: 1;
  pointer-events: auto;
}

.archive_products_section01 .cat_area .cat_child_menu{
  white-space: nowrap;
  border-radius: 10px;
  border: solid 2px #e83929;
  background-color: #fff8f6;
  min-width: 210px;
}

.archive_products_section01 .cat_area .cat_child_item{
  border-bottom:1px solid #cecbc5;
}

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

.archive_products_section01 .cat_area .cat_child_item a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:12px;
  font-size: 18px;
  line-height: 1.3;
}

.archive_products_section01 .cat_area .cat_child_item a::after{
  content:'';
  width: 8px;
  height: 14px;
  background-image: url('../img/common/icon_angle_right_red.png');
  flex-shrink: 0;
  margin-left: 8px;
}

.archive_products_section01 .products_list{
  display: flex;
  flex-wrap: wrap;
  gap:54px 24px;
  margin-top: 80px;
}

.archive_products_section01 .products_item{
  width: 220px;
} 

.archive_products_section01 .products_card{
  display: block;
}

.archive_products_section01 .products_card .products_thumb{
  aspect-ratio: 1/1;
  border-radius: 10px;
}

.archive_products_section01 .products_card .products_thumb img{
  width: 100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
}

.archive_products_section01 .products_card .products_name{
  margin-top: 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;

}

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

.archive_products_section01 .no_result{
  margin-top: 40px;
  text-align: center;
}

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

body.single_products_body{
  
}

main.single_products_main{

}

.single_products_section{

}

.single_products_section01{
  padding-top: 72px;
  padding-bottom: 100px;
  background-color: #fffdf8;
}


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

.single_products_section01 .flex .left{
  flex-shrink: 0;
  width:520px;
  margin-right: 80px;
}

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


.single_products_section01 .products_main_img_frame{
  position: relative;
  aspect-ratio: 1/1;
}

.single_products_section01 .products_gal_arrow{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: solid 2px #e83929;
  background-color: #fff;
  position: absolute;
  top:0;
  bottom:0;
  margin:auto;
  cursor: pointer;
  z-index: 5;
}

.single_products_section01 .products_gal_arrow::after{
  content:'';
  width: 26px;
  height: 10px;
  
}

.single_products_section01 .products_gal_arrow.prev{
  left:-26px;
}
.single_products_section01 .products_gal_arrow.prev::after{
  background-image: url('../img/common/icon_page_prev_red.png');
}

.single_products_section01 .products_gal_arrow.next{
  right:-26px;
}
.single_products_section01 .products_gal_arrow.next::after{
  background-image: url('../img/common/icon_page_next_red.png');
}


.single_products_section01 .products_main_img_frame .products_main_img{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transition-duration: 0.4s;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}

.single_products_section01 .products_main_img_frame .products_main_img.show{
  opacity: 1;
}

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

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

.single_products_section01 .products_gal_list .products_gal_item::before{
  content:'';
  width:100%;
  height:100%;
  background-color:rgba(134,97,54,0.5) ;
  position: absolute;
  top:0;
  left:0;
  z-index:2;
  border-radius: 10px;
  opacity: 0;
  transition-duration: 0.4s;
}

.single_products_section01 .products_gal_list .products_gal_item.active::before{
  opacity: 1;
}

.single_products_section01 .products_gal_list .products_gal_img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
}

.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;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: left;
  padding-bottom: 30px;
  border-bottom:2px solid #cecbc5;
}

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



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

.single_products_section01 .right .products_contact{
  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: 24px 64px 24px 40px;
  border: solid 3px #e83929;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
}

.single_products_section01 .products_staff_box::before{
  content:'';
  width:340px;
  height:20px;
  background-color: #fff;
  position: absolute;
  top:-4px;
  left:0;
  right:0;
  margin:auto;
}

.single_products_section01 .products_staff_head{
  position: absolute;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
  left:0;
  top:-20px;
  color: #e83929;
  
}

.single_products_section01 .staff_info{
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-right: 32px;
  width:215px;
}

.single_products_section01 .staff_info .staff_img{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin:0 auto;
}

.single_products_section01 .staff_info .staff_name{
  display: flex;
  justify-content: center;
  margin-top: 12px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.single_products_section01 .staff_info .staff_area{
  display: flex;
  justify-content: center;
  margin-top: 4px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.single_products_section01 .products_staff_text{
  width:100%;
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 40px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
}

.single_products_section01 .staff_link{
  
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #e83929;
  position: absolute;
  bottom:0;
  right:-28px;
}

.single_products_section01 .staff_link::after{
  content:'';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 10px;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
}

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

.single_products_section01 .list li{
  display: flex;
  border-bottom:1px solid #cecbc5;
  padding:24px 0;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
}

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

}

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

.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{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #e83929;
  position: absolute;
  right:0;
  top:-70px;
}

.single_products_section02 .recommend_link::after{
  content:"";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  margin-left: 12px;

}

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

.single_products_section02 .relation_list{
  
  display: flex;
  gap: 32px 24px;
}

.single_products_section02 .relation_item{
  width: 220px;
}

.single_products_section02 .relation_card{
  display: block;
  
}

.single_products_section02 .relation_card .thumb{
  aspect-ratio: 1/1;
}

.single_products_section02 .relation_card .thumb img{
  width: 100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
}

.single_products_section02 .relation_card .recommend_name{
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  letter-spacing: 0.1em;
}



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

body.archive_staff_body{
  
}

main.archive_staff_main{

}

.archive_staff_section{

}

.archive_staff_mv_section{
  color: #231815;
}

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

.archive_staff_section01{
  padding-top: 96px;
  padding-bottom: 120px;
  background-color: #fffdf8;
}



.archive_staff_section01 .pickup_frame{
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 60px;
  padding-right: 90px;
  border-radius: 10px;
  background-color: #fff8e7;
  border:4px solid #e83929;
  display: flex;
  justify-content: space-between;
  margin-bottom: 132px;
}

.archive_staff_section01 .pickup_frame::before{
  content:'';
  width:460px;
  height:20px;
  background-color: #fff8e7;
  position: absolute;
  top:-5px;
  /* top:0; */
  left:0;
  right:0;
  margin: auto;
  z-index: 3;

}

.archive_staff_section01 .pickup_frame::after{
  content:'';
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  border: solid 3px #37a24b;
  border-radius: 10px;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  pointer-events: none;
}

.archive_staff_section01 .pickup_frame .staff_intro{
  position: absolute;
  z-index: 1;
  width:100%;
  left:0;
}

.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{
  position: absolute;
  width: 133px;
  left: 226px;
  top: -41px;
  z-index: 3;
}

.archive_staff_section01 .staff_deco02{
  position: absolute;
  width: 160px;
  right: 194px;
  top: -69px;
  z-index: 3;
}

.archive_staff_section01 .staff_intro01{
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 2;
}

.archive_staff_section01 .staff_block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 4;
  width:100%;
}

.archive_staff_section01 .staff_block .img_area{
  display: block;
  width: 567px;
  height: 418px;
  position: relative;
}

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

.archive_staff_section01 .staff_block .color_card01{
  background-color: #fecbbe;
  transform: rotateZ(173deg);
  top: 0;
  left: 0;
  z-index: 6;
}

.archive_staff_section01 .staff_block .color_card02{
  background-color: #258036;
  transform: rotateZ(177deg);
  top: 0;
  left: 0;
  z-index: 7;
}

.archive_staff_section01 .staff_block .pic_frame{
  transform: rotateZ(3deg);
  top: 0;
  left: 0;
  z-index: 8;
  padding:6px;
  background-color: #fff;;
}

.archive_staff_section01 .staff_block .pic_frame img{
  width: 100%;
  height:100%;
  border-radius: 6px;
  object-fit: cover;
  top: 0;
  left: 0;
}


.archive_staff_section01 .staff_block .staf_info_area{
  width: 400px;
}

.archive_staff_section01 .staff_block .staff_catch span{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.83;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #e83929;
  padding: 0 6px;
  /* background: linear-gradient(transparent 0%, #FFD9D7 0%); */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}


.archive_staff_section01 .staff_block .staff_name{
  margin-top: 24px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: bold;
}

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

.archive_staff_section01 .staff_block .staff_name_en{
  margin-top: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #e83929;
}

.archive_staff_section01 .staff_block .staff_border{
  margin-top: 12px;
  height:2px;
  background-color: #e83929;
}

.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;
}

/*2カラムの場合*/

.archive_staff_section01 .pickup_frame02{
  padding-right: 70px;
  padding-left: 70px;
  padding-top: 96px;
  padding-bottom: 60px;
}

.archive_staff_section01 .pickup_frame02 .staff_block{
  flex-direction: column;
  justify-content: space-between;
  width:500px;
}

.archive_staff_section01 .pickup_frame02 .staff_block .img_area{
  width: 460px;
  height: 339px;
}

.archive_staff_section01 .pickup_frame02 .staff_block .color_card01,
.archive_staff_section01 .pickup_frame02 .staff_block .color_card02,
.archive_staff_section01 .pickup_frame02 .staff_block .pic_frame{
  width:448px;
  height:322px;
}

.archive_staff_section01 .pickup_frame02 .staff_block .color_card01{
  top: 0;
  left: 0;

}

.archive_staff_section01 .pickup_frame02 .staff_block .color_card02{
  top: 0;
  left: 0;

}

.archive_staff_section01 .staff_block .pic_frame{
  top: 0;
  left: 0;
}

.archive_staff_section01 .pickup_frame02 .staff_block .staf_info_area{
  width:100%;
  min-height: calc(100% - 339px);
  margin-top: 0;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive_staff_section01 .pickup_frame02 .staff_block .staf_bottom_area{
  width: 100%;
}


.archive_staff_section01 .pickup_frame02 .staff_block .staff_name{
  display: flex;
  align-items: center;
  gap:12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.archive_staff_section01 .pickup_frame02 .staff_block .staff_name_en{
  margin-top: 0;
  font-family: 'Lato', sans-serif;
}

.archive_staff_section01 .pickup_frame02 .staff_block .common_red_button{
  margin:40px auto 0;
}

.archive_staff_section01 .no_result{
  text-align: center;
  margin-top: 40px;
}

.archive_staff_section01 .sec_title{
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}

.archive_staff_section01 .sec_title::after{
  content:'';
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: #e83929;
  margin-top: 28px;
}


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

.common_staff_list{
  display: flex;
  flex-wrap: wrap;
  gap:60px 24px;
}

.common_staff_list .staff_item{
  width:280px;
}

.common_staff_list .staff_card{
  display: block;
}

.common_staff_list .staff_card .thumb{
  aspect-ratio: 1/0.785;
}

.common_staff_list .staff_card .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
}

.common_staff_list .staff_card .staff_catch{
  margin-top: 24px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.38;
  letter-spacing:0.1em;
  color: #e83929;
}

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

.common_staff_list .staff_card .staff_name{
  font-size: 22px;
  font-weight: bold;
  line-height: 1.18;
  letter-spacing:0.1em;
  border-bottom:2px solid #e83929;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.common_staff_list .staff_card .staff_name_en{
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #e83929;
  margin-top: 2px;
}

.common_staff_list .staff_card .staff_area{
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.63;
  letter-spacing:0.1em;
}

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

body.single_staff_body{
  
}

main.single_staff_main{

}

.single_staff_section{

}

.single_staff_mv_section{
  color: #231815;
}

.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;
  background-color: #fffdf8;
}

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

.single_staff_section01 .staff_sec_head{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

}

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

.single_staff_section01 .staff_sec_head .sub_title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;  
  height: 40px;
  padding:0 24px;
  border-radius: 20px;
  background-color: #e83929;
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing:0.18;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top:calc(100% - 20px);
  left:0;
  right:0;
  margin:auto;
}



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

.single_staff_section01 .img_area{
  flex-shrink: 0;
  width: 631px;
  height: 464px;
  position: relative;
  margin-right: 72px;
  margin-top: 60px;
}

.single_staff_section01 .color_card01,
.single_staff_section01 .color_card02,
.single_staff_section01 .pic_frame{
  width:614px;
  height:441px;
  position: absolute;
  border-radius: 6px;
}

.single_staff_section01 .color_card01{
  background-color: #fecbbe;
  transform: rotateZ(173deg);
  top: 0;
  left: 0;
  z-index: 6;
}

.single_staff_section01 .color_card02{
  background-color: #258036;
  transform: rotateZ(177deg);
  top: 0;
  left: 0;
  z-index: 7;
}

.single_staff_section01 .pic_frame{
  transform: rotateZ(3deg);
  top: 0;
  left: 0;
  z-index: 8;
  padding:6px;
  background-color: #fff;;
}

.single_staff_section01 .pic_frame img{
  width: 100%;
  height:100%;
  border-radius: 6px;
  object-fit: cover;
  top: 0;
  left: 0;
}


.single_staff_section01 .staf_info_area{
  width:100%;
}

.single_staff_section01 .staff_catch span{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.83;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #e83929;
  padding: 0 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}


.single_staff_section01 .staff_name{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:12px;
  margin-top: 36px;
  letter-spacing: 0.1em;
}

.single_staff_section01 .staff_name_ja{
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}


.single_staff_section01 .staff_name_en{
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: #e83929;
}

.single_staff_section01 .staff_border{
  height: 2px;
  margin-top: 10px;
  background-color: #e83929;
}

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

.single_staff_section01 .staff_enthusiasm{
  font-size: 22px;
  font-weight: bold;
  line-height: 1.18;
  color: #e83929;
  letter-spacing: 0.1em;
  margin-top: 18px;
}

.single_staff_section01 .staff_place_frame{
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.single_staff_section01 .staff_place_frame .staff_place_head{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  margin-right: 20px;
  width: 120px;
  height: 30px;
  border-radius: 6px;
  background-color: #e83929;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  padding-bottom: 2px;
}

.single_staff_section01 .staff_place_frame .staff_place_head::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 4px 0 4px 10px;
  border-color: transparent transparent transparent #e83929;
  position: absolute;
  top:0;
  bottom:0;
  right:-9px;
  margin:auto;
}

.single_staff_section01 .staff_place_frame .staff_place{
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: 0.1em;
  padding-top: 2px;
}

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

.single_staff_section01 .staff_products_head{
  padding:12px;
  border-radius: 6px;
  background-color: #258036;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}

.single_staff_section01 .staff_products_head::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 10px 10px 0 10px;
  border-color: #258036 transparent transparent transparent;
  position: absolute;
  left:0;
  right:0;
  bottom:-9px;
  margin:auto;
}


.single_staff_section01 .staff_products_flex{
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

.single_staff_section01 .staff_products_flex .staff_products_img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  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;
  font-weight: bold;
  line-height: 1.56;
  letter-spacing:0.1em;
}

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

.single_staff_section01 .staff_products_flex .staff_products_text br{
  display: none;
}

.single_staff_section01 .staff_products_link{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 50px;
  width: fit-content;
  margin-left: auto;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing:0.1em;
  color: #e83929;
}


.single_staff_section01 .staff_products_link::after{
  content:'';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
  margin-left: 10px;
}

.single_staff_section01 .history_box{
  position: relative;
  margin-top: 96px;
  border-radius: 10px;
  border: solid 3px #e83929;
  background-color: #fff;
  padding:60px 40px 48px;
}

.single_staff_section01 .history_box::before{
  content:'';
  width:345px;
  height:20px;
  background-color: #fff;
  position: absolute;
  top:-4px;
  left:0;
  right:0;
  margin:auto;
}

.single_staff_section01 .history_box .history_head{
  width:100%;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #e83929;
  position: absolute;
  top:-20px;
  left:0;
  z-index: 2;
}

.single_staff_section01 .history_list{
  width: fit-content;
  margin:0 auto;
  position: relative;
}

.single_staff_section01 .history_list::after{
  content: '';
  width: 2px;
  height: 100%;
  background-color: #e83929;
  position: absolute;
  left: 141px;
  top: 14px;
}

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

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

.single_staff_section01 .history_item .history_year{
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  line-height: 1.29;
  letter-spacing:0.1em;
  color: #e83929;
  flex-shrink: 0;
  width:135px;
}

.single_staff_section01 .history_item .history_radi{
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 56px;
  padding-top: 10px;
}

.single_staff_section01 .history_item .history_radi span{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e83929;
}

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



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


.single_staff_section01 .staff_strength_flex{
  display: flex;
  margin-top: 80px;
}


.single_staff_section01 .staff_strength_text{
  width:100%;
  padding-top: 20px;
  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: 88px;
}

.single_staff_section01 .staff_strength_img img{
  width: 100%;
  border-radius: 10px;
}


.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;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.single_staff_section01 .impression_item .impression_text{
  width: 100%;
  min-height: 180px;
  position: relative;
  padding:36px 32px;
  border-radius: 10px;
  border: solid 2px #cecbc5;
  background-color: #fff;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing:0.1em;
}

.single_staff_section01 .impression_item .impression_text::before{
  content:'';
  width:24.5px;
  height:18px;
  background-image: url('../img/staff/staff_comment_triangle.png');
  position: absolute;
  top:80px;
}


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

}
.single_staff_section01 .impression_item:nth-child(odd) .impression_img{
  margin-right: 48px;
}
.single_staff_section01 .impression_item:nth-child(odd) .impression_text::before{
  left:-24px;
}


.single_staff_section01 .impression_item:nth-child(even){
  flex-direction: row-reverse;
}
.single_staff_section01 .impression_item:nth-child(even) .impression_img{
  margin-left: 48px;
}
.single_staff_section01 .impression_item:nth-child(even) .impression_text::before{
  right:-24px;
  transform: rotateZ(180deg);
}


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

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


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

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

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

.single_staff_section01 .staff_hobby_img img{
  width: 100%;
  border-radius: 10px;
}


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

.single_staff_section01 .evaluation_area .evaluation_head{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;

}

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

.single_staff_section01 .evaluation_item{
  display: flex;
  align-items: flex-start;
  padding:40px 50px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px #cecbc5;
}

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

.single_staff_section01 .evaluation_item .evaluation_img{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 30px;
}

.single_staff_section01 .evaluation_item .evaluation_info{
  width: 100%;
}

.single_staff_section01 .evaluation_item .evaluation_name{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.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;
  letter-spacing: 0.1em;
}

.single_staff_section01 .staff_list_link{
  
}

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

}

.single_staff_section02 .sec_title{
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing:0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.single_staff_section02 .sec_title::after{
  content:'';
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: #e83929;
  margin-top: 28px;
}

.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;
  background-color: #fffdf8;

}

.archive_news_section01 .no_result{
  text-align: center;
}

.archive_news_section01 .news_list_article{
  max-width: 1100px;
}

.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;
  background-color: #fffdf8;
}

.single_news_section01 .news_article{
  max-width: 800px;
  margin:0 auto;
}

.single_news_section01 .news_title{
  font-size: 34px;
  font-weight: bold;
  line-height: 1.59;
  letter-spacing:0.1em;
  text-align: left;
}

.single_news_section01 .news_date{
  margin-top: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing:0.1em;
  color: #e83929;
}



.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;
  position: relative;
}

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

.common_single_frame h2::before{
  background-color: #e83929;
  left:0;
  top:9px;
  z-index: 1;
}
.common_single_frame h2::after{
  background-color: #37a24b;
  top:16px;
  left:10px;

}

.common_single_frame h3{
  margin-top: 48px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.21;
  letter-spacing: 0.1em;
  padding-left: 48px;
  position: relative;
}

.common_single_frame h3::before{
  content:'';
  width: 34px;
  height: 12px;
  border-radius: 6px;
  background-color: #e83929;
  position: absolute;
  left:0;
  top:12px;
}

.common_single_frame h4{
  margin-top: 48px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.31;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 22px;
}

.common_single_frame h4::before{
  content:'';
  width: 5px;
  height: 28px;
  border-radius: 3px;
  background-color: #e83929;
  position: absolute;
  left:0;
  top:3px;
}

.common_single_frame h5{
  margin-top: 48px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.1em;
  padding:8px 20px;
  border-radius: 6px;
  background-color: #f1e9d7;
}

.common_single_frame h6{
  margin-top: 48px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
}

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

.common_single_frame ul{
  margin-top: 48px;
  padding-left: 40px;
}

.common_single_frame ul li{
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  list-style: outside;
}

.common_single_frame ul li::marker{
  background-color: #e83929;
  color: #e83929;
}

.common_single_frame ul li + li{
  margin-top: 8px;
}

.common_single_frame ol{
  margin-top: 48px;
  padding-left: 18px;
}

.common_single_frame ol li{
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  counter-increment: cnt;
  position: relative;
  padding-left: 24px;
}

.common_single_frame ol li::before {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  content: counter(cnt)".";
  color: #e83929;
  position: absolute;
  left:0;
  top:0;
}

.common_single_frame ol li + li{
  margin-top: 8px;
}

.common_single_frame pre{
  margin-top: 64px;
  padding:30px 40px;
  border-radius: 10px;
  background-color: #f1e9d7;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
}

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

.common_single_frame table{
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.common_single_frame table tr{
  
}

.common_single_frame table td{
  padding:24px 16px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  background-color: #ffff;
  border:none;
  border-bottom: solid 1px #ccc;
}

.common_single_frame table tr:last-child td{
  border-bottom:none;
}

.common_single_frame table td:first-child{
  background-color: #e83929;
  color:#fff;
}

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

.single_news_section01 .link_flex a{
  position: relative;
  width: 240px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.4s;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media(any-hover:hover){
  .single_news_section01 .link_flex a:hover{
    opacity: 0.5;
  }
}

.single_news_section01 .link_flex .link_home{
  background-color: #e83929;
  color:#fff;
}

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

.single_news_section01 .link_flex .link a{
  color: #e83929;
  background-color: #fff;
  border: solid 2px #e83929;

}

.single_news_section01 .link_flex .link a::after{
  content:'';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top:0;
  bottom:0;
  margin:auto;
  background-image: url('../img/common/icon_radi_arrow_right_white_red.png');
}

.single_news_section01 .link_flex .link_prev a{
  padding-left: 20px;
}
.single_news_section01 .link_flex .link_prev a::after{
  left:10px;
  transform: rotateZ(180deg);
}

.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;
  background-color: #fffdf8;
}

.proposal_section01 .cat_list{
  display: flex;
  justify-content: space-between;
}

.proposal_section01 .cat_list li{
  /* width: 230px; */
  width: 190px;
}

.proposal_section01 .cat_list li a{
  width: 100%;
  min-height: 60px;
  padding:6px 8px;
  border-radius: 10px;
  background-color: #b9ab8f;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing:0.1em;
  text-align: center;
  color: #fff;
}


.proposal_section01 .cat_list li a.active{
  background-color: #e83929;
  
}

.proposal_section01 .download_list{
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap:50px 30px;
  
} 

.proposal_section01 .download_list .download_item{
  width:380px;
  position: relative;
  background-color: #fff;
  padding-bottom: 96px;
  border-radius: 10px;
  border: 3px solid #cecbc5;
  overflow: hidden;
}

.proposal_section01 .download_item .thumb{
  aspect-ratio: 1/0.58;
}

.proposal_section01 .download_item .thumb img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

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

.proposal_section01 .download_item .download_title{
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.proposal_section01 .download_item .download_cat_list{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap:10px;
  margin-top: 12px;
}

.proposal_section01 .download_item .download_cat_list span{
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #b9ab8f;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}

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

.proposal_section01 .download_item .download_link{
  position: absolute;
  bottom:24px;
  left:0;
  right:0;
  margin:auto;
  width: 280px;
}

.proposal_section01 .download_item .download_link .common_red_button{
  width:100%;
  height:50px;
}

.proposal_section01 .no_result{
  margin-top: 40px;
  text-align: center;
}

.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;
  background-color: #fffdf8;
}

.download_section01 .download_title{
  display: flex;
  justify-content: center;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
}

.download_section01 .download_thumb{
  max-width: 800px;
  margin:40px auto 0;
}

.download_section01 .download_thumb img{
  width: 100%;
}

.download_section01 .form_frame{
  margin-top: 56px;
}
/*
------------------------------------
会社概要・沿革
------------------------------------
*/

body.company_body{
  
}

main.company_main{

}

.company_mv_section{

}

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

.company_section{
  background-color: #fffdf8;
}

.company_section .link_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:0 30px;
  margin-bottom: 80px;
}

.company_section .anchor_link{
  width: 300px;
  height: 60px;
  background-color: #fff;
  color: #e83929;
}

.company_section .anchor_link::before{
  background-color: #e83929;
}

.company_section .anchor_link::after{
  background-image: url('../img/common/icon_radi_arrow_bottom_wihte_red.png');
}

@media(any-hover:hover){
  .company_section .anchor_link:hover{
    color: #fff;
  }
  .company_section .anchor_link:hover::after{
    background-image: url('../img/common/icon_radi_arrow_bottom_red.png');
  }
}

.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: 18px;
  
  line-height: 2.11;
  letter-spacing:0.1em;
}

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

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

.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{
  display: block;
  width:100%;
  height:460px;
}

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

.company_history_section .history_list{
  /* max-width: 1080px; */
  margin:80px auto 0;
  margin-left: 60px;
  position: relative;
}

.company_history_section .history_list::before{
  content:'';
  width:2px;
  height:100%;
  background-color: #e83929;
  position: absolute;
  top: 18px;
  left: 236px;
}

.company_history_section .history_item{
  display: flex;
  align-items: flex-start;
}

.company_history_section .history_item:last-child{
  height:0;
}

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

.company_history_section .history_item .history_year{
  flex-shrink: 0;
  width:230px;
  padding-right: 16px;
  padding-top: 10px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.company_history_section .history_item .history_year span{
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  padding:0 3px;
}

.company_history_section .history_item .history_radi{
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 14px;
  margin-right: 64px;
}

.company_history_section .history_item .history_radi span{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e83929;
}

.company_history_section .history_item .history_text{
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.22;
  letter-spacing: 0.1em;
}

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

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;
  background-color: #fffdf8;
}

.commit_about_section .p01{
  margin-top: 32px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing:0.1em;
  text-align: center;
}

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

.commit_about_section .img_frame .about01{
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.commit_about_section .deco{
  position: absolute;
}

.commit_about_section .deco01{
  width: 113px;
  height: 31px;
  border-radius: 15.5px;
  background-color: #ffd8ce;
  bottom:160px;
  left:-200px;
}

.commit_about_section .deco02{
  width: 249px;
  height: 52px;
  border-radius: 26px;
  background-color: #dbeed5;
  left:-160px;
  bottom:80px;
}

.commit_about_section .deco03{
  width: 113px;
  height: 31px;
  border-radius: 15.5px;
  background-color: #dbeed5;
  top:80px;
  right:-203px;
}

.commit_about_section .deco04{
  width: 249px;
  height: 52px;
  border-radius: 26px;
  background-color: #ffd8ce;
  top:130px;
  right:-153px;
}


.commit_point_section{
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fffdf8;
}

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

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

.commit_point_section .point_block .img_area{
  width: 600px;
  flex-shrink: 0;
}

.commit_point_section .point_block .pic{
  width:100%;
  border-radius: 20px;
}

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

.commit_point_section .point_block .point_num{
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #e83929;
}

.commit_point_section .point_block .point_title{
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

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

.commit_point_section .point_block .pdf_link{
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #e83929;
  border-bottom: 1px solid #e83929;
}

.commit_point_section .point_block .pdf_link::before{
  display: inline-block;
  content:'';
  width: 18px;
  height: 25px;
  background-image: url('../img/common/icon_pdf_red.png');
  margin-right: 6px;
}

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

.commit_point_section .point_block:nth-child(even){
  flex-direction: row-reverse;
}
.commit_point_section .point_block:nth-child(even) .img_area{
  margin-left: 80px;
}

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

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



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

}

.commit_brand_section .common_bottom_border_title{
  color:#fff;
}

.commit_brand_section .common_bottom_border_title::after{
  background-color: #fff;
}

.commit_brand_section::before{
  content:'';
  width:1920px;
  min-width: 100vw;
  height:100%;
  background-image:url('../img/commit/brand_bg.jpg');
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index:-1;
}

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

.commit_brand_section .brand_block{
  padding:60px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.commit_brand_section .brand_block .text_area{
  width:100%;
}

.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{
  color: #e83929;
  border-bottom:1px solid #e83929;
} 

.commit_brand_section .brand_block .link::after{
  display: inline-block;
  content:'';
  width: 18px;
  height: 18px;
  background-image: url('../img/common/icon_link_red.png');
  margin-left: 6px;
}

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

.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;
  background-color: #fffdf8;
}


.commit_abroad_section .p01{
  margin-top: 32px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
  text-align: center;
}

.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{
  display: flex;
  justify-content: center;
  position: relative;
  gap:0 100px;
  padding:40px 24px 32px;
  position: relative;
  border: solid 3px #e83929;
  max-width: 745px;
  margin:44px auto 0;
  border-radius: 10px;
} 

.commit_abroad_section .list_box::before{
  content:'';
  width:260px;
  height:5px;
  background-color: #fffdf8;
  position: absolute;
  top:-4px;
  left:0;
  right:0;
  margin:auto;
}


.commit_abroad_section .list_box .box_head{
  position: absolute;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  width:100%;
  left:0;
  top:-14px;
}

.commit_abroad_section .list_box ul{

}

.commit_abroad_section .list_box ul li{
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

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

.commit_abroad_section .list_box ul li::before{
  content:'';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #e83929;
  margin-right: 15px;
  flex-shrink: 0;
}

.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;
  background-color: #fffdf8;
}

.faq_section .link_flex{
  display: flex;
  justify-content: space-between;
}

.faq_section .anchor_link{
  width:280px;
  height: 60px;
  background-color: #fff;
  color: #e83929;
  line-height: 1.2;
  text-align: center;
}

.faq_section .anchor_link::before{
  background-color: #e83929;
}

.faq_section .anchor_link::after{
  background-image: url('../img/common/icon_radi_arrow_bottom_wihte_red.png');
}

@media(any-hover:hover){
  .faq_section .anchor_link:hover{
    color: #fff;
  }
  .faq_section .anchor_link:hover::after{
    background-image: url('../img/common/icon_radi_arrow_bottom_red.png');
  }
}

.faq_section .faq_area{
  margin-top: 100px;
}

.faq_section .faq_head{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.13;
  letter-spacing: 0.1em;
  text-align: center;
}

.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;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.common_faq_list .faq_question::before{
  content:'Q';
  font-family: 'Lato', sans-serif;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e83929;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  position: absolute;
  left:20px;
  top:18px;
  padding-bottom: 4px;
}

.common_faq_list .faq_question::after{
  content:'';
  width: 24px;
  height: 24px;
  background-image: url('../img/common/icon_plus_red.png');
  position: absolute;
  right:28px;
  top:32px;
}

.common_faq_list .faq_question.active::after{
  height: 3px;
  background-image: url('../img/common/icon_minus_red.png');
  top:42px;
}

.common_faq_list .faq_answer{
  padding:22px 64px 22px 90px;
  background-color: #fdf8ed;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing:0.1em;
  position: relative;
  display: none;
}

.common_faq_list .faq_answer::before{
  content:'A';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 2px #e83929;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing:0;
  color: #e83929;
  position: absolute;
  left:20px;
  top:18px;
  padding-bottom: 4px;
}

.common_faq_list .faq_answer a{
  color: #e83929;
  border-bottom: 1px solid #e83929;
}

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

body.transaction_body{
  
}

main.transaction_main{

}

.transaction_mv_section{

}

.transaction_section{
  background-color: #fffdf8;
}


.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;
}

.transaction_think_section .img_area{
  width:560px;
  flex-shrink: 0;
  margin-right: 60px;
}

.transaction_think_section .img_area img{
  width:100%;
  border-radius: 10px;
}

.transaction_think_section .text_area{
  width: 100%;
  padding-top: 16px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
}

.transaction_flow_section{
  padding-top: 100px;
}

.transaction_flow_section .p01{
  margin-top: 36px;
  font-size: 18px;
  line-height: 2.11;
  letter-spacing: 0.1em;
  text-align: center;
}

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

.transaction_flow_section .flow_block{
  position: relative;
  padding:32px 72px 32px 50px;
  background-color: #fff;
  border-radius: 20px;
  border: solid 3px #e83929;
  position: relative;
  display: flex;
  align-items: center;
}

.transaction_flow_section .flow_block::after{
  /* content:''; */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-image: url('../img/common/icon_radi_arrow_bottom_wihte_red.png');
  position: absolute;
  left:0;
  right:0;
  bottom:-26px;
  margin:auto;
}

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

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

.transaction_flow_section .flow_block .flow_pic img{
  width: 220px;
  height:220px;
  border-radius: 50%;
}

.transaction_flow_section .flow_block .flow_contents_area{
  width: 100%;
}

.transaction_flow_section .flow_block .flow_head{
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: 0.1em;
}

.transaction_flow_section .flow_block .flow_head span{
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #e83929;
  flex-shrink: 0;
  margin-right: 24px;
}

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

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

.transaction_flow_section .flow_block .button_flex a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 44px;
  border-radius: 22px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #e83929;
  position: relative;
}

.transaction_flow_section .flow_block .button_flex a::after{
  content:'';
  position: absolute;
  top: 50%;
  right:10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.transaction_flow_section .flow_block .button_flex a span{
  position: relative;
}

.transaction_flow_section .flow_block .button_flex a span::before{
  content:'';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.transaction_flow_section .flow_block .button_flex a.contact_link{
  background-color: #e83929;
}

.transaction_flow_section .flow_block .button_flex a.contact_link::after{
  background-image: url('../img/common/icon_radi_arrow_right_red.png'); 
}

.transaction_flow_section .flow_block .button_flex a.contact_link span::before{
  background-image: url('../img/common/icon_mail_white.png'); 
  width: 22px;
  height: 17px;
  left:-28px;
}

.transaction_flow_section .flow_block .button_flex a.estimate_link{
  background-color: #37a24b;
  margin-left: 20px;
}

.transaction_flow_section .flow_block .button_flex a.estimate_link::after{
  background-image: url('../img/common/icon_radi_arrow_right_green.png'); 
}

.transaction_flow_section .flow_block .button_flex a.estimate_link span::before{
  background-image: url('../img/common/icon_estimate_white.png'); 
  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;
  background-color: #fffdf8;
}

.catalog_section01 .p01{
  font-size: 18px;
  text-align: center;
  line-height: 2.11;
  letter-spacing: 0.1em;
}

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

.catalog_section01 .catalog_frame iframe{
  max-width: 100%;
  display: block;
  margin:0 auto;
}

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

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;
  background-color: #fffdf8;
}

.contact_section01 .contact_frame iframe{
  max-width: 100%;
  display: block;
  margin:0 auto;
}



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

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;
  background-color: #fffdf8;
}

.quotation_section01 .quotation_frame iframe{
  max-width: 100%;
  display: block;
  margin:0 auto;
}

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

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;
  background-color: #fffdf8;
}

.privacy_section .page_title{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}

.privacy_section .common_single_frame a{
  color: #e83929;
  border-bottom: 1px solid #e83929;
  word-break: break-all;
}

.privacy_section .common_single_frame a.mail,
.privacy_section .common_single_frame a.tel{
  color: #231815;
  border-bottom: none;
}

/*
------------------------------------
送信完了
------------------------------------
*/

body.thanks_body{
  
}

main.thanks_main{

}


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

.thanks_section01{
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #fffdf8;
}

.thanks_section01 .p01{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}

.thanks_section01 .p02{
  text-align: center;
  margin-top: 24px;
  line-height: 1.75;
}

.thanks_section01 .top_link{
  margin:32px auto 0;
}
/*
------------------------------------
404
------------------------------------
*/

body.page404_body{
  
}

main.page404_main{

}



.page404_section{
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #fffdf8;
}

.page404_section .p01{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

.page404_section .p02{
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.7;
  margin-top: 32px;
  font-size: 18px;
}