@charset "UTF-8";

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

/*//////////見出し//////////*/
.recipe-container {
  margin: 40px auto;
  text-align: left;
}

.recipe-no {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.recipe-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #333;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.recipe-tag {
  display: inline-block;
  text-decoration: none;
  background-color: #FED2C1;
  color: #333;
  padding: 3px 8px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
  cursor: pointer;
}

.recipe-tag:hover {
  opacity: 0.7;
  color: #333;
}
.recipe-article .document-item{
 	font-size: 14px;
    margin-right: 10px;
}
.recipe-article .document-item::before {
    margin-right: 6px;
    width: 12px;
    height: 12px;
}
.recipe-main-visual {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.recipe-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/*SPレイアウト*/
@media (max-width: 768px) {
  .recipe-main-visual {
    width: 100%;
  }

  .recipe-title {
    font-size: 20px;
  }
}

/*//////////お客様情報//////////*/
.info-section {
  margin: 10px auto 50px;
}

.info-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.info-right-block {
  display: flex;
  flex-direction: column;
}

.info-sub-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #000;
}

/* グレーのカード */
.info-card {
  /* background-color: #ededed;*/
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-attribute {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #ededed;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.info-attribute:last-child {
  margin-bottom: 0;
}

.info-attribute_long {
  display: grid;
  align-items: flex-end;
  border-bottom: 2px solid #fff;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.info-label,
.info-value {
  font-size: 14px;
  color: #333;
}

.info-label {
  font-weight: bold;
}

/* SPレイアウト */
@media (max-width: 768px) {
  .info-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-right-block {
    order: 2;
  }
}

/*//////////導入内容//////////*/
/*レシピカード*/
.case-detail_card {
  background-color: #f9f8f4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.header-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.step-label {
  background-color: #e6e2d8;
  color: #333;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 0 0 15px 0;
  font-size: 16px;
  min-width: 100px;
  text-align: center;
}

.case-detail_card .title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

/* 本文エリア */
.case-detail_card .content {
  padding: 0 30px 30px 30px;
}

.case-detail_card img {
  width: 480px;
  margin: 0 auto;
  display: block;

}

/*秘伝のタレ*/
.hiden-container {
  margin: 50px auto 0;
  position: relative;
  background-color: #fff;
}

.hiden-frame {
  position: relative;
  border: 5px double #E50101;
  border-radius: 15px;
  padding: 60px 40px 40px 40px;
  overflow: visible;
}

.hiden-logo {
  position: absolute;
  top: -20px;
  left: -5px;
  background-color: #fff;
  padding: 0 10px;
  height: 70px;
  width: auto;
}

/* テキスト本文 */
.hiden-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
  text-align: justify;
}

.tsubo-logo {
  position: absolute;
  right: -30px;
  bottom: -20px;
  background-color: #fff;
  padding: 5px 10px;

  height: 70px;
  width: auto;
  z-index: 10;
}

/*//////////担当者の声//////////*/
.comment-card {
  display: grid;

  grid-template-columns: 150px 1fr;
  grid-template-areas:
    "photo text"
    "info text";

  margin: 70px auto 50px;
  background-color: #ededed;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  column-gap: 20px;
}

.comment-card.manager {
  margin-bottom: 100px;
}

.avatar-container {
  grid-area: photo;
  justify-self: center;
}

.profile-info {
  grid-area: info;
  text-align: center;
}

.text-area {
  grid-area: text;
}

.avatar-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -60px;
  border: 4px solid #fff;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

.company,
.name {
  font-size: 14px;
  color: #333;
}

.name {
  font-weight: bold;
}

/*SPレイアウト*/
@media (max-width: 768px) {
  .comment-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "info"
      "text";
    row-gap: 20px;
    padding: 15px;
  }

  .avatar-container {
    margin-top: -55px;
    margin-bottom: 0;
  }

  .profile-info {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 0;
  }

  .text-area {
    padding: 0;
  }
}

