@charset "UTF-8";

/* ==================================

ここから下層ページ

====================================*/
body {
  background-color: #f1f1f1;
}

/* middle_mv */
.mv {
  position: relative;
  height: 400px;
  background-image: url(../images/mv_01.png);
  background-size: cover;
  /* 画像を画面サイズに合わせる */
  background-position: center;
  /* 画像を中央に配置 */
  background-repeat: no-repeat;
  /* 画像を繰り返さない */
  width: 100vw;
  /* ビューポート幅に合わせる */
  margin: 0;
  /* マージンをリセット */
  padding: 0;
  /* パディングをリセット */
}

h1 {
  width: 768px;
  font-size: 8rem;
  font-weight: bold;
  position: absolute;
  bottom: 60px;
  left: 50%;
  text-align: center;
  align-items: center;
  transform: translateX(-50%);
}
.food h1 {
  width: auto;
}
/* about */
.about {
  text-align: center;
}
.logo_img{
  display: block;
  z-index: 9999;
}
.category_about {
  margin: 0 auto;
  max-width: 1240px;
  background-color: #FFD472;
  padding-top: 130px;
  padding-bottom: 40px;
}

.about img {
  width: 40px;
  margin-bottom: 100px;
}

/* 下層記事の共通部分 */
.container {
  margin: 0 auto;
  max-width: 1240px;
  background-color: #FFD472;
  padding: 80px 120px;
}

.column_wrap {
  background-color: white;
  border-radius: 40px;
  padding: 50px;
}

/* 記事上部 */
.column_logo {
  width: 120px;
}

.column_top {
  position: relative;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;

}

.column_main {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 5%;
}

.column_ttl {
  margin: auto 0;
}

.column_ttl h3 {
  text-indent: 1rem;
  font-weight: normal;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
}

.column_ttl h3 span {
  font-weight: bold;
  padding-top: 3rem;
  font-size: 2.25rem;
}

.main_img {
  margin: 0 auto;
  width: 100%;
}

.column_middle {
  margin: 50px 0;
  position: relative;
}

.column_description {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10%;
}

.column_description p {
  width: 480px;
  font-size: 1rem;
  line-height: 1.875;

}

h4 {
  color: #df5f4d;
  margin-bottom: 30px;
}

.column_last {
  margin: 0 auto;
}

.ramen .container {
  padding-bottom: 335px;
}

footer {
  background-image: url(../images/Group\ 17.png);
  height: 192px;
  width: 100%;
  text-align: center;
  align-items: center;
  display: flex;
  z-index: 100;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* food */
.ramen .column_description {
  gap: 5%;
}
.cloth .column_description {
  gap: 5%;
}

.food .button {
  border: 4px solid #FFD472;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5)
}

.food .button span::before {
  border-top: 3px solid #F5BE41;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 3px solid #F5BE41;
  /* くの字を山なりに見た時、右側の太さと色 */
}

.food .button span::after {
  background: #F5BE41;
}

/* discovery */
.discovery .category_about {
  background-color: #81DAE5;
}

.discovery .container {
  background-color: #81DAE5;
}

.discovery .mv {
  background-image: url(../images/top_2_main.png);
}

.discovery .button {
  border: 4px solid #81DAE5;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5)
}

.discovery .button span::before {
  border-top: 3px solid #81DAE5;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 3px solid #81DAE5;
  /* くの字を山なりに見た時、右側の太さと色 */
}

.discovery .button span::after {
  background: #81DAE5;
}

/* daily */
.daily .category_about {
  background-color: #7CD990;
}

.daily .container {
  background-color: #7CD990;
}
.daily .mv {
  background-image: url(../images/top_3_main.png);
}

.daily .button {
  border: 4px solid #7CD990;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5)
}

.daily .button span::before {
  border-top: 3px solid #7CD990;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 3px solid #7CD990;
  /* くの字を山なりに見た時、右側の太さと色 */
}

.daily .button span::after {
  background: #7CD990;
}
/* ===========================

レスポンシブ

==============================*/

@media screen and (max-width: 1400px) {
  h1{
      font-size: 6.0rem;
  }

}
@media screen and (max-width: 1201px) {

  .column_description {
    display: block;
  }
  .column_pc h4 {
    display: none;
  }
  .main_img{
    text-align: center;
  }
  .column_middle{
    text-align: center;
  }
  .column_description p{
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 961px) {
  .column_main {
    display: block;
  }
.column_ttl h3 {
  text-indent: 1rem;
  font-weight: normal;
  font-size: 1.5rem;
  text-align: center;
  writing-mode: horizontal-tb;
  margin-bottom: 30px;
}
.column_description p{
    width: auto;  
  }
.logo_pc{
  display: none;
}
h1{
  width: auto;
  line-height: 120px;
  text-align: center;
}
.column_wrap {
    padding: 50px;
  }
  .container {
    padding: 60px;
  }

}
@media screen and (min-width: 1201px) {
  .column_tab h4 {
    /* 1200px以上なら非表示　以下なら表示 */
    display: none;
  }
  .hide{
    display: none;
  }
}
@media screen and (max-width:780px) {
h1{
  font-size: 90px;
}
.column_wrap {
    padding: 20px;
  }
  .container {
    padding: 15px;
  }

}
@media screen and (min-width:780px) {
.appear{
    display: none;
  }
}
@media screen and (min-width:500px) {
.hide{
    display: none;
  }
}
@media screen and (max-width:500px) {

  /* 500px以下に適用されるCSS（スマホ用） */

  h1{
    font-size: 65px;
    line-height: 70px;
  }
  h4{
    font-size: 23px;
  }
  .column_wrap {
    padding: 20px;
  }
  .container {
    padding: 15px;
  }

  .column_description p {
    text-align: left;
  }
}