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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

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

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

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

body, button, input, select, textarea {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #333333;
}

.page .date-tags,
.page .author-info {
    display: none;
}

/* header */

/* sidebar */
.sidebar h2 {
	background: #009C8D;
	color: #fff;
	
}

/* home */
h2.section-title {
	 position: relative;
	 background: #fff;
}

h2.section-title:after {
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
    height: 6px;
    content: '';
    border-radius: 3px;
    background-image: -webkit-gradient(linear, left top, right top, from(#009C8D), to(#004C96));
    background-image: -webkit-linear-gradient(left, #009C8D 0%, #004C96 100%);
    background-image: linear-gradient(to right, #009C8D 0%, #004C96 100%);
}

.landing-course__language-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
	padding-left: 0;
}

.landing-course__language-list-item {
    height: 100%;
	list-style: none;
}

.landing-course__language-card {
    display: block;
    height: 100%;
    color: #2b546a;
}

landing-course__language-card-inner {
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 24px 0;
}

.landing-course__language-title {
    font-size: 1.25rem;
    color: #2b546a;
	margin: 0;
}