/*//////////Before_Afterモーダル//////////*/
/* --- Before/After 比較エリア --- */
.comparison-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.comparison-item {
  position: relative;
  width: 240px;
  text-align: center;
}

.zoom-link {
  text-decoration: none;
  display: block;
  transition: transform 0.2s;
}

.zoom-link:hover {
  transform: scale(1.05);
}

.comp-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.before-border {
  border: 4px solid #c4bcaf;
}

.after-border {
  border: 4px solid #e50101;
}

.label {
  display: block;
  margin-top: -30px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  padding: 5px 0;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.before-label {
  background-color: #c4bcaf;
}

.after-label {
  background-color: #e50101;
}

/* --- クリックで拡大表示する仕組み--- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 60px;
  font-weight: 100;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s;
  pointer-events: none;
}

.close-btn:hover {
  opacity: 0.7;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border: 4px solid #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  cursor: default;
}

/*_________________________
/////successrecipe top/////
___________________________*/
/*//////////全体 //////////*/
#successrecipes section.section_wd {
  margin-bottom: 100px;
}

#successrecipes section {
  padding-left: 15px;
  padding-right: 15px;

}

.successrecipes-main {
  margin: 100px 0 200px 0;
}

@media (max-width: 768px) {
  .successrecipes-main {
    margin: 100px 0 150px 0;
  }
}

/*//////////新着レシピ//////////*/
.recipe-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.view-recipe {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #E66B6B;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.view-recipe:hover {
  border-bottom: solid 1px #E66B6B;
}

