@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.2
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*カメラアイコン*/
.filelabel {
   background-color: #C40B44;  /* 背景色 */
   color: white;              /* 文字色 */
   border: 2px solid #C40B44;  /* 枠線 */
   border-radius: 3em;        /* 角丸 */
   padding: 12px 9px;         /* 内側の余白 */
   display: inline-block;     /* インラインブロック化 */
}
.filelabel img {
   vertical-align: bottom;    /* 画像の垂直方向の配置 */
}
.filelabel:hover {
   opacity: 0.5;              /* 半透明 */
   border: 2px solid red;     /* 枠線(赤色) */
   cursor: pointer;           /* マウス形状(ポインタ) */
}
#filesend {
   display: none;  /* 本来のファイル選択フォームは非表示に */
}
#filesend2 {
   display: none;  /* 本来のファイル選択フォームは非表示に */
}
.container table tr {
  background-color: transparent;
}

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

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

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

/*画像を楕円に切り出す*/
.wp-image-46{
  border-radius: 30px;
}


/*768px以下*/
@media screen and (max-width: 768px){
	.column-wrap{
		flex-direction: row;
	}
}
/*480px以下*/
@media screen and (max-width: 480px){
  .column-wrap{
    flex-direction: row;
  }
}

/*画面幅いっぱいに画像を表示する 20210509*/
/*
 * @media screen and (min-width: 769px) {
  .page,
  .max-img {
    margin-left: -29px;
    margin-right: -29px;
  }
}

@media screen and (max-width: 768px) {
  .page,
  .max-img {
    margin-left: -10px;
    margin-right: -10px;
  }
}
*/
/*画面幅いっぱいに画像を表示する 20210605*/
@media screen and (max-width: 480px) {
  /* 画像を囲む p タグ用 */
  .img-in-the-content,
  /* Gutenberg の画像ブロック用 */
  .entry-content > .wp-block-image {
    margin: 0 calc((100% - 100vw)/2);
  }
}


/*カラム背景色 20210509*/
.header-container,
.main,
.sidebar,
.footer {
/*background-color: #f5f5ef;*/
background-color: #ffffff;
}

/*フロント固定ページのタイトルを非表示 20210509*/
.page .entry-title{
  display: none;
}

/*かっこいいボタン*/
/*https://saruwakakun.com/html-css/reference/buttons*/
.btn-circle-flat {
  display: inline-block;
  text-decoration: none;
  background: #c40b44;
  color: #FFF;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  transition: .4s;
}

.btn-circle-flat:hover {
  background: #aa0c3d;
}



.btn-circle-3d-dent {
  display: inline-block;
  text-decoration: none;
  background: #c40b44;
  color: rgb(82, 142, 150);
  width: 82px;
  font-size: 20px;
  height: 80px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0px 3px 0 rgba(255,255,255,0.3), 0 3px 3px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  border-bottom: solid 3px #549fa9;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.65);
  transition: .4s;
}

.btn-circle-3d-dent:active {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
  border-bottom: none;
}

/*ボタンを光らせる20210730*/
/* 光らせるためのstyle */
.shine{
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}
/* 光の動き */
@keyframes shine{
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}

/*ボタンを光らせるここまで20210730*/




/*リストのポチをチェックにする*/
ul li {
    line-height: 20px;
    list-style:none;
}
 
ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5em;
    color: #c40b44;
}



