@charset "UTF-8";

/* ================================================================

  common parts

==================================================================*/
html {
  font-size               : 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust   : 100%;
  -ms-text-size-adjust    : 100%;
  text-size-adjust        : 100%;
}

body {
  /*font-family: 'M PLUS Rounded 1c','Noto Sans JP', sans-serif;*/
  /*font-family: 'Yu Gothic', '游ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'Meiryo', 'メイリオ', sans-serif;*/
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  color      : #2F2F2F;
  background : #fff;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
}

img {
  width    : 100%;
  max-width: 100%;
  display  : block;
}

.wrap {
  overflow: hidden;
}

/* .sec_contents {
  padding: 0 5%;
} */

.container {
  max-width: 1064px;
  margin   : 0 auto;
  padding  : 0 30px;
}

/* -- txt
-------------------------------------- */
.txt {
  font-size  : 1.6rem;
  line-height: 2;
}

.f_mp {
  /*font-family: 'M PLUS Rounded 1c','Noto Sans JP', sans-serif;*/
  font-family: 'Yu Gothic', '游ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'Meiryo', 'メイリオ', sans-serif;

}

/* -- btn
-------------------------------------- */
.btn {
  font-size      : 1.8rem;
  color          : #fff;
  font-weight    : 500;
  width          : 70%;
  max-width      : 295px;
  height         : 60px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  border-radius  : 40px;
  transition     : .2s
}

.btn.btn_org {
  background: #FFBF1F;
}

.btn.btn_rd {
  background: #FF006F;
}

.btn:hover {
  filter    : brightness(85%) contrast(120%);
  transition: .2s
}


@media screen and (max-width: 600px) {
  .btn {
    height: 55px;
  }
}


@media screen and (max-width: 360px) {
  html {
    font-size               : 53.5%;
  }
}

/* ================================================================

  header

==================================================================*/
.header {
    height    : 50px;
    background   : rgba(255, 255, 255, 0.9);
    padding   : 0 40px;
    position  : fixed;
    top       : 0;
    left      : 0;
    right     : 0;
    z-index   : 1000;
    border-bottom: 1px solid #ccc; /* ボーダーの設定 */
  }

  .h_container {
    height     : 100%;
    display    : flex;
    align-items: center;
  }
  .h_logo {
    /*width: 60px;*/
    display: flex;
    gap:10px;
    width: 73%;
  }
  .h_logo a img{
    width: 120px;
  }
  
  .h_btn_list {
    width          : calc(100% - 60px);
    display        : flex;
    justify-content: flex-end;
    align-items    : center;
    gap            : 40px;
  }
  .h_btn {
    width : 50px;
    height: 30px;
  }

.h_login_btn {
  background     : url(../img/h-login-btn.svg) no-repeat;
  background-size: 100%;
}

.h_signup_btn {
  background     : url(../img/h-signup-btn.svg) no-repeat;
  background-size: 100%;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .header {
        height : 50px;
        padding: 0 16px 0 12px;
      }
    
      .h_logo a img{
        width: 120px;
      }
    
      .h_btn_list {
        width: calc(100% - 41px);
        gap  : 0;
      }
    
      .h_btn_list li:nth-child(2) {
        margin: 0 15px 0 15px;
      }
    
      .h_btn {
        width : 50px;
        height: 30px;
      }
}


/* -------------------------------------
  nav_btn
--------------------------------------- */
.nav_btn {
    width          : 25px;
    height         : 32px;
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    cursor         : pointer;
    position       : relative;
    z-index        : 200;
  }
  .nav_btn span {
    width        : 100%;
    height       : 5px;
    background   : #ffbf1f;
    display      : inline-block;
    transition   : 0.3s;
    border-radius: 20px;
  }
  .nav_btn span:nth-child(2) {
    margin: 4px 0;
  }
  .nav_btn.active span:nth-child(1) {
    transform    : translateY(11.5px) rotate(-45deg);
    transition   : 0.3s;
    background   : #000;
    height       : 8px;
    border-radius: unset;
  }
  .nav_btn.active span:nth-child(2) {
    transform       : scaleX(0);
    transform-origin: right top;
    transition      : transform .3s;
  }
  
  .nav_btn.active span:nth-child(3) {
    transform    : translateY(-10px) rotate(45deg);
    transition   : 0.3s;
    background   : #000;
    height       : 8px;
    border-radius: unset;
  }
  
  /* -- responsive -------------------------------------- */
  @media screen and (max-width: 600px) {
    .nav_btn {
      width : 25px;
      height: 32px;
    }
    .nav_btn span:nth-child(2) {
      margin: 4px 0;
    }
    .nav_btn.active span:nth-child(1) {
      height   : 8px;
      transform: translateY(11.5px) rotate(-45deg);
    }
    .nav_btn.active span:nth-child(3) {
      height: 8px;
    }
  }


