@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/* ------------------------------- */
/* content.php */
/* ------------------------------- */
/* サブタイトル */
.entry-subtitle{
  color: #EA4335;
  border: 1px solid #EA4335;
  border-radius: 50px;
  display: inline;
  padding: 5px 15px;  
}


/* ------------------------------- */
/* single-product.php */
/* ------------------------------- */

/* 商品ページ全体 */
.single-product main {
  max-width: 1000px;
  margin: 0 auto;
}
.product_list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.product_item{
  width: 50%;
}
.product_item:first-child{
  padding-left: 20px;
}

/* 商品名（タイトル） */
.single-product h1 {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

/* 型番と価格 */
.product_number,
.product_price {
  margin-bottom: 10px;
  text-align: center;
}

/* 商品画像 */
.product_thumbnail img {
  display: block;
  margin: 1em auto;
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);

}

/* 商品説明文 */
.product_content {
  margin-top: 10px;
  line-height: 1.6;
  font-size: 16px;
}

/* 商品一覧ボタン */
.product_back_bottum{
  border: 1px solid #101010;
  margin: 20px auto;
  padding: 10px 15px;
  width: 30%;
  text-align: center;
}

.back-to-list{
  color: black;
  margin: 0 auto;
  text-decoration: none;
}

/* ------------------------------- */
/* archive-product.php */
/* ------------------------------- */
.product-grid{
  display:flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.product-card{
  width: 30%;
}
.product-title,
.product-model{
  font-size: 18px;
  color: #333333;
}
.product-thumb img{
  border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);

}
.card-thumb,
.product-thumb{
  padding-bottom: 10px;
}

/* ------------------------------- */
/* トップページ */
/* ------------------------------- */
@media screen and (max-width: 768px) {
  .logo-header img{
    width: 50%;
    margin: 0 auto;
  }
}
.wrap{
  width: 100%;
}
.content{
  max-width: 1200px;
  margin: 50px auto;

}
.top-mv{
  margin-bottom: 50px;
  position: relative;
}
.top-mv img{
  border-radius: 10px;
}
.top-p{
  font-size: 25px;
  color: #fff;
  
  position: absolute;
  top: 70%;
  left:50%;
  transform: translate(-50%,-70%);
}
@media screen and (max-width: 768px) {
  .top-p{
    font-size: 12px;
  }
}
.product-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.product-block{
  width: 30%;
}
.product-block img{
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.more-link{
    border: 1px solid #101010;
    margin: 40px auto 60px;
    padding: 10px 15px;
    width: 30%;
    text-align: center;
}
.card-thumb img {
  border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.news-item,
.news-title,
.product-title,
.product-text,
.more-link_a{
  font-size: 18px;
  color: #333333;
}
.more-link_a:hover{
  color: violet;
}

.product-thumbnail{
  margin-bottom:20px ;
}
.h2{
  margin-bottom: 20px;
}
.news-title{
  border-bottom: 1px solid #333333;
  padding: 10px 20px 10px;
}
@media screen and (max-width:768px){
  h2{
    font-size: 16px;
  }
  .news-title{
    font-size: 14px;
  }
  .product-title,
  .product-text,
  .more-link_a{
    font-size: 12px;
  }
  .more-link{
    width: 50%;
  }
  .product-row{
    gap: 0;
    flex-direction: column;
  }
  .product-block{
    width: 80%;
  }
}
/* ------------------------------- */
/* 不要部分を消す */
/* ------------------------------- */
.admin-panel{
  display: none;
}
.admin-pv{
  display: none;
}
.footer-bottom-logo{
  display: none;
}
.footer-bottom-content{
  float: initial;
  text-align: center;
}
header{
  width: 100%;
  max-width: 100%;
}
.navi-in>ul{
    flex-wrap: nowrap;
  }

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
 
}
/*834px以下*/
@media screen and (max-width: 834px){
  
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ------------------------------- */
/* recet.css */
/* ------------------------------- */


 body {
  font-family: "Rounded Mplus 1c", "Arial Rounded MT", "Hiragino Maru Gothic Pro", sans-serif;
}

*{
  /* 余白の消去 */
  margin: 0;
  padding: 0;  
  /* 幅にpaddingとborderを含める */
  box-sizing: border-box;
   /* 親要素の色を引き継ぐ */
  color: inherit;
}
/* インライン要素をブロック要素へ */
a,p,img,article,aside,hgroup,header,footer,main,nav,figure,span,button,h1,h2,h3{
display: block;
}
img{
  /* img要素の境界線を消す */
  border: none;
  /* 親要素に対して100％広がる */
  width: 100%;
}
a{
/* a リンクテキストの下線を消す */
  text-decoration: none;
}
/* リストマーカーを消す */
ul,li{
  list-style: none;
}
/* 表におけるスペースや境界線のスタイルを統一する */
table {
  border-spacing: 0;
  border-collapse: collapse;
}


