@charset "utf-8";
/*
Theme Name: HOLOS child
Theme URI:https://tcd-theme.com/tcd108/
Description:WordPressテーマ「HOLOS」の子テーマ
Template:holos_tcd108
Author:TCD
Author URI:https://tcd-theme.com/
Version:1.0
*/

/*
  ここから下にCSSを追記してください。
*/
/* =====================================================
   PC：本文・個別ページの表示幅を中央で統一
   トップページとserviceアーカイブは対象外
===================================================== */
@media screen and (min-width: 768px) {

  /* 固定ページ：トップページを除外 */
  body.page:not(.home) #main_col .post_content,

  /* 通常投稿の個別ページ */
  body.single-post #main_col .post_content,

  /* 施術内容の個別ページ */
  body.single-service #single_service .post_content,

  /* お知らせの個別ページ */
  body.single-news #main_col .post_content {
    width: 100%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }


  /* -----------------------------------------
     お客様の声アーカイブ：見出し・説明文
  ----------------------------------------- */
  body.post-type-archive-voice .archive_catch,
  body.post-type-archive-voice .archive_desc {
    width: calc(100% - 40px);
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }


  /* -----------------------------------------
     お客様の声アーカイブ：一覧全体
  ----------------------------------------- */
  body.post-type-archive-voice #archive_voice {
    width: calc(100% - 40px);
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }

}