/* -------------------------------------
  h_nav
--------------------------------------- */
.h_nav {
  width     : 25%;
  height    : 90vh;
  position  : fixed;
  top       : 0;
  right     : -25%;
  transition: all .5s;
  visibility: hidden;
  z-index   : 100;
  background: #FFBF1F;
}

.h_nav.active {
  position  : fixed;
  top       : 0;
  right     : -1%;
  visibility: visible;
  height    : 90vh;
  z-index   : 100;
  overflow-y: scroll;
  transition: all .5s;
  background: #FFBF1F;
}

.h_nav_list {
  width          : 100%;
  height         : 100%;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  padding        : 0 20px;
}

.h_nav_list li {
  width      : 100%;
  line-height: 1.4;
}


.h_nav_list li a {
  font-size  : 2.0rem;
  font-weight: 800;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .h_nav {
    right: -40%;
  }

  .h_nav.active {
    width: 40%;
  }
  .h_nav_list li a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .h_nav {
    right: -85%;
  }

  .h_nav.active {
    width: 85%;
  }

  .h_nav_list li a {
    font-size: 2.0rem;
  }
}



/* ================================================================

  fv

==================================================================*/
.fv_container {
  display        : flex;
  justify-content: space-between;
  padding        : 60px 0 0 40px;
}

/* -------------------------------------
  -- fv_left
--------------------------------------- */
.fv_left {
  width : 20%;
  margin: -20px 30px 0 0;
}

.fv_left_ttl {
  width        : 70%;
  max-width    : 230px;
  margin-bottom: 30px;
}

.fv_left_lead {
  font-size  : clamp(1.4rem, 1.4vw, 2.4rem);
  font-weight: 500;
  line-height: 2;
}


/* -------------------------------------
  search
--------------------------------------- */
.fv_search {
  width        : 100%;
  max-width    : 330px;
  height       : 45px;
  border-radius: 6px;
  box-shadow   : 1px 3px 10px lightgrey;
  margin       : 8% 0 15%;
}

.fv_search_btn_wrap {
  width          : 100%;
  height         : 100%;
  position       : relative;
  display        : flex;
  justify-content: space-between;
}

.fv_search_btn_wrap:before {
  content                  : "";
  display                  : inline-block;
  width                    : 15px;
  height                   : 100%;
  background               : orange;
  position                 : absolute;
  left                     : 0;
  border-top-left-radius   : 6px;
  border-bottom-left-radius: 6px;
}

.search_btn_txtarea {
  width     : 100%;
  padding   : 0 10px 0 25px;
  position  : relative;
  font-size : clamp(1.2rem, 0.9vw, 1.6rem);
  text-align: left;
}

.search_btn {
  width                     : 50px;
  height                    : 45px;
  background                : orange;
  position                  : relative;
  border-top-right-radius   : 6px;
  border-bottom-right-radius: 6px;
}

.search_btn::before {
  content        : "";
  width          : 100%;
  height         : 100%;
  display        : inline-block;
  background     : url(../img/fv-icon-serch.svg) no-repeat center center;
  background-size: 53%;
}

/* -------------------- 
  広告 
------------------------*/
.fv_left_ad {
  width    : 95%;
  max-width: 300px;
}


/* -------------------------------------
  -- fv_center
--------------------------------------- */
.fv_center {
  width        : 62%;
  background   : #F8F8EA;
  padding      : 50px 30px 120px;
  border-radius: 20px;
  position     : relative;
}

.fv_center_ttl {
  font-size      : clamp(1.6rem, 1.8vw, 2.2rem);
  font-weight    : 500;
  display        : inline-block;
  background-size: contain;
  position       : relative;
  margin         : 0 0 35px 5%;
  position       : relative;
}

.fv_center_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 32px;
  background     : url(../img/fv-icon-pickup.svg) no-repeat;
  background-size: cover;
  position       : absolute;
  top            : -5%;
  left           : -40px;
}

.fv_center_ttl::after {
  content   : "";
  display   : block;
  width     : 130%;
  height    : 1px;
  background: #1F1F1F;
  margin-top: 15px;
  position  : relative;
  left      : -40px;
}

