@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {
  overflow: hidden;
}

#main-contents div.body {
  padding-left:20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 4em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * 妻沼とさわた
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.menuma {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}
.menuma .body {
  position: relative;
  max-width: 1120px;
}

.menuma .text {
  font-size: 1.6rem;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.menuma .title-area {
  text-align: center;
  line-height: 1.4;
}
.menuma .title {
  position: relative;
  color: #000;
  font-size: 4.5rem;
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
}
.menuma .title::after {
  content: attr(data-text);
  display: block;
  font-size: 2.2rem;
  color: var(--c-tpink);
  text-align: center;
  font-family: "Noto Sans JP";
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .menuma .title-area {
    text-align: center;
    line-height: 1.4;
  }
  .menuma .title {
    position: relative;
    color: #000;
    font-size: 2.0rem;
    font-weight: bold;
  }
  .menuma .title::after {
    content: attr(data-text);
    display: block;
    font-size: 1.6rem;
    color: var(--c-tpink);
    text-align: center;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
}

/* ----------------------------------------------------------------------------------------------------
   * 内容（写真＋テキスト　ブロック）
/* ------------------------------------------------------------------------------------------------- */

.pattern-box .photo {
  width: 65%;
}

.pattern-box .detail {
  width: 30%;
}

.pattern-box .detail .icon {
  margin-bottom: 40px;
}

.pattern-box .detail .text {
  margin-top: 0 !important;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .pattern-box .photo {
    width: 100%;
  }
  
  .pattern-box .detail {
    width: 100%;
    margin-top: 40px;
  }
  .pattern-box .detail .icon {
    text-align: center;
    margin-bottom: 2em;
  }
  .pattern-box .detail .icon img {
    width: 75px;
  }
  
  .pattern-box .detail .text {
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リード文
/* ------------------------------------------------------------------------------------------------- */

#menuma .lead {}

#menuma .lead .subtitle {
  font-size: 2.7rem;
  color: var(--c-brown);
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
}

#menuma .lead .text {
  font-size: 1.6rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #menuma .lead .subtitle {
    font-size: 2.2rem;
    color: var(--c-brown);
    font-weight: bold;
    font-family: '秀英にじみ丸ゴシック B';
  }
}

/* ====================================================================================================
   * スライダー
==================================================================================================== */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#main #menuma {}

/* 画像を大きく*/
#main-slider .slide img {
	transform: scale(.8);
	transition: transform .3s;
}
#main-slider .slide.slick-center img {
	transform: scale(1);
}

/* ページャ*/
#main #menuma .slick-dots {
  position: absolute;
  bottom: -2.5em;
  left: 0;
  right: 0;
  text-align: center;
}

#main #menuma .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 .7em;
}
#main #menuma .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border:none;
  border-radius: 100%;
  transition: .2s;
  background: #e8d6dd;
}
#main #menuma .slick-dots li.slick-active button {
  background: var(--c-pink);
}

/* テキストボックス*/
#text-slider {
  width: 80%;
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
  background: #f7f4e3;
  border-radius: 50px;
  padding: 40px 60px;
}
#text-slider p {
  margin-top: 0;
  font-size: 1.6rem;
}
#text-slider p b {
  display: block;
  font-size: 2.0rem;
  color: var(--c-brown);
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  #main-slider .slide {
    max-width: 480px;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main #menuma {
    padding-top: 1em !important;
  }
  
  #main-slider .slide {
    max-width: 240px;
  }
  
  /* ページャ*/
  #main #menuma .slick-dots {
    position: absolute;
    bottom: -1.5em;
    left: 0;
    right: 0;
    text-align: center;
  }
  #main #menuma .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 .2em;
  }
  #main #menuma .slick-dots li button {
    width: 6px;
    height: 6px;
  }
  
  #text-slider {
    width: 90%;
    max-width: 900px;
    margin: 30px auto 0;
    text-align: left;
    background: #f7f4e3;
    border-radius: 20px;
    padding: 20px;
  }
}


/* ****************************************************************************************************
   * ブログ
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * ブログ　リード文
/* ------------------------------------------------------------------------------------------------- */

