@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: カスタムテーマ
Theme URI: https://wp-cocoon.com/
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
.new-entry-card-date.widget-entry-card-date.display-none {
  display: block;
}

.no-thumbnail .widget-entry-cards div.widget-entry-card-content {
  display: flex;
  flex-direction: column-reverse;
}

.wp-block-columns {
  align-items: center !important;
}

.post-32 .date-tags {
  display: none;
}

.new-entry-card-post-date.widget-entry-card-post-date.post-date {
  color: red;
}

.go-to-top{
  right: 32px;
}

/* 各システムの導線 */

.system-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 4em;
}

.system-item {
  box-shadow: 3px 3px 5px rgb(102 102 96 / 10%);
  text-align: center;
  padding: 1em 0;
  transition: 0.2s;
  border: solid 1px #f2f2f2;
}

.system-item h3{
  color: #333;
  text-decoration: none;
}

time .entry-date .date .updated {
  display: noen;
}

.system h3 {
  margin-bottom: 0;
}


/* 背景画面幅一杯表示 */

.bg-color{
  background: #f5f5f5;
  margin: 0 calc(50% - 50vw);
  padding: 50px calc(50vw - 50%) 3px;
  overflow: auto;
}

.ssbg-img{
  /* background-image: url(http://localhost/wp-d24h/wp-content/uploads/2022/12/plat_bg-2.png); */
  margin: 0 calc(50% - 50vw);
  padding: 50px calc(50vw - 50%) 0;
  overflow: hidden;
}

body{
  overflow: overlay;
}


/* hoverアニメーション */

div.system-item:hover{
  box-shadow: 5px 5px 10px rgb(102 102 96 / 60%);
  transition: 0.3s;
}

div.system-item:hover h3{
  color: #A92423;
  transition: 0.2s;
}

div.new-entry-card-content.widget-entry-card-content.card-content:hover{
  color: blue;
}

.wp-block-button__link{
  transition: 0.3s;
}

div.wp-block-button.aligncenter.is-style-outline:hover .wp-block-button__link{
  background-color: #ea5506 !important;
  color: #fff !important;
  transition: 0.6s;
  font-weight: bold;
}

div.wp-block-button.aligncenter.is-style-outline:hover .arrow:before{
  background-color: #fff;
  transition: 0.8s;
}

div.wp-block-button.aligncenter.is-style-outline:hover .arrow:after{
  border-color: #ea5506;
  transition: 0.8s;
}

/* 装飾 */

.arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  text-decoration: none;
}
.arrow:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #ea5506;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -3px;
  margin-top: -10px;
  transition: 0.3s;
}
.arrow:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}

/* アーカイブページ */
#archive-title{
  display: none;
}

div.entry-card-content.card-content.e-card-content{
  border-bottom: solid 1px #dcdcdc;
}

h2.entry-card-title.card-title.e-card-title{
  color: #ea5506;
}


/* レスポンシブ切り替え */

.pc {
  display: block;
}

.sp{
  display: none !important;
}

.header-container-in.hlt-top-menu{
	display: initial;
}

.header-in{
	flex-direction: initial;
	justify-content: space-between;
	align-items: center;
}

.cf::after{
	display: none;
}

.fixed-header .header .header-in{
	padding: 0 30px;
}

.add-header-contents{
	color: #fff;
	background: #ea5506;
	padding: 4px 12px;
	border-radius: 4px;
}

.add-header-contents a{
	color: #fff;
}

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

/*834px以下*/
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }

  .sp{
    display: block !important;
  }

  .fz-22px-res{
    font-size: 22px !important;
  }

  .system-wrap{
    flex-wrap: wrap;
  }
  .system-item{
    width: calc(50% - 24px);
  }
}

/*480px以下*/
@media screen and (max-width: 480px) {
  .system-item{
    width: calc(100% - 24px);
  }

  div.new-entry-card-content.widget-entry-card-content.card-content{
    border-bottom: solid 1px #dcdcdc;
  }
}