/* -- btn */
.fv_btn_org {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  width    : 40%;
  position : absolute;
  top      : 28px;
  right    : 50px;
}

/* -------------------------------------
  fv_slider
--------------------------------------- */
.swiper-slide {
  border-radius: 5px !important;
  padding      : 2px;
}

.swiper-slide img {
  border-top-left-radius : 5px !important;
  border-top-right-radius: 5px !important;
}

.slide_txtarea {
  display                   : flex;
  gap                       : 15px;
  background                : #fff;
  padding                   : 15px 15px 20px;
  box-shadow                : 0px 2px 5px 0px rgb(0 0 0 / 15%);
  border-bottom-left-radius : 5px;
  border-bottom-right-radius: 5px;

}

.date_area {
  font-size      : 1.2rem;
  color          : #fff;
  background     : #FFBF1F;
  width          : 40px;
  min-width      : 40px;
  height         : 40px;
  min-height     : 40px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  border-radius  : 5px;
}

.slide_txt {
  font-size  : 1.2rem;
  line-height: 1.3;
  width      : calc(100% - 40px);
  height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}




/* -------------------------------------
  -- fv_right
--------------------------------------- */
.fv_right {
  width      : 10%;
  margin-left: 30px;
}

.site_nav {
  width: 100%;
}

.site_nav_list {
  display       : flex;
  flex-direction: column;
  align-items   : flex-end;
  gap           : 20px;
}

.site_nav_list li {
  width    : 100%;
  min-width: 120px;
}

.fv_right_ad_sp {
  display: none;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .fv {
    position: relative;
  }

  .fv_container {
    flex-direction: column;
    padding       : 60px 0 0;
  }

  /* -- fv_left 
  -----------------------------*/
  .fv_left {
    width : calc(100% - 40px);
    margin: 0 auto 80px;
  }

  .fv_left_ttl_wrap {
    width          : 100%;
    display        : flex;
    justify-content: center;
    align-items    : center;
  }

  .fv_left_ttl {
    width    : 40%;
    min-width: 130px;
    margin   : 0 4% 0 0;
  }

  .fv_left_lead {
    font-size  : clamp(1.4rem, 3.5vw, 2.0rem);
    line-height: 1.65;
  }

  .fv_search {
    width    : 100%;
    max-width: 530px;
    min-width: 310px;
    margin   : 40px auto 45px;
  }

  .fv_left_ad {
    display: none;
  }

  /* -- fv_center 
  -----------------------------*/
  .fv_center {
    border-radius: 0;
    width        : 100%;
    padding      : 50px 30px 240px;
    border-radius: 0;
    margin       : 0 auto;
  }

  .fv_center_ttl {
    width     : 300px;
    text-align: center;
    font-size : 2.2rem;
    margin    : 0 auto;
    position  : absolute;
    top       : -80px;
    left      : 50%;
    transform : translate(-50%, 0);
  }

  .fv_center_ttl::before {
    width : 40px;
    height: 32px;
    top   : 5%;
    left  : 3px;
  }

  .fv_center_ttl::after {
    width     : 80%;
    margin-top: 12px;
    left      : 30px;
  }


  .fv_btn_org {
    font-size: 1.8rem;
    width    : 60%;
    max-width: 295px;
    min-width: 280px;
    top      : auto;
    right    : 50px;
    bottom   : 60px;
    left     : 50%;
    transform: translate(-50%, 0);
  }

  /* -- fv_right 
  -----------------------------*/
  .fv_right {
    width          : 100%;
    margin-left    : auto;
    display        : flex;
    justify-content: space-between;
    align-items    : flex-start;
    padding        : 8% 0 8% 30px;
  }

  .fv_right_ad_sp {
    width  : calc(90% - 165px);
    margin : 0;
    display: flex;
  }

  .site_nav {
    width: 20%;
  }

  .site_nav_list li {
    min-width: 165px;
  }
}


@media screen and (max-width: 768px) {
  .fv_center {
    padding: 50px 0 240px;
  }

  .slide_txtarea {
    padding: 8% 15px;
  }
}


@media screen and (max-width: 600px) {
  .fv_center {
    padding: 50px 0 200px;
  }

  .slide_txtarea {
    padding: 8% 10px;
    height : 100px;
    gap    : 10px;
  }

  #fv_center .swiper-button-prev {
    width : 44px !important;
    height: 45px !important;
  }

  #fv_center .swiper-button-next {
    width : 40px !important;
    height: 45px !important;
  }

  .fv_btn_org {
    bottom: 45px;
  }

  .fv_right {
    padding: 50px 0 35px 30px;
  }
  .slide_txt {
    height: 50px;
  }
}
@media screen and (max-width: 360px) {
    .slide_txtarea {
        padding: 8% 10px;
        height : 80px;
        gap    : 10px;
      }

    .slide_txt {
        height: 47px;
        }
}