#blog .inner .text {
  background: #faf0f5;
  border-radius: 40px;
  padding: 20px;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#blog .title-area {
  text-align: left;
  line-height: 1.4;
}
#blog .title-1 {
  position: relative;
  color: #000;
  font-size: 3.3rem;
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
  padding-left: 0.8em;
}
#blog .title-1::after {
  content: attr(data-text);
  display: block;
  font-size: 1.7rem;
  color: var(--c-tpink);
  font-family: "Noto Sans JP";
}
#blog .title-1::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--c-pink);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 16px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #blog .title-area {
    line-height: 1.4;
  }
  #blog .title-1 {
    position: relative;
    color: #000;
    font-size: 2.0rem;
    font-weight: bold;
    padding-left: 0.7em;
  }
  #blog .title-1::after {
    content: attr(data-text);
    display: block;
    font-size: 1.5rem;
    color: var(--c-tpink);
  }
  #blog .title-1::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--c-pink);
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 8px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 続きを読む
/* ------------------------------------------------------------------------------------------------- */

#blog .inner .detail-btn {
  text-align: center;
  width: 100%;
  max-width: 300px;
  padding: 10px;
  color: #ffffff;
  background-color: var(--c-pink);
  border-radius: 30px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all .3s;
  z-index: 1;
  cursor: pointer;
  font-size: 1.6rem;
}
#blog .inner .detail-btn::before {
  content:' 開く';
}
#blog .inner .inner-content {
  height: 400px;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
#blog .inner .inner-content p {
  font-size: 1.6rem;
}
#blog .inner .inner-content::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  /* 以下グラデーションは「背景が白」に併せて設定しています */	
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}

/*クリック後のcss*/
#blog .inner .detail-btn.open {
  bottom: -60px;
  background-color: #ccc;
}
#blog .inner .detail-btn.open::before {
  content:' 閉じる';
}
#blog .inner .inner-content.open {
  height: auto;
}
#blog .inner .inner-content.open::before {
  content: none;
}


/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

#blog .inner .inner-content img {
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

#blog .inner .inner-content .link-btn {
  margin-bottom: 40px;
}
#blog .inner .inner-content .btn {}


/* ====================================================================================================
   * セクション（聖天山歓喜院（妻沼聖天山））
==================================================================================================== */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#menumasyoudenzan {
  padding-bottom: 200px;
}
#menumasyoudenzan section ~ section {
  padding-top: 100px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #menumasyoudenzan {
    padding-bottom: 7em !important;
  }
  #menumasyoudenzan section ~ section {
    padding-top: 50px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容（セクション1）
/* ------------------------------------------------------------------------------------------------- */

#menumasyoudenzan .section-1 {
  position: relative;
  margin-top: 80px;
  height: 600px;
}
#menumasyoudenzan .section-1 picture {
  position: absolute;
  top: 0;
  left: 0;
  width: calc( 100% - 550px );
}

#menumasyoudenzan .section-1 .inner {
  width: 100%;
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  overflow: hidden;
}

#menumasyoudenzan .section-1 .inner .detail {
  position: relative;
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  padding: 40px 0;
  max-width: 350px;
}

#menumasyoudenzan .section-1 .inner .detail .subtitle {
  font-size: 2.4rem;
  color: var(--c-brown);
  text-align: center;
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
  line-height: 1.0;
}
#menumasyoudenzan .section-1 .inner .detail .subtitle span {
  display: block;
  margin: 0 auto 30px;
}

#menumasyoudenzan .section-1 .inner .detail .text {
  margin: 50px auto 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  #menumasyoudenzan .section-1 {
    position: relative;
    margin-top: 80px;
    height: auto;
  }
  #menumasyoudenzan .section-1 picture {
    position: absolute;
    top: 0;
    left: 0;
    width: calc( 100% - 420px );
  }
}
/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

  #menumasyoudenzan .section-1 {
    position: relative;
    margin-top: 40px;
    height: auto;
  }
  #menumasyoudenzan .section-1 picture {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    padding: 0 5%;
  }
  #menumasyoudenzan .section-1 picture img {
    border-radius: 30px;
  }
  #menumasyoudenzan .section-1 .inner .detail {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0 0;
    max-width: 100%;
  }
  #menumasyoudenzan .section-1 .inner .detail .subtitle {
    font-size: 1.8rem;
    color: var(--c-brown);
    text-align: center;
    font-weight: bold;
    font-family: '秀英にじみ丸ゴシック B';
    line-height: 1.0;
  }
  #menumasyoudenzan .section-1 .inner .detail .subtitle span {
    display: block;
    margin: 0 auto 1em;
  }
  #menumasyoudenzan .section-1 .inner .detail .subtitle span img {
    width: 79px;
  }
  #menumasyoudenzan .section-1 .inner .detail .text {
    margin: 20px auto 0;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 内容（セクション2）
