/* すべての要素の余白とパディングをリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.8;
}

/* 元のテンプレート設定を消す */
.p-page_content__inner a {
  cursor: pointer;
  text-decoration: none !important;
}

.p-page_content__inner {
  padding: 0 !important;
  width: 100% !important;
}
.l-container {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
}
.u-margin__bottom--100 {
  margin-bottom: 0 !important;
}
.p-page_content__inner p {
  line-height: 1.8 !important;
}

/* メイン幅 最後に消す */
.kategaho_main {
  width: 900px;
  margin: 0 auto;
}

body {
  background: #ddd;
}

/* 共通 */
.kategaho_main {
  background-image: url(../img/kategaho_topbar.png),
    /* 上に重ねる画像 */ url(../img/kategaho_background.png); /* 下の背景画像 */
  background-repeat: no-repeat, no-repeat; /* 繰り返し設定を両方指定 */
  background-size: 100% 40px, 900px auto; /* それぞれのサイズ設定 */
  background-position: top left, top center; /* 配置位置を指定 */
  background-attachment: scroll, fixed; /* 固定設定（必要なら） */
  background-blend-mode: multiply; /* 乗算モードでブレンド */
  padding: 40px;
  padding-bottom: 100px;
}

.br_sp {
  display: none;
}

.red {
  color: #b23316;
}

.comment {
  font-size: 12px;
  line-height: 1.2;
}

.bg_cream {
  background-color: #ffefc7;
}

@media screen and (max-width: 768px) {
  .kategaho_main {
    width: 100%;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .br_sp {
    display: block;
  }
}

/* トップ */

.kategaho_top {
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kategaho_h1,
.kategaho_h1_sub,
.kategaho_top_txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: #000;
  text-align: center;
  line-height: 1.5;
}

.kategaho_h1 {
  font-size: 25px;
  margin: 0!important;
}

.kategaho_h1_big {
  font-size: 36px;
}

.kategaho_h1_sub {
  display: inline-block;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  position: relative;
}

.kategaho_h1_sub::before,
.kategaho_h1_sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #000;
}

.kategaho_h1_sub::before {
  left: -30px;
}

.kategaho_h1_sub::after {
  right: -30px;
}

.kategaho_top img {
  width: 320px;
  max-width: 90%;
  height: auto;
  margin: 50px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* 横方向、縦方向、ぼかし、影の色 */
}

.kategaho_top_txt {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  margin-top: 130px!important;
}

.kategaho_top_txt::after {
  content: "";
  position: absolute;
  display: block;
  width: 900px;
  height: 150px;
  background-image: url(../img/kumihimo_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 250%;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    .kategaho_h1 {
    font-size: 20px;
  }
  .kategaho_h1_big {
    font-size: 26px;
  }
  .kategaho_h1_sub {
    font-size: 16px;
  }

  .kategaho_top_txt::after {
    width: 100dvw;
    height: 150px;
    background-size: cover;
  }
}

/* 誌面紹介 */

.kategaho_magazine {
  margin-bottom: 100px;
}

.kategaho_magazine h2,
.kategaho_magazine_index_title,
.kategaho_prezent h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  line-height: 1.2;
}

.kategaho_magazine h2 {
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 30px;
}

.kategaho_magazine_sample {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}

.kategaho_magazine_sample img {
  width: auto;
  height: 250px;
  border: 1px solid #ccc;
}

.kategaho_magazine_index {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* 横方向、縦方向、ぼかし、影の色 */
  padding-bottom: 5px;
}

.kategaho_magazine_index table {
  border-collapse: collapse; /* セル間の隙間を無くす */
  width: 100%;
  table-layout: auto;
}

.kategaho_magazine_index_title {
  font-size: 20px;
  font-weight: 600;
  padding: 30px 0 20px;
  position: relative;
}

.kategaho_magazine_index_title::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 1px;
  border-bottom: 1px solid #000;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.kategaho_magazine_index table,
.kategaho_magazine_index_page {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.kategaho_magazine_index_page {
  width: 210px;
  vertical-align: top;
  padding-left: 120px;
}

.kategaho_magazine_index_page,
.kategaho_magazine_index td {
  line-height: 1.5;
  padding-top: 8px;
  padding-bottom: 8px;
}

.kategaho_magazine_index .comment {
  margin: 20px auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .kategaho_magazine {
    width: 90%;
  }

  .kategaho_magazine_sample img {
    width: auto;
    height: 210px;
  }

  .kategaho_magazine_index table,
  .kategaho_magazine_index_page {
    font-size: 14px;
  }

  .kategaho_magazine_index_page {
    width: 90px;
    vertical-align: top;
    padding-left: 15px;
  }

  .kategaho_magazine_index table td {
    padding-right: 15px;
  }
}

/* プレゼント */

.kategaho_prezent_box {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* 横方向、縦方向、ぼかし、影の色 */
  padding-bottom: 5px;
  padding: 8px;
}

.kategaho_prezent_box_inner {
  border: 3px solid #b23316;
  border-radius: 15px;
  display: block;
  text-align: center;
  padding-top: 30px;
}

.kategaho_prezent h3 {
  font-size: 26px;
  color: #b23316;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 20px;
}

.kategaho_prezent h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(../img/h3_line.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 35px;
  height: 11px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.kategaho_prezent_box_inner p {
  font-size: 14px;
}

.kategaho_prezent_box_inner_date {
  display: block;
  width: 95%;
  margin: 20px auto 30px;
  background-color: #b23316;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
}

.kategaho_prezent_box_inner_date b {
  font-size: 18px;
}

.kategaho_prezent_box_inner_form {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, rgba(251,223,151,1) 0%, rgba(205,151,17,1) 100%);  color: #000;
  text-decoration: none;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px 0 15px;
  text-align: center;
  border-top: 3px solid #b23316;
  position: relative;
  cursor : pointer;
  transition:  0.3s ease;
}

.kategaho_prezent_box_inner_form::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(../img/prezent_icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 26px;
  height: 26px;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}


.kategaho_prezent_box_inner_form:hover {
  background: linear-gradient(180deg, rgba(251,223,151,0.5) 0%, rgba(205,151,17,0.5) 100%);
}

.kategaho_prezent_box_inner_form div {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.kategaho_prezent_box_inner_form div img {
  padding-left: 20px;
} 

@media screen and (max-width: 768px) {
  .kategaho_prezent {
    width: 90%;
  }

  .kategaho_prezent h3 {
    font-size: 22px;
  }
}