/* ================================================================

  news

==================================================================*/
.news_post {
  width                    : 60%;
  max-width                : 800px;
  height                   : 80px;
  margin-left              : auto;
  padding                  : 0 0 0 1.5%;
  border                   : 3px solid #FFBF1F;
  border-right             : none;
  border-top-left-radius   : 40px;
  border-bottom-left-radius: 40px;
  background               : #fff;
  position                 : relative;
  right                    : 0;
  top                      : 2.5vw;
  z-index                  : 10;
}

.news_post_inner {
  height: 100%;
}

.news_post dl {
  height     : 100%;
  display    : flex;
  align-items: center;
  font-size  : clamp(1.4rem, 1.4vw, 2.0rem);
}

.news_post dl dd {
  padding: 0 25px;
}

.news_post_date {
  border-left: 2px dotted #707070;
}

.news_post_date {
  border-right: 2px dotted #707070;
}

.news_post_txt {
  padding-right: 0;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .news_post {
    width        : 90%;
    top          : 0;
    margin-bottom: 50px;
  }

  .news_post dl {
    flex-wrap: wrap;
  }

  .news_post dl dd {
    padding: 0 15px;
  }
}


@media screen and (max-width: 600px) {
  .news_post dl {
    padding: 10px 0 10px 20px;
  }

  .news_post_date {
    border-right: none;
  }

  .news_post dl dd.news_post_txt {
    padding: 0;
  }
}



/* ================================================================

  concept

==================================================================*/
.concept {
  background: #F8F8EA;
  padding   : 100px 5%;
  position  : relative;
  z-index   : 1;
}

.concept_container {
  display     : flex;
  align-items : center;
  position    : relative;
  max-width   : 1160px;
  margin-right: auto;
}

.concept_txtarea {
  width: 50%;
}

.concept_ttl {
  width    : 100%;
  max-width: 440px;
}

.concept .txt.rd {
  color      : #FF006F;
  font-weight: 500;
  margin     : 60px 0 50px;
  line-height: 2;
  font-weight: bold;
}

.concept .btn {
  margin   : 60px auto 0;
  position : relative;
  right    : 8%;
  min-width: 280px;
}

.concept_imgarea {
  width    : 55%;
  max-width: 608px;
  position : absolute;
  top      : 10%;
  right    : -5%;
  padding  : 0 1%;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .concept {
    padding : 70px 0 50px;
    position: relative;
  }

  .concept_container {
    flex-direction: column;
  }

  .concept_ttl {
    width    : 95%;
    max-width: 480px;
    min-width: 270px;
    margin   : 0 auto;
    position : relative;
    right    : 8%;
  }

  .concept_txtarea {
    width : 70%;
    margin: 0 auto 8%;
  }

  .concept .txt {
    font-size: clamp(1.6rem, 2.5vw, 1.6rem);
  }

  .concept .btn {
    margin   : 60px auto 0;
    position : absolute;
    bottom   : -120px;
    left     : 50%;
    right    : 50%;
    transform: translate(-50%, 0);
  }

  .concept_imgarea {
    width      : 80%;
    position   : static;
    padding    : 0;
    margin-left: 5%;
  }
}


@media screen and (max-width: 600px) {
  .concept_ttl {
    width: 80%;
  }

  .concept_txtarea {
    width: 100%;
  }

  .concept .txt.rd {
    font-size: 1.4rem;
  }

  .concept_imgarea {
    width: 100%;
  }
}