/* ------------------------------------------------------------------------------------------------- */

#menumasyoudenzan .section-2 {}
#menumasyoudenzan .section-2 .body {
  max-width: 1120px;
}

#menumasyoudenzan .section-2 .contents {}
#menumasyoudenzan .section-2 .contents.row {
  flex-direction: row-reverse;
}
#menumasyoudenzan .section-2 .contents picture {
  text-align: center;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 波線svg
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#menumasyoudenzan figure.wave-area svg .fill {
  fill: beige;
}




/* ====================================================================================================
   * セクション（熊谷・妻沼の特産品）
==================================================================================================== */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#specialty {
  position: relative;
  background: url("../../_images/_common/back-bg.jpg") no-repeat;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 200px;
}

#specialty section ~ section {
  padding-top: 100px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #specialty {
    position: relative;
    background: url("../../_images/_common/back-bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 0 !important;
    padding-bottom: 7em !important;
  }
  #specialty section ~ section {
    padding-top: 50px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#specialty .title-area {
  text-align: left;
  line-height: 1.4;
}
#specialty .title-1 {
  position: relative;
  color: #000;
  font-size: 3.3rem;
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
  padding-left: 0.8em;
}
#specialty .title-1::after {
  content: attr(data-text);
  display: block;
  font-size: 1.7rem;
  color: var(--c-tpink);
  font-family: "Noto Sans JP";
}
#specialty .title-1::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--c-pink);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 16px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #specialty .title-area {
    line-height: 1.4;
  }
  #specialty .title-1 {
    position: relative;
    color: #000;
    font-size: 2.0rem;
    font-weight: bold;
    padding-left: 0.7em;
  }
  #specialty .title-1::after {
    content: attr(data-text);
    display: block;
    font-size: 1.5rem;
    color: var(--c-tpink);
  }
  #specialty .title-1::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--c-pink);
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 8px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容（セクション1）
/* ------------------------------------------------------------------------------------------------- */

#specialty .section-1 {
  position: relative;
  margin-top: 80px;
  height: 600px;
}
#specialty .section-1 picture {
  position: absolute;
  top: 0;
  right: 0;
  width: calc( 100% - 550px ); 
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

#specialty .section-1 .inner {
  width: 100%;
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  overflow: hidden;
}

#specialty .section-1 .inner .detail {
  position: relative;
  width: 50%;
  margin-right: auto;
  margin-left: 0;
  padding: 40px 0;
  max-width: 350px;
}

#specialty .section-1 .inner .detail .subtitle {
  font-size: 2.4rem;
  color: var(--c-brown);
  text-align: center;
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
  line-height: 1.0;
}
#specialty .section-1 .inner .detail .subtitle span {
  display: block;
  margin: 0 auto 30px;
}

#specialty .section-1 .inner .detail .text {
  margin: 50px auto 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  #specialty .section-1 {
    position: relative;
    margin-top: 80px;
    height: auto;
  }
  #specialty .section-1 picture {
    position: absolute;
    top: 0;
    right: 0;
    width: calc( 100% - 420px ); 
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }
}
/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  #specialty .section-1 {
    position: relative;
    margin-top: 40px;
    height: auto;
  }
  #specialty .section-1 picture {
    position: relative;
    top: 0;
    right: 0;
    width: 100%; 
    margin-right: 0;
    margin-left: auto;
    text-align: right;
    display: block;
    padding: 0 5%;
  }
  #specialty .section-1 picture img {
    border-radius: 30px;
  }
  #specialty .section-1 .inner .detail {
    position: relative;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 0 0;
    max-width: 100%;
  }
  #specialty .section-1 .inner .detail .subtitle {
    font-size: 1.8rem;
    color: var(--c-brown);
    text-align: center;
    font-weight: bold;
    font-family: '秀英にじみ丸ゴシック B';
    line-height: 1.0;
  }
  #specialty .section-1 .inner .detail .subtitle span {
    display: block;
    margin: 0 auto 1em;
  }
  #specialty .section-1 .inner .detail .subtitle span img {
    width: 87px;
  }
  #specialty .section-1 .inner .detail .text {
    margin: 20px auto 0;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 内容（セクション2）
/* ------------------------------------------------------------------------------------------------- */

#specialty .section-2 {}
#specialty .section-2 .body {
  max-width: 1120px;
}