.recipe-list .tools_card {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #F9F8F3;
  margin-top: 20px;
  margin-left: 0;
  padding: 20px;
  box-shadow: none;
  box-sizing: border-box;
}
.recipe-list .tools_card .document-item{
  padding-bottom: 5px;
  font-size: 12px;
}
.recipe-list .tools_card .document-item::before {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.recipe-list .tools_card_imgbox {
  flex: 0 0 200px;
  height: auto;
  background-color: transparent;
  margin-right: 20px;
  position: static;
}

.recipe-list .tools_card_imgbox img {
  width: 100%;
  height: auto;
  position: static;
  max-height: none;
  display: block;
  transition: opacity 0.3s;
}

.recipe-list .tools_card_imgbox img:hover {
  opacity: 0.7;
}

.recipe-list .tools_card_txtbox {
  flex: 1;
  margin: 0;
  min-height: 140px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recipe-list .tools_card_txtbox .card_title {
  font-size: 18px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}

.recipe-list .tools_card_imgbox img:hover {
  opacity: 1;
}

/*SPレイアウト*/
@media screen and (max-width: 768px) {
  .recipe-list .tools_card {
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .recipe-list .tools_card_imgbox {
    width: 100%;
    flex: none;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .recipe-list .tools_card_txtbox {
    width: 100%;
    min-height: auto;
    padding-bottom: 40px;
  }

  .view-recipe {
    bottom: -10px;
  }
}

/*//////////業種からレシピを探す//////////*/
.industry-section {
  width: 100%;
  margin-bottom: 60px;
}

.industry-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  width: 100%;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.industry-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.industry-name {
  font-size: 16px;
  border-bottom: 1px solid #E66B6B;
  text-align: center;
}

.industry-item:hover .industry-icon img {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.industry-item:hover .industry-name {
  color: #ff4500;
  transition: color 0.3s;
}

/* SPレイアウト*/
@media (max-width: 768px) {
  .industry-grid {
    gap: 30px 10px;
  }

  .industry-icon {
    width: 50px;
    height: 50px;
  }

  .industry-name {
    font-size: 13px;
  }

  .section-title::after {
    width: 100%;
  }
}

/*//////////ドキュメントから探す//////////*/

.document-section {
  width: 100%;
  margin-bottom: 60px;
}

.document-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 200px;
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.document-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  width: fit-content;
  transition: opacity 0.3s;
}

.document-item:hover {
  color: #E66B6B;
}

.document-item::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #ff0000 65%, #cc0000 100%);
}

.document-item span {
  border-bottom: 1px solid #E66B6B;
}

/* ---SPレイアウト--- */
@media (max-width: 768px) {
  .section-title::after {
    width: 100%;
  }

  .document-grid {
    gap: 20px 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .document-item {
    font-size: 15px;
  }

  .document-item::before {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
}

/*//////////Speedoc導入の目的からレシピを探す//////////*/
.purpose-section {
  width: 100%;
  margin-bottom: 60px;
}

.purpose-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  width: 100%;
}

.purpose-card {
  background-color: #f9f8f4;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.purpose-card:hover {
  opacity: .7;
}

.card-upper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.purpose-card .card-icon {
  flex: 0 0 80px;
  /* アイコンの幅 */
}

.purpose-card .card-icon img {
  width: 100%;
  height: auto;
}

.purpose-card .sub-copy {
  font-size: 14px;
  margin: 0;
  color: #333;
}

.purpose-card .main-title {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0 0 0;
  color: #000;
}

.purpose-section .marker {
  background: linear-gradient(transparent 0%, #FED8CA 0%);
  padding: 0 2px;
}

.card-description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* --- SPレイアウト --- */
@media (max-width: 768px) {
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .purpose-card {
    padding: 20px;
    border-radius: 20px;
  }

  .card-icon {
    flex: 0 0 60px;
  }

  .main-title {
    font-size: 16px;
  }
}

/*//////////キーワードからレシピを探す//////////*/
.successrecipes-search .search .search_form__inner {
  border-radius: 50px;
  border: #e50101 solid 1px;
  padding: 15px;
  background-color: #FFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.successrecipes-search .search input.search_key {
  border: 1px solid #fff;
}

.successrecipes-search .search .search_form {
  display: block;
  padding: 0 2rem 2rem;
}

.successrecipes-search .search {
  margin-top: 2.5rem;
  background-color: #F9F8F3;
}

.successrecipes-search .search button.search_button {
  border-radius: 50%;
  padding: 10px;
}

.successrecipes-search .search_recomend {
  padding: 2rem 1rem 1.5rem 1rem;
}

.successrecipes-search .search_recomend a {
  margin-right: 15px;
  margin-bottom: 10px;
}

.successrecipes-search .search input.search_key {
  padding-top: 10px;
}

.successrecipes-search .search input:focus {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

@media (max-width: 768px) {
  .successrecipes-search .search .search_form {
    padding: 0 .5rem 2rem;
  }

  .successrecipes-search .search input.search_key {
    font-size: 12px;
    padding-top: 5px;
  }

  .successrecipes-search .search .search_form i.fa {
    font-size: .7em;
  }

  .successrecipes-search .search_recomend a {
    font-size: 13px;
  }
}

/*_________________________
/////successrecipe 一覧/////
___________________________*/
/*//////////全体//////////*/
.successrecipes-list {
  padding: 70px 0 200px 0;
  margin: 0 auto;
}

.successrecipes-list .quick_nav_btn {
  line-height: initial;
  width: auto;
  margin-bottom: 10px;
  max-width: none;
  border: none;
}

.successrecipes-list .quick_nav_btn a {
  border: 1px solid #d40000;
  color: #d40000;
  display: inline-block;
  border-radius: 20px;
  padding: .4rem .7rem;
  font-size: 13px;
}

.successrecipes-list .quick_nav_btn a:hover {
  background-color: #d40000;
  color: #fff;

}

/*SPレイアウト*/
@media (max-width: 768px) {
  .successrecipes-list {
    margin: 50px 0 150px 0;
  }
}

/*//////////キーワードからレシピを探す//////////*/
.successrecipes-list .search .search_form__inner {
  border-radius: 50px;
  border: #e50101 solid 1px;
  padding: 15px;
  background-color: #FFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.successrecipes-list .search input.search_key {
  border: 1px solid #fff;
}

.successrecipes-list .search .search_form {
  display: block;
  padding: 0 2rem 2rem;
}

.successrecipes-list .search {
  margin-top: 2.5rem;
  background-color: #F9F8F3;
}

.successrecipes-list .search button.search_button {
  border-radius: 50%;
  padding: 10px;
}

.successrecipes-list .search_recomend {
  padding: 2rem 1rem 1.5rem 1rem;
}

.successrecipes-list .search_recomend a {
  margin-right: 15px;
  margin-bottom: 10px;
}

.successrecipes-list .search input.search_key {
  padding-top: 10px;
}

.successrecipes-list .search input:focus {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

@media (max-width: 768px) {
  .successrecipes-list .search .search_form {
    padding: 0 .5rem 2rem;
  }

  .successrecipes-list .search input.search_key {
    font-size: 12px;
    padding-top: 5px;
  }

  .successrecipes-list .search .search_form i.fa {
    font-size: .7em;
  }

  .successrecipes-list .search_recomend a {
    font-size: 13px;
  }
}

/*//////////検索結果//////////*/
.successrecipes-list .recipe-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.successrecipes-list .view-recipe {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #E66B6B;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.successrecipes-list .view-recipe:hover {
  border-bottom: solid 1px #E66B6B;
}

.successrecipes-list .recipe-list .tools_card {
  display: flex;
  height: auto;
  background-color: #F9F8F3;
  margin-top: 20px;
  margin-left: 0;
  padding: 20px;
  box-shadow: none;
  box-sizing: border-box;

  flex-direction: column;
  align-items: flex-start;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.successrecipes-list .recipe-list .tools_card_imgbox {
  height: auto;
  background-color: transparent;
  margin-right: 20px;
  position: static;

  width: 100%;
  flex: none;
  margin-right: 0;
  margin-bottom: 15px;
}

.successrecipes-list .recipe-list .tools_card_imgbox img {
  width: 100%;
  height: auto;
  position: static;
  max-height: none;
  display: block;
  transition: opacity 0.3s;
}

.successrecipes-list .recipe-list .tools_card_imgbox img:hover {
  opacity: 0.7;
}

.successrecipes-list .recipe-list .tools_card_txtbox {
  flex: 1;
  margin: 0;

  position: relative;
  display: flex;
  flex-direction: column;

  width: 100%;
  min-height: auto;
  padding-bottom: 40px;
}

.successrecipes-list .recipe-list .tools_card_txtbox .card_title {
  font-size: 18px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}

.successrecipes-list .recipe-list .tools_card_imgbox img:hover {
  opacity: 1;
}

.successrecipes-list .view-recipe {
  bottom: -10px;
}

/*SPレイアウト*/
@media screen and (max-width: 768px) {
  .successrecipes-list .recipe-list .tools_card {
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .successrecipes-list .recipe-list .tools_card_imgbox {
    width: 100%;
    flex: none;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .successrecipes-list .recipe-list .tools_card_txtbox {
    width: 100%;
    min-height: auto;
    padding-bottom: 40px;
  }

  .successrecipes-list .view-recipe {
    bottom: -10px;
  }
}

.successrecipes-list .recipe-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.successrecipes-list .card-title {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .successrecipes-list .recipe-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .successrecipes-list .card-title {
    font-size: 14px;
  }

  .recipe-tag {
    font-size: 10px;
  }
}

@media screen and (max-width: 448px) {
  .successrecipes-list .recipe-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.successrecipes-main .card_title h3{
    margin-bottom: 0;
}
.successrecipes-main .tag-container{
    margin-bottom: 1rem;
}
.successrecipes-main .discription-container{
    width: 80%;
}
@media screen and (max-width: 768px) {
  .sp-none{
      display: none;
      }
}
/*初期のみmargin-bottom*/
.successrecipes-main .newrecipe-section,.successrecipes-main .searchrecipe-section, .successrecipes-main .industry-section, .successrecipes-main .document-section, .successrecipes-main .purpose-section{
    margin-bottom: 90px;
}