/* ================================================================

  About us

==================================================================*/
.information {
    background: #FFF;
    padding   : 100px 5% 5px;
    position  : relative;
    z-index   : 1;
  }
  
  .information_container {
  
    align-items : center;
    position    : relative;
    max-width   : 1160px;
    margin:0 auto;
  }
  
  .information_txtarea {
    width: 90%;
    margin: 0 auto;
  }
  
  .information_ttl {
    width    : 100%;
    max-width: 440px;
    font-size: 4rem;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  
  .information .txt.rd {
    color      : #FF006F;
    font-weight: 500;
    margin     : 60px 0 50px;
    line-height: 2;
    font-weight: bold;
  }
  
  .information .btn {
    margin   : 60px auto 0;
    position : relative;
    right    : 8%;
    min-width: 280px;
  }
  
  .information_imgarea {
    width    : 30%;
    max-width: 608px;
    position : absolute;
    top      : 3%;
    right    : 0%;
    padding  : 0 1%;
  }


  /* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
  @media screen and (max-width: 1024px) {
    .information {
      padding : 100px 0 0px 0px;
      position: relative;
    }
  
    .information_container {
      flex-direction: column-reverse;
    }
  
    .information_ttl {
      width    : 100%;
      max-width: 480px;
      min-width: 270px;
      margin   : 0 auto 0;
      position : relative;
    }
  
    .information_txtarea {
      width : 90%;
      margin: 0 auto 8%;
    }
  
    .information .txt {
      font-size: clamp(1.6rem, 2.5vw, 1.6rem);
    }
  
    .information .btn {
      margin   : 60px auto 0;
      position : absolute;
      bottom   : -120px;
      left     : 50%;
      right    : 50%;
      transform: translate(-50%, 0);
    }
  
    .information_imgarea {
      width      : 80%;
      position   : static;
      padding    : 0;
      margin: 0 auto;
    }
  }
  
  
  @media screen and (max-width: 600px) {
    .information_ttl {
      width: 80%;
      right    : 0%;
    }
  
    .information_txtarea {
      width: 90%;
    }
  
    .information .txt.rd {
      font-size: 1.4rem;
    }
  
    .information_imgarea {
      width: 100%;
    }
  }


/* ================================================================

  howto

==================================================================*/
.howto {
  background: #FFBF1F;
  padding   : 85px 5% 95px;
}

.howto_ttl {
  width    : 60%;
  max-width: 440px;
  min-width: 235px;
  margin   : 0 auto;
  position : relative;
}

.howto_ttl::after {
  content        : "";
  display        : inline-block;
  width          : 40%;
  max-width      : 153px;
  height         : 16vw;
  max-height     : 130px;
  background     : url(../assets/img/aboutus/howto-ttl-img.svg) no-repeat;
  background-size: 100%;
  position       : absolute;
  top            : -16%;
  right          : -35%;
}

.howto_lead {
  text-align: center;
  margin    : 60px 0 35px;
}

.howto_list {
  background   : #fff;
  padding      : 22px 8% 35px;
  border-radius: 10px;
  box-shadow   : 10px 10px #FD7B2A;
}

.howto_list li {
  font-size    : 2.2rem;
  font-size    : clamp(1.4rem, 2.2vw, 2.2rem);
  padding      : 13px 0 10px 5px;
  border-bottom: 2px dotted #FFBF1F;
  display      : flex;
  align-items  : center;
  line-height  : 1.5;
}

.howto_list li::before {
  content        : "";
  display        : inline-block;
  width          : 10%;
  max-width      : 50px;
  min-width      : 40px;
  height         : 6vw;
  max-height     : 50px;
  min-height     : 40px;
  margin-right   : 20px;
  background-size: 100%;
}

.howto_list li:nth-child(1)::before {
  background     : url(../assets/img/aboutus/howto-num-01.svg) no-repeat;
  background-size: contain;
}

.howto_list li:nth-child(2)::before {
  background     : url(../assets/img/aboutus/howto-num-02.svg) no-repeat;
  background-size: contain;
}

.howto_list li:nth-child(3)::before {
  background     : url(../assets/img/aboutus/howto-num-03.svg) no-repeat;
  background-size: contain;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .howto {
    padding: 20% 5% 18%;
  }

  .howto_ttl {
    width    : 65%;
    max-width: 440px;
    min-width: 235px;
    margin   : 0 auto;
    position : relative;
  }

  .howto_ttl::after {
    width     : 32%;
    min-width : 76px;
    height    : 18vw;
    max-height: 130px;
    top       : -60%;
    right     : -15%;
  }

  .howto_lead {
    font-size: clamp(1.6rem, 2.2vw, 1.8rem);
    margin   : 60px 0 35px;
  }

  .howto_list li {
    padding      : 17px 0 15px 5px;
    border-bottom: 3px dotted #FFBF1F;
  }

  .howto_list li::before {
    margin-right: 12px;
  }
}


@media screen and (max-width: 767px) {
  .howto_lead {
    font-size  : 1.8rem;
    text-align : left;
    line-height: 1.6;
  }

  .howto_list {
    padding: 25px 20px 45px;
  }
}


@media screen and (max-width: 600px) {
  .howto {
    padding: 20% 0 18%;
  }
}




/* ================================================================

  footer

==================================================================*/
.footer {
  background: #FFBF1F;
}

.f_container {
  display        : flex;
  align-items    : flex-start;
  justify-content: space-between;
  padding        : 40px 30px 30px;
}

.f_logo {
  width: 100px;
}

.f_logo a img{
  width: 60px;
  height:60px;
  border-radius: 10%;
}

.f_nav_list {
  font-size     : 1.8rem;
  display       : flex;
  flex-direction: column;
  gap           : 20px;
}

.copyright {
  height         : 50px;
  background     : #151515;
  display        : flex;
  align-items    : center;
  justify-content: center;
  color          : #fff;
  font-size      : 1.4rem;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .f_container {
    padding: 40px 30px 50px;
  }

  .f_logo {
    width: 60px;
  }

  .f_nav_list {
    font-size: 1.6rem;
  }
}



.information-wrap {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  font-family: "Noto Sans JP", sans-serif;
}

.info-item {
  padding: 22px 0 28px;
  border-bottom: 2px solid #ffcc00;
}

.info-item:first-child {
  border-top: 2px solid #ffcc00;
}

.info-date {
  display: inline-block;
  background: #ffcc00;
  color: #111;
  font-weight: 700;
  padding: 4px 12px;
  font-size: 13px;
  margin-bottom: 10px;
}

/* PC表示 = 横並び（右に画像） */
.info-inner {
  display: flex;
  gap: 16px;
}

/* サムネイルを右側に移動 */
.info-thumb {
  order: 2;
}

.info-thumb img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  background-color: #eee;
}