#specialty .section-2 .contents {}
#specialty .section-2 .contents.row {
  flex-direction: row-reverse;
}



/* ----------------------------------------------------------------------------------------------------
   * 内容（セクション2）
/* ------------------------------------------------------------------------------------------------- */

#specialty .section-2 {}
#specialty .section-2 .body {
  max-width: 1120px;
}

#specialty .section-2 .contents {
  align-items: center;
}
#specialty .section-2 .contents.row {
  flex-direction: row-reverse;
}

#specialty .section-2 .contents ~ .contents {
  padding-top: 60px;
}
#specialty .section-2 .contents picture {
  width: 42%;
  display: block;
  text-align: center;
}

#specialty .section-2 .contents .detail {
  width: 54%;
  margin-left: 4%;
}
#specialty .section-2 .contents.row .detail {
  width: 54%;
  margin-left: auto;
  margin-right: 4%;
}
#specialty .section-2 .contents .title-2 {
  font-size: 2.4rem;
  text-align: left;
  color: var(--c-brown);
  font-family: '秀英にじみ丸ゴシック B';
  border-bottom: 2px dotted var(--c-pink);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #specialty .section-2 .contents ~ .contents {
    padding-top: 40px;
  }
  #specialty .section-2 .contents picture {
    width: 100%;
  }
  
  #specialty .section-2 .contents .detail {
    width: 100%;
    margin-top: 1em;
    margin-left: 0;
  }
  #specialty .section-2 .contents.row .detail {
    width: 100%;
    margin-top: 1em;
    margin-left: auto;
    margin-right: 0;
  }
  #specialty .section-2 .contents .title-2 {
    font-size: 1.8rem;
    text-align: left;
    color: var(--c-brown);
    font-family: '秀英にじみ丸ゴシック B';
    border-bottom: 2px dotted var(--c-pink);
    line-height: 1.4;
  }
}


/* ====================================================================================================
   * セクション（その他妻沼の名所）
==================================================================================================== */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#famous {}

#famous .text {
  margin-top: 50px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #famous {
    padding-top: 2em !important;
  }
  #famous .text {
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#famous .title-area {
  text-align: left;
  line-height: 1.4;
}
#famous .title-1 {
  position: relative;
  color: #000;
  font-size: 3.3rem;
  font-weight: bold;
  font-family: '秀英にじみ丸ゴシック B';
  padding-left: 0.8em;
}
#famous .title-1::after {
  content: attr(data-text);
  display: block;
  font-size: 1.7rem;
  color: var(--c-tpink);
  font-family: "Noto Sans JP";
}
#famous .title-1::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--c-pink);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 16px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #famous .title-area {
    line-height: 1.4;
  }
  #famous .title-1 {
    position: relative;
    color: #000;
    font-size: 2.0rem;
    font-weight: bold;
    padding-left: 0.7em;
  }
  #famous .title-1::after {
    content: attr(data-text);
    display: block;
    font-size: 1.5rem;
    color: var(--c-tpink);
  }
  #famous .title-1::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--c-pink);
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 8px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

#famous .layout-flex-3 {
  justify-content: flex-start;
}

#famous .layout-flex-3 li {
 text-align: center;
 padding: 0;
 width: 31.66%;
 margin-left: 2.5%;
}
#famous .layout-flex-3 li:first-child,
#famous .layout-flex-3 li:nth-child(3n+1) {
  margin-left: 0;
}
#famous .layout-flex-3 li:nth-child(n+4) {
  margin-top: 60px;
}

#famous .layout-flex-3 .title-2 {
  font-size: 2.4rem;
  text-align: center;
  color: var(--c-brown);
  font-family: '秀英にじみ丸ゴシック B';
  border-bottom: 2px dotted var(--c-pink);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #famous .layout-flex-3 .caption {
    margin-top: 0;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
  }
  #famous .layout-flex-3 {
    justify-content: space-between;
  }
  #famous .layout-flex-3 li {
   text-align: center;
   padding: 0;
   width: 48%;
   margin-left: 0;
  }
  #famous .layout-flex-3 li:nth-child(n+3) {
    margin-top: 20px;
  }
  #famous .layout-flex-3 li:nth-child(n+4) {
    margin-top: 20px;
  }
  #famous .layout-flex-3 .title-2 {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    color: var(--c-brown);
    font-family: '秀英にじみ丸ゴシック B';
    border-bottom: 2px dotted var(--c-pink);
  }
}

