@charset "UTF-8";
/*
---------------------------------------------
ベースの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
色
---------------------------------------------
*/
/*
---------------------------------------------
制度についての色
---------------------------------------------
*/
/*
---------------------------------------------
ベースの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
事前に読み込むscssファイル
---------------------------------------------
*/
/*
---------------------------------------------
flexの設定
---------------------------------------------
*/
/*
---------------------------------------------
ブレイクポイントを指定
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
コンポーネントの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
ベースの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
ベースの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
コンポーネントの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
.articleHeaderのレイアウト設定
---------------------------------------------
*/
.articleHeader {
  padding: 30px 6.02%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/*
---------------------------------------------
各記事見出しのhgroupへの設定

news：
projects：
event：
---------------------------------------------
*/
.articleHgroup {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  align-self: stretch;
  gap: 30px;
}

/*
---------------------------------------------
タイトル文言
---------------------------------------------
*/
.articleTitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
}

/*
---------------------------------------------
カテゴリー名
---------------------------------------------
*/
.articleCategory {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/*
---------------------------------------------
記事情報を表示するエリア；dataArea
---------------------------------------------
*/
.dataArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/*
---------------------------------------------
タグ情報の部分
---------------------------------------------
*/
.dataArea__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/*
---------------------------------------------
イベント記事に設定される：ステータス
---------------------------------------------
*/
.dataState {
  display: grid;
  place-content: center;
  width: fit-content;
  padding: 7px 10px 8px 10px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #6C5403;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/*
---------------------------------------------
データが入っていない場合はclassを付与して非表示にする
---------------------------------------------
*/
.dataState.hidden {
  display: none;
}

/*
---------------------------------------------
記事コンテンツエリアの設定
---------------------------------------------
*/
.articleContents {
  padding: 30px 6.02%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  border-bottom: 1px solid #ffffff;
}

/*
---------------------------------------------
記事内のグループ（WordPress要素：デザイン）の設定
---------------------------------------------
*/
.articleInner {
  padding-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 20px;
  border-bottom: 1px solid #ffffff;
  /*
  ---------------------------------------------
  記事コンテンツ内の要素に対するデザイン設定

  		h3
  		p
  		img
  		ul or テーブル
  		a
  		h4

  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  記事内の見出し：h3
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  記事本文
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  linkに対する設定
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  h4
  ---------------------------------------------
  */
}
.articleInner h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.articleInner p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.articleInner a {
  display: inline-block;
  color: #ffffff;
  transition: opacity 0.3s;
  text-decoration: underline;
  word-break: break-all;
}
@media (hover: hover) {
  .articleInner a:hover {
    opacity: 0.6;
  }
}
.articleInner h4 {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-bottom: 2px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.articleInner:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.articleSchedule {
  gap: 30px;
}

/*
---------------------------------------------
画像単体
---------------------------------------------
*/
.articleImage img {
  border-radius: 4px;
}

/*
---------------------------------------------
記事内に登録する画像 list

この場合は画像サイズを156pxに指定する
---------------------------------------------
*/
.articleImageList {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  /*
  ---------------------------------------------
  記事内に登録する画像 list

  カラム要素が.wp-block-columnとして登録されるためそちらに対して幅を指定する
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  画像の角丸設定
  ---------------------------------------------
  */
}
.articleImageList .wp-block-column {
  max-width: 45.48%;
}
.articleImageList img {
  border-radius: 1.819px;
}

/*
---------------------------------------------
記事内の画像に設定される
キャプションの文字設定
---------------------------------------------
*/
.articleImage figcaption,
.articleImageList figcaption {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

/*
---------------------------------------------
ベースの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
記事コンテンツの設定


---------------------------------------------
*/
.projects,
.islandList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.projects__item,
.islandList__item {
  width: 100%;
  height: 100%;
}

/*
---------------------------------------------
記事リストアイテムのリンクタグの設定
---------------------------------------------
*/
.projects__link,
.islandList__link {
  border: 4px solid #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .projects__link:hover,
  .islandList__link:hover {
    opacity: 0.6;
  }
}

/**
	* ピックアップリスト、かつ外部リンクの場合
	* 
	* @author ishizaka
	* @version 2025/12/09
	*/
.projects__link[target=_blank] .pickup-office::after {
  background-image: url(../../../img/icons/btn_externalLink_blue.svg);
}

/*
---------------------------------------------
記事タイトルを囲うボックスの設定
---------------------------------------------
*/
.projects__info,
.islandList__info {
  padding: 15px;
  background-color: #ffffff;
  color: #006EA6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /**
   * ピックアップリストの場合
   * 
   * @author ishizaka
   * @version 2025/12/09
   */
}
.projects__info::after,
.islandList__info::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../../../img/icons/btn_externalLink_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.projects__info.pickup-office::after,
.islandList__info.pickup-office::after {
  background-image: url(../../../img/icons/about_course_link_blue.svg);
}

.islandList__info::after {
  background-image: url(../../../img/icons/about_course_link_blue.svg);
}

/*
---------------------------------------------
記事画像の高さ
---------------------------------------------
*/
.projects__eyecatch {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .projects__eyecatch {
    max-height: 239px;
  }
}

.islandList__eyecatch {
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 1024px) {
  .islandList__eyecatch {
    max-height: 239px;
  }
}

/*
---------------------------------------------
不要なdivを非表示に
---------------------------------------------
*/
.wp-block-group__inner-container {
  display: contents;
}

/*
---------------------------------------------
記事コンテンツエリアの設定
---------------------------------------------
*/
.articleContents {
  gap: 0 !important;
  padding: 0 6.02% 30px;
}

/*
---------------------------------------------
基本のレイアウト
---------------------------------------------
*/
.islandOuter {
  padding: 30px 6.02%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid #ffffff;
  /*
  ---------------------------------------------
  ページタイトルとカテゴリー情報の設定
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  本文の文字設定
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  基本的なH3の設定
  ---------------------------------------------
  */
  /*
  ---------------------------------------------
  各島記事のタイトル用
  ---------------------------------------------
  */
}
.islandOuter .officeHeading {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
}
.islandOuter .officeHeading h2 {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
}
.islandOuter p {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.islandOuter h3 {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.islandOuter .islandList__title {
  font-size: 16px;
}

/*
---------------------------------------------
スライダー領域の設定
---------------------------------------------
*/
.islandSlider {
  width: 100%;
}

/*
---------------------------------------------
他ページへのリンクボタン設定
---------------------------------------------
*/
.islandLink__area {
  width: 100%;
}

/*
---------------------------------------------
aタグの設定
---------------------------------------------
*/
.islandLink {
  width: 100%;
  background-color: #006EA6;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1875;
  padding: 10px;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.islandLink::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../../img/icons/front_to_link_blue.svg);
  background-color: #ffffff;
  border-radius: 50%;
}
@media (hover: hover) {
  .islandLink:hover {
    opacity: 0.6;
  }
}

/*
---------------------------------------------
swiperのページネーション設定

---------------------------------------------
*/
.swiper-container {
  overflow: visible;
}

.swiper-pagination {
  position: relative;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  bottom: -1vw;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.swiper-pagination-bullet {
  box-sizing: border-box;
  width: 20px;
  height: 4px;
  margin: 0 !important;
  border-radius: 0%;
  background-color: #fff;
  opacity: 0.4;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  box-sizing: border-box;
  opacity: 1;
}/*# sourceMappingURL=island.css.map */