/* テキスト部分は左 */
.info-content {
  order: 1;
  flex: 1;
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.55;
}

.info-body {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.6;

}

.info-body a {
  color: #0066cc;            /* 青色 */
  text-decoration: underline; /* 下線 */
  font-weight: 600;
  transition: opacity .2s ease;

}

/* クリック風ホバーでもクリックできると分かりやすい */
.info-body a:hover {
  opacity: 0.7;
  text-decoration-thickness: 2px;
}


/* 📱スマホ表示 = 縦並びで画像は下 */
@media (max-width: 700px) {

  .information-wrap {
    width: 98%;
  }

  .info-inner {
    flex-direction: column;
  }

  .info-thumb,
  .info-content {
    order: initial;
  }

  .info-thumb img {
    width: 100%;
    height: 160px;
  }
}

/* --- 既存の information 用スタイルはそのまま --- */

/* ページネーション全体 */
.pagination {
  margin: 24px auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
}

/* ページ番号・矢印共通 */
.page-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  height: 32px;
  line-height: 32px;  /* ← 高さに揃えることで中央に */
  padding: 0 10px;    /* ← 横の余白だけ確保 */
  border-radius: 16px;
  border: 1px solid #ffcc00;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  background: #fff;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
  vertical-align: middle;
}

/* 現在ページ */
.page-link.current {
  background: #ffcc00;
  color: #111;
  font-weight: 700;
}

/* ホバー */
.page-link:hover {
  background: #fff7c2;
}

/* 無効（最初/最後での矢印など） */
.page-link.disabled {
  border-color: #ddd;
  color: #bbb;
  background: #f7f7f7;
  cursor: default;
}

/* 前後ボタンを少し強調したければ */
.page-link.prev,
.page-link.next {
  padding-top: 1px;
  padding-bottom: 4px;
  font-size: 16px;
}



.input-recipe {
  width: 96%;
  height: inherit;
  /*font-size: 2rem;*/
  background-color: #fff;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: block;
  line-height: 40px;
  border-radius:0.5em;
  padding-left: 5px;
  border: 0.5px solid #ddd;
  box-shadow: 0 0 4px rgb(232, 232, 232);
}

.input-recipe:hover {
  box-shadow: 0 0 5px #f8c84e;
}


.input-recipe::placeholder {
  color: #d1d1d1;
}

.btn {
  font-size         : 1.8rem;
  color             : #fff;
  font-weight       : 500;
  height            : 60px;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  border-radius     : 5px;
  transition        : .2s
}

.btn-primary {
  color: #000;
  background-color: #ffbf1fff;
  border-color: #ffbf1fff;
}

.btn-primary:hover {
  color: #000;
  background-color: #e3a712ff;
  border-color: #e3a712ff;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #03499c;
  border-color: #03438f;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(42, 116, 202, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(42, 116, 202, 0.5);
}