@charset "utf-8";
/*
	* 基本スタイルシート
	* CMSのパーツ、テンプレートのスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* *{
	border: solid 1px #ccc;
} */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	CMSスタイル設定
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	フロントページ
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ======================================================================
	フロントページ共通
====================================================================== */
/* セクション見出し */
.section-ttl {
margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
}
.section-ttl#al_policy {
    padding-top: 120px;
    margin-top: -120px;
}

.section-ttl span{
	/* font-weight: 600; */
	/* display: block; */
	line-height: 1;
}
.section-ttl-ja{
	font-size:var(--fontSize60);
	font-weight: 800;
}

.section-ttl-en{
	color: var(--mainColor);
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	font-size: var(--fontSize30);
	font-weight: 600;
	line-height: 1.1;
	position: relative;
	padding-left: 18px;
	margin-bottom: 1rem;
}

.section-ttl-en::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    transform: translate(-50%) rotate(40deg);
    width: 2px;
    height: 20px;
    border-radius: 5px;
    background-color: var(--mainColor);}


.section-sub-ttl{
	font-size: var(--fontSize28);
	    margin-left: 1rem;
    vertical-align: middle;
}

.container{
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}

.page-template-front-page section + section,.page-template-front-page-test section + section{
	margin-top: 9rem;
}
section + section.bl_sns{
	margin-top: 0!important;
}
section + section.bl_blog{
	margin-top: 0;
}

/* 共通ボタン */
.more-link{
    position: relative;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
	justify-content: flex-end;
	font-weight: 600;
	text-decoration: none;
	font-size: var(--fontSize20);
	margin-top: 1rem;
}
.more-link::before{
	content: '';
	background-image: url(../img/btn.png);
	width: 20px;
	height: 20px;
	background-size: cover;
	display: inline-block;
}

.btn{
    background-color: #2898de;
    font-size: var(--fontSize24);
    color: #fff;
    padding: 2rem;
    border-radius: 50vh;
    display: block;
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
	margin-bottom: 4rem;
	display: block;
	box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5);
	font-weight: 600;
	text-decoration: none;
}
.btn::after{
	    content: '';
    background-image: url(../img/btn-white.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    display: inline-block;
}


.btn.btn-solid{
border-radius: 0;
background-color: #fff;
border: solid 2px #37a6af;
color: #000;
width: calc((100% - 2rem) / 2);
margin-top: 1rem;
box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5);
}
.btn.btn-solid::after{
    content: '';
    background-image: url(../img/btn.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    display: inline-block;
	margin-left: .5rem;
}




.btn_flex{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn_flex .btn{
	margin: initial;
}

@media screen and (max-width: 1200px){
.section-sub-ttl {
    font-size: var(--fontSize30);
    display: block;
    margin-top: 1.25rem;
}
}
@media screen and (max-width: 768px){
	.page-template-front-page section + section {
    margin-top: 4rem;
}
	.section-ttl {
    margin-bottom: 1.75rem;
}
	.section-ttl-ja{
		font-size: var(--fontSize30);
		letter-spacing: 1px;
	}
	.section-ttl-en{
		font-size: var(--fontSize18);
		padding-left: 10px;
	}
	.section-ttl-en::after{
    width: 2px;
    height: 10px;
}

.btn{
    font-size:1.1rem;
    padding: 1rem;
}
.section-sub-ttl {
    font-size: var(--fontSize20);
    display: block;
    margin-top: 1.25rem;
}

}

/* ======================================================================
	bl_mv
====================================================================== */
.bl_mv{
	width: 100%;
	height: 100vh;
	background-image: url(../img/mv_20250818-3.png);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-position: center;
}
/* キャッチコピー */
.catch_copy{
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 2rem;
    height: fit-content;
    text-shadow: 1px 1px 18px rgb(0 0 0 / 100%);
    bottom: -10px;
}

.catch_copy span {
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
  display: block;
  	/* 画面幅に応じて、文字サイズを動的に変更 */
  /* 最小サイズ: 2rem, 推奨サイズ: 5vw, 最大サイズ: 5rem */
  font-size: clamp(1.25rem, 5vw, 5rem);
  font-weight: 700;
}
.catch_copy span.catch_copy_name{
	  font-size: clamp(2rem, 9vw, 8rem);
	  font-weight: 900;
}

.catch_copy span:first-child {
  animation: catch_anime 1.4s forwards 1s;
      text-indent: -3rem;
}
.catch_copy span:nth-child(2) {
  animation: catch_anime 1.4s forwards 2s;
font-size: clamp(.75rem, 5vw, 3rem);
  margin-top: 3.5rem;


}
.catch_copy span:nth-child(3) {
  animation: catch_anime 1.4s forwards 3s;

}
.catch_copy span:nth-child(4) {
  animation: catch_anime 1.4s forwards 4s;
}

@keyframes catch_anime {
  0% {
    transform: translateY(20px);
  }
   100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width:992px){
.bl_mv {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
}

.catch_copy span:first-child {
    text-indent: -2rem;
}
}
@media screen and (max-width:768px){
    .catch_copy {
        left: 1.5rem;
        bottom: -10px;
    }

.catch_copy span:nth-child(2) {
    margin-top: 1.5rem;
}
}

@media screen and (max-width:576px){

    .catch_copy {
        left: .5rem;
    }
	 .catch_copy span:first-child{
        text-indent: -1rem;
    }
}


/* 印刷時のメインビジュアルの設定 */
@media print {
.bl_mv {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
}


/* ===================================================================
	bl_report
====================================================================== */

.bl_report h3{
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-left: 2rem;
	margin-bottom: 1rem;
}

.bl_report h3::before{
content: "";
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    /* transform: translateX(-50%); */
    width: 30px;
    aspect-ratio: 1 / 1;
    background-color: #37a6af;
    font-weight: 600;
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 25px;
    mask-size: 25px;
    -webkit-mask-position: left 50% top 50%;
    mask-position: left 50% top 50%;
    -webkit-mask-image: url(../img/megaphone.svg);
    mask-image: url(../img/megaphone.svg);
    -webkit-mask-size: 20px;
    mask-size: 30px;
}

@media screen and (max-width: 576px) {
	.bl_report h3 {
    font-size: 1.25rem;
	padding-left: 2.5rem;
}
.bl_report h3::before {
    top: 0px;
}
}



/* ======================================================================
	bl_sns
====================================================================== */
/* .bl_sns_wrap{
	display: flex;
	justify-content: space-between;
} */
/* .bl_sns .section-ttl{
	text-align: center;
}
.bl_sns .section-ttl-en {
    width: fit-content;
    margin: 0 auto;
} */
.bl_sns {
    margin-bottom: 4rem;
    margin-top: 0;
}
.sns_flex{
	display: flex;
	/* gap: 3rem; */
}



.movie-item{
	flex: 1;
}
.movie_wrap{
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fas_sns_icontopcolor{
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
	flex-wrap: wrap;
    gap: 1rem;
}
.fas_sns_icontopcolor li {
    list-style: none;
    width: calc((100% - 3rem) / 4);
    text-align: center;
    border-radius: 4px;
    display: flex;
    align-items: center;
	box-shadow: 0 5px 15px 1px rgb(0 0 0 / 21%);
}
.fas_sns_icontopcolor li a{
    width: 100%;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.4;
    color:#fff;
    display: flex;
	font-weight: 600;
    /* justify-content: center; */
    /* background-color: #fff; */
    padding: 1.5rem 1rem;
    font-weight: 600;
    transition: .3s;
    align-items: center;
    /* box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
    border: solid 1px #ccc; */
	gap: 1rem;
}

/* .fas_sns_icontopcolor li a:hover{
	opacity: initial;
	opacity: initial;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
} */

.fas_sns_icontopcolor li a i{
	display: block;
	width: 35px;
    height: 30px;
	line-height: 1;
	margin-bottom: 2px;
}
.fab{
content: '';
    display: block;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    /* margin: 0 auto; */
}

.fab.instagram{
    background-image: url(../img/icon/Instagram.png);
}
.fab.facebook{
    background-image: url(../img/icon/fb.png);
}

.fab.line{
    background-image: url(../img/icon/line.png);
}
.fab.x{
    background-image: url(../img/icon/x.png);
}

.sns-box-item.item-insta a {
background-color: #d11b7d;
}
.sns-box-item.item-x a{
	background-color: #000;
}
.sns-box-item.item-fb a{
	background-color: #174e95;
}
.sns-box-item.item-line a{
	background-color: #018939;
}

/* .fas_sns_icontopcolor li:nth-child(2) a{ color: #e706d4; }
.fas_sns_icontopcolor li:nth-child(3) a{ color: #000000; }
.fas_sns_icontopcolor li:nth-child(4) a{ color: #3366cc; }
.fas_sns_icontopcolor li:nth-child(1) a{ color: #ff0000; }
.fas_sns_icontopcolor li:nth-child(5) a{ color: #0e582e; } */

.sns-box{
	margin-bottom: 3rem;
}


.bl_sns .selif{
	text-align: center;
	margin-bottom: 1rem;
	font-size: var(--fontSize20);
	font-weight: 500;
}

.sns-box-item a {
    display: inline-flex; /* アイコンとテキストを横並びにする */
    align-items: center; /* 垂直方向の中央揃え */
    gap: 8px; /* アイコンとテキストの間に少しスペースを空ける */
}

.sns-box-item a::before {
content: '';
    display: inline-block;
    width: 35px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.item-insta a::before {
    background-image: url('../img/icon/Instagram.png');
}

.item-x a::before {
    background-image: url('../img/icon/x.png');
}

.item-fb a::before {
    background-image: url('../img/icon/fb.png');
}

.item-line a::before {
    background-image: url('../img/icon/line.png');
}

@media screen and (max-width:768px){
	.fas_sns_icontopcolor li {
    width: calc(100% / 2 - .5rem);
}
.fas_sns_icontopcolor li a {
    padding: .75rem 1rem;
}
}





/* ======================================================================
	bl_blog
====================================================================== */
/* .bl_blog {
    overflow-x: hidden;
} */
.bl_blog-item.slick-slide + .bl_blog-item.slick-slide{
	margin-left: 2rem;
}

/* .bl_blog-item-wrap{
	margin-left: 10%;
} */

/* .bl_blog .slick-track{
	padding: 1rem 0;
} */

/* 矢印 */
.slick-next:before,.slick-prev:before{
	display: none;
}
/* デフォルトのSlick矢印を上書きし、独自スタイルを適用 */
.slick-prev.custom-prev,
.slick-next.custom-next {
    background-color: #ffffffe8;
    color: var(--mainColor);
    border: solid 1px #ffffff;
    /* border: none; */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 18px -5px rgb(0 0 0 / 15%);
}

/* 前のボタンの位置 */
.slick-prev.custom-prev {
  left: 10px; /* 左からの距離 */
}

/* 次のボタンの位置 */
.slick-next.custom-next {
  right: 10px; /* 右からの距離 */
}

/* ホバー時のスタイル */
.slick-prev.custom-prev:hover,
/* .slick-next.custom-next:hover {
  background-color: #0056b3;
} */

/* 矢印が無効になった時のスタイル (Slickによって自動的に適用される) */
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.5; /* 半透明にする */
  cursor: not-allowed; /* カーソルを禁止マークに */
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    color: var(--mainColor)!important;
	background:#ffffffe8!important;
	opacity: .8;
}
@media (max-width: 1200px) {
	.bl_blog-item-wrap{
	padding: 0 5%;
}
}
@media (max-width: 768px) {

.bl_blog-item-wrap {
    margin: 0;
}
.bl_blog-item.slick-slide + .bl_blog-item.slick-slide{
	margin-left: 0;
}
.bl_blog-item-wrap{
	padding: 0 3%;
}
}

/* ======================================================================
    bl_policy
====================================================================== */
.bl_policy-list-wrap {
  display: flex;
  flex-direction: column; /* PCで1カラムにするため */
  margin-top: 4rem;
  gap: 4rem; /* 各項目間の隙間 */
}

.bl_policy-list {
  width: 100%; /* PCで1カラムにするため */
  box-shadow: 0 5px 18px -5px rgb(0 0 0 / 15%);
  padding: 3rem;
  position: relative;
}

.bl_policy-list-inner {
  display: flex; /* 写真とテキストを横並びにするため */
  gap: 3rem;
  align-items: flex-start; /* 写真とテキストの上端を揃える */
}

.policy-img {
  flex-shrink: 0;
  width: 50%; /* 画像の幅を50%に設定 */
  aspect-ratio: 16 / 9;
}
.policy-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bl_policy-content {
  flex-grow: 1; /* テキスト部分が残りのスペースを占める */
}

.bl_policy-list-top h3 {
  font-weight: 600;
  font-size: var(--fontSize30);
  color: var(--mainColor);
  margin-bottom: .25rem;
}
.intro {
  font-weight: 600;
  font-size: var(--fontSize20);
  margin-bottom: 1rem;
}

.bl_policy-list-top .bg-txt {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    font-style: italic;
    font-size: 7rem;
    top: -82px;
    left: -20px;
    z-index: 2;
    letter-spacing: -2px;
	
}

/* 順番に出現 */
.bl_policy-list {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.bl_policy-list.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bl_policy-list-btm ul {
  padding-left: 1rem;
}
.bl_policy-list-btm ul li {
  list-style-type: disc;
}
.bl_policy-list-btm ul li + li {
  margin-top: 1rem;
}

 @media screen and (max-width: 768px) {
  .bl_policy-list {
    padding: 2rem;
  }
  .bl_policy-list-top .bg-txt {
    font-size: 7rem;
  }
  .bl_policy-list-inner {
    flex-direction: column; 
    gap: 2rem;
  }
  .policy-img {
    width: 100%; 
  }


  .bl_policy-list-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bl_policy-list {
    width: 100%;
    padding: 1.5rem;
  }
  .policy-img {
    width: 100%;
  }
  .bl_policy-list-top h3 {
    font-size: 1.25rem;
  }
  .bl_policy-list-top .bg-txt {
    font-size: 5rem;
    top: -60px;
    left: -10px;
  }
} 

/* ======================================================================
    bl_prof
====================================================================== */
.bg-prof {
  overflow: hidden;
}


section.prof .bg-txt {
  color: #d7d7d7;
}

.bg-black {
  background-color: #000000cf;
  padding: 4rem 0;
  color: #fff;
}
.bg-black a {
  color: #fff;
}

/* ======================================================================
    sinjou
====================================================================== */
.sine {
  text-align: end;
  font-family: serif;
  font-weight: 600;
  font-size: var(--fontSize24);
}
.sinjou-txt {
  font-size: var(--fontSize18);
}
/* ======================================================================
	bl_supporter
====================================================================== */
.supporter{
	margin-bottom: 10rem;
}

.supporter .section-ttl{
	text-align: center;
}
.supporter .section-ttl-en{
	width: fit-content;
	margin: 0 auto;
}
.supporter .intro{
	text-align: center;
	font-size: var(--fontSize24);
	margin-bottom: 3rem;
	font-weight: initial;
}

.supporter h3{
	font-size: var(--fontSize30);
	font-weight: 600;
	text-align: center;
	position: relative;
	padding-left: 2.5rem;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 2rem;
}

.supporter h3::before{
	background-image: url(../img/mail.png);
	width: 30px;
	height: 21px;
	content: '';
	display: block;
	position:absolute;
	left: 0;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
/* カエル */
/* カエル */
#js_supporter {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 8rem;
  overflow: hidden; /* Add this to ensure the frog doesn't show before sliding in */
}

#kaeru {
  opacity: 0;
  position: absolute;
  right: 2rem;
  position: absolute;
  /* top: 0; */
  bottom: 0;
  margin: auto;
  transform: translateY(100%); /* Start completely off to the right */
  transition: opacity 1.0s ease-out, transform 1.0s ease-out; /* Add transition for smooth slide and fade */
}

/* New class for the active state */
#kaeru.is-visible {
  opacity: 1;
  transform: translateX(0); /* Move to its final position */
}

@media screen and (max-width: 1500px){
	#js_supporter {
    padding-bottom: 17rem;
}
}
@media screen and (max-width: 768px){
.btn_flex {
    gap: 1rem;
}
}
@media screen and (max-width: 576px){
	.btn_flex {
    flex-direction: column;
}
.btn_flex .btn{
	width: 100%;
}
.supporter .intro{
	font-size: 1rem;
}
.supporter h3{
	font-size: 1.1rem;
}
#js_supporter {
    padding-bottom: 10rem;
}
#kaeru {
    width: 100px;
    right: 3px;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	固定ページ共通
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ページタイトル */
.bl_page-ttl {
    height: 23rem;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bl_page-ttl:after {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 23rem;
    /* border: solid; */
    background-color: #00042926;
    z-index: -1;
}
.ja-page-ttl,.en-page-ttl{
	display: block;
}
.ja-page-ttl {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
	color: #fff;
}
.en-page-ttl{
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	color: #fff;
}
/* 記事タイトル */
.blog-title {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0;
	margin-bottom: .25rem;
}
.blog-date {
    font-size: .9rem;
    color: #454545;
	margin-bottom: .25rem;
}

/* ページタイトル */
.bl_page-ttl{
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
	  position: relative; /* 疑似要素の基準位置とするため */
}

.bl_page-ttl::before {
  content: ''; /* 疑似要素には必ず content プロパティが必要 */
  position: absolute; /* 親要素 .bl_page-ttl の絶対位置に配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 黒色で透明度50%のフィルター */
  z-index: 1; /* コンテンツの下に配置するため */
}

.bl_page-ttl h1 {
  position: relative; /* 疑似要素より前面に表示するため */
  z-index: 2;
  color: #fff; /* 文字色を見やすく白に変更 */
}

@media screen and (max-width: 576px){
	/* ページタイトル */
.bl_page-ttl {
    height: 15rem;
}
.bl_page-ttl:after {
    height: 15rem;
}
.ja-page-ttl {
    font-size: 2rem;
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > 投稿記事一覧ページ
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.bl_blog-item-wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
	 row-gap: 2.5em;
}

.bl_blog-item{
	width: calc((100% - 1.5em * 2) / 3);
    padding: 1.5rem 1rem;
}

.slick-slide.bl_blog-item{
	min-height: 460px;
    border: solid 1px #cccccc5e;
    box-shadow: 0 5px 18px -5px rgb(0 0 0 / 15%);
	margin-bottom: 1rem;
}

/* サムネイル画像のサイズ */
.bl_blog-thamb {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
	margin-bottom: .5rem;
}

.bl_blog-thamb > img{
	object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > 子ページの目次を表示する
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.st_pageList li{
	border-bottom: 2px dotted #bebebe;
}
.st_pageList li > a{
	display: block;
	position: relative;
	margin: .5rem 0;
	padding: 1rem 2rem 1rem 0;
	border-radius: 5px;
	font-size: 1.125rem;
}
.st_pageList li > a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left: 8px solid var(--accentColor);
}
.st_pageList li > a:hover{
	opacity: 1;
	background-color: #e6f3f3;
	text-decoration: none;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > 子ページの目次を2カラム表示する
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.st_pageList.st_pageList__col2{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.st_pageList.st_pageList__col2 li{
	width: calc(50% - 1rem);
}
@media screen and (max-width: 576px){
	.st_pageList.st_pageList__col2{
		display: block;
	}
	.st_pageList.st_pageList__col2 li{
		width: 100%;
	}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > プロフィールページ
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* 
.bl_historyItem{
	display: flex;
}
.bl_historyItem-head{
	padding-right: 2.4em;
	position: relative;
	margin-bottom: 0;
}
.bl_historyItem-head:before {
    content: "";
    border-top: 1px solid #006eaf;
    width: 1.2em;
    position: absolute;
    top: 2px;
    right: 0.6em;
}
.bl_historyItem-head span{
	font-size: 4.5rem;
	font-weight: 600;
	color: #ccc;
}
.bl_historyItem-txt .bl_historyItem-desc {
    font-weight: 600;
	margin-bottom: 0;
}

.bl_historyItem-txt {
	position: relative;
	margin-top: .5rem;
	padding-bottom: calc(4.0816326531vw + 34.693877551px);
}
.bl_historyItem-txt:before {
    content: "";
    border-left: 1px solid #006eaf;
    position: absolute;
    top:-5px;
    bottom: -4px;
    left: -1.2em;
}

.bl_historyItem figure{
	width: 300px;
	height: auto;
} */

/* -------------------------------- 

Primary style

-------------------------------- */
/* @import url(https://fonts.lineapis.com/css?family=Source+Sans+Pro);
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
} */ 

/* body {
  font-size: 1.6rem;
  font-family: "Source Sans Pro", sans-serif;
  color: #383838;
  background-color: #f8f8f8;
}

.events a {
  color: #37a6af;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */

        .cd-horizontal-timeline {
            opacity: 0;
            margin: 2em auto;
            -webkit-transition: opacity 0.2s;
            -moz-transition: opacity 0.2s;
            transition: opacity 0.2s;
        }
        .cd-horizontal-timeline::before {
            content: 'mobile';
            display: none;
        }
        .cd-horizontal-timeline.loaded {
            opacity: 1;
			position: relative;
        }
        .cd-horizontal-timeline .timeline {
            position: relative;
            height: 100px;
            width: 100%;
            /* max-width: 900px; */
            margin: 0 auto;
        }
        .cd-horizontal-timeline .events-wrapper {
            position: relative;
            height: 100%;
            margin: 0 40px;
            overflow: hidden;
        }
		.cd-horizontal-timeline .events-wrapper ::marker{
			display: none;
			content: none;
		}
        .cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
            content: '';
            position: absolute;
            z-index: 2;
            top: 0;
            height: 100%;
            width: 20px;
        }
		.events li ::marker{
			display: none!important;
		}
        /* .cd-horizontal-timeline .events-wrapper::before {
            left: 0;
            background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
            background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
        }
        .cd-horizontal-timeline .events-wrapper::after {
            right: 0;
            background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
            background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
        } */
        .cd-horizontal-timeline .events {
            position: absolute;
            z-index: 1;
            left: 0;
            top: 49px;
            height: 2px;
            background: #dfdfdf;
            -webkit-transition: -webkit-transform 0.4s;
            -moz-transition: -moz-transform 0.4s;
            transition: transform 0.4s;
        }
        .cd-horizontal-timeline .filling-line {
            position: absolute;
            z-index: 1;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: #37a6af;
            -webkit-transform: scaleX(0);
            -moz-transform: scaleX(0);
            -ms-transform: scaleX(0);
            -o-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -ms-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
            -webkit-transition: -webkit-transform 0.3s;
            -moz-transition: -moz-transform 0.3s;
            transition: transform 0.3s;
        }
        .cd-horizontal-timeline .events a {
			font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            position: absolute;
            bottom: 0;
            z-index: 2;
            text-align: center;
            font-size: 1rem;
            /* 年単位の表示に合わせてパディングを調整 */
            padding-bottom: 20px; /* 少し広げて、数字が線に近すぎないように */
            /* color: #383838; */
            -webkit-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -ms-transform: translateZ(0);
            -o-transform: translateZ(0);
            transform: translateZ(0);
			/* text-decoration: none; */
			width: max-content;
        }
        .cd-horizontal-timeline .events a::after {
            content: '';
            position: absolute;
            left: 50%;
            right: auto;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            bottom: -5px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            border: 2px solid #dfdfdf;
            background-color: #f8f8f8;
            -webkit-transition: background-color 0.3s, border-color 0.3s;
            -moz-transition: background-color 0.3s, border-color 0.3s;
            transition: background-color 0.3s, border-color 0.3s;
        }
        .no-touch .cd-horizontal-timeline .events a:hover::after {
            background-color: #37a6af;
            border-color: #37a6af;
        }
        .cd-horizontal-timeline .events a.selected {
            pointer-events: none;
        }
        .cd-horizontal-timeline .events a.selected::after {
            background-color: #37a6af;
            border-color: #37a6af;
        }
        .cd-horizontal-timeline .events a.older-event::after {
            border-color: #37a6af;
        }
        @media only screen and (min-width: 1100px) {
            .cd-horizontal-timeline {
                margin: 6em auto;
            }
            .cd-horizontal-timeline::before {
                content: 'desktop';
            }
        }

        .cd-timeline-navigation a {
            position: absolute;
            z-index: 1;
            top: 50%;
            bottom: auto;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            height: 34px;
            width: 34px;
            border-radius: 50%;
            border: 2px solid #dfdfdf;
            overflow: hidden;
            color: transparent;
            text-indent: 100%;
            white-space: nowrap;
            -webkit-transition: border-color 0.3s;
            -moz-transition: border-color 0.3s;
            transition: border-color 0.3s;
        }
        .cd-timeline-navigation a::after {
            content: '';
            position: absolute;
            height: 10px;
            width: 10px;
            left: 50%;
            top: 50%;
            bottom: auto;
            right: auto;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            /* この画像のパスは必要に応じて調整してください */
            background: url('../img/history/arrow.svg') no-repeat 0 0;
        }
        .cd-timeline-navigation a.prev {
            left: 0;
            -webkit-transform: translateY(-50%) rotate(180deg);
            -moz-transform: translateY(-50%) rotate(180deg);
            -ms-transform: translateY(-50%) rotate(180deg);
            -o-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
        }
        .cd-timeline-navigation a.next {
            right: 0;
        }
        .no-touch .cd-timeline-navigation a:hover {
            border-color: #37a6af;
        }
        .cd-timeline-navigation a.inactive {
            cursor: not-allowed;
        }
        .cd-timeline-navigation a.inactive::after {
            background-position: 0 -16px;
        }
        .no-touch .cd-timeline-navigation a.inactive:hover {
            border-color: #dfdfdf;
        }

        .cd-horizontal-timeline .events-content {
            position: relative;
            width: 100%;
            margin: 2em 0;
            /* overflow: hidden; */
            -webkit-transition: height 0.4s;
            -moz-transition: height 0.4s;
            transition: height 0.4s;
        }
		.events-content ::marker{
			content: none;
			display: none;
		}
        .cd-horizontal-timeline .events-content li {
            position: absolute;
            z-index: 1;
            width: 100%;
            left: 0;
            top: 0;
            -webkit-transform: translateX(-100%);
            -moz-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
            -o-transform: translateX(-100%);
            transform: translateX(-100%);
            /* padding: 0 5%; */
            opacity: 0;
            -webkit-animation-duration: 0.4s;
            -moz-animation-duration: 0.4s;
            animation-duration: 0.4s;
            -webkit-animation-timing-function: ease-in-out;
            -moz-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
        }
        .cd-horizontal-timeline .events-content li.selected {
            position: relative;
            z-index: 2;
            opacity: 1;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }
        .cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
            -webkit-animation-name: cd-enter-right;
            -moz-animation-name: cd-enter-right;
            animation-name: cd-enter-right;
        }
        .cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-name: cd-enter-left;
            -moz-animation-name: cd-enter-left;
            animation-name: cd-enter-left;
        }
        .cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-direction: reverse;
            -moz-animation-direction: reverse;
            animation-direction: reverse;
        }
        .cd-horizontal-timeline .events-content li > * {
            /* max-width: 800px; */
            margin: 0 auto;
        }

		.events-content-flex + .events-content-flex{
			margin-top: 3rem!important;
		}

		.events-content-flex:nth-of-type(even) {
    flex-direction: row-reverse;
}

		
        .cd-horizontal-timeline .events-content h2 {
            font-weight: 600;
            font-size: 2.6rem;
            font-family: "Playfair Display", serif;
            font-weight: 600;
            line-height: 1.2;
			margin-bottom: 1rem;
        }
        .cd-horizontal-timeline .events-content em {
            display: block;
            font-style:normal;
            margin: 10px auto;
			/* color: #797979; */
			/* font-weight: 600; */
        }
        .cd-horizontal-timeline .events-content em::before {
            content: '- ';
        }
        .cd-horizontal-timeline .events-content p {
            font-size: var(--fontSize20);
        }
        .cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
        font-family: serif;
        /* font-size: 1rem; */
        line-height: 2;
        }

		.events-content-flex {
         display: flex;
		 gap: 3rem;
         }

		 .events-content-flex > figure{
			width: 42%;
			height: auto;
		 }
		 	 .events-content-flex > figure img{
				width: 100%;
                 height: auto;
                 /* aspect-ratio: 3 / 2; */
			 }
			.cd-horizontal-timeline .events-content p {
				width:58%;
            }

        @media only screen and (min-width: 768px) {

            .cd-horizontal-timeline .events-content h2 {
                font-size: 2rem;
            }
            .cd-horizontal-timeline .events-content em {
                font-size:var(--fontSize20)
            }
        }

        @-webkit-keyframes cd-enter-right {
            0% {
                opacity: 0;
                -webkit-transform: translateX(100%);
            }
            100% {
                opacity: 1;
                -webkit-transform: translateX(0%);
            }
        }
        @-moz-keyframes cd-enter-right {
            0% {
                opacity: 0;
                -moz-transform: translateX(100%);
            }
            100% {
                opacity: 1;
                -moz-transform: translateX(0%);
            }
        }
        @keyframes cd-enter-right {
            0% {
                opacity: 0;
                -webkit-transform: translateX(100%);
                -moz-transform: translateX(100%);
                -ms-transform: translateX(100%);
                -o-transform: translateX(100%);
                transform: translateX(100%);
            }
            100% {
                opacity: 1;
                -webkit-transform: translateX(0%);
                -moz-transform: translateX(0%);
                -ms-transform: translateX(0%);
                -o-transform: translateX(0%);
                transform: translateX(0%);
            }
        }
        @-webkit-keyframes cd-enter-left {
            0% {
                opacity: 0;
                -webkit-transform: translateX(-100%);
            }
            100% {
                opacity: 1;
                -webkit-transform: translateX(0%);
            }
        }
        @-moz-keyframes cd-enter-left {
            0% {
                opacity: 0;
                -moz-transform: translateX(-100%);
            }
            100% {
                opacity: 1;
                -moz-transform: translateX(0%);
            }
        }
        @keyframes cd-enter-left {
            0% {
                opacity: 0;
                -webkit-transform: translateX(-100%);
                -moz-transform: translateX(-100%);
                -ms-transform: translateX(-100%);
                -o-transform: translateX(-100%);
                transform: translateX(-100%);
            }
            100% {
                opacity: 1;
                -webkit-transform: translateX(0%);
                -moz-transform: translateX(0%);
                -ms-transform: translateX(0%);
                -o-transform: translateX(0%);
                transform: translateX(0%);
            }


        }

	/* 背景文字 */
	.bg-txt{
	/* font-size: 22rem; */
	font-size: clamp(7rem, 20vw, 22rem);
    position: absolute;
    top: -120px;
    z-index: -68;
    color: #0000000a;
    font-weight: 600;
    font-family: math;
    letter-spacing: -20px;
	}
@media screen and (max-width: 768px){

	.bg-txt{
        letter-spacing: -8px;
        left: -10px;
	}

.events-content-flex {
  flex-direction: column;
}

 .events-content-flex > figure,.cd-horizontal-timeline .events-content p {
  width: 100%;
 }
 .events-content-flex > figure
 {
    max-width: 400px;
    margin: 0 auto;
}

 .cd-horizontal-timeline .events-content p{
		font-size: 1rem;
}
.cd-horizontal-timeline .events-content h2{
		font-size:1.5rem;
}
.bl_policy-list p {
    font-size: 1rem;
}


}


/* ******************************************************************************************
	page-profile.php
****************************************************************************************** */

.keireki-timeline {
	margin: 0 auto;
	position: relative;
	padding: 2rem 1rem;
}

/* タイムラインの縦線 */
.keireki-timeline ul {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.keireki-timeline ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10px;
	width: 2px;
	height: 100%;
	background-color: #ccc;
}

/* 各項目 */
.keireki-timeline li {
	padding-left: 50px;
	position: relative;
	margin-bottom: 2.75rem;
}


/* 丸い点 */
.keireki-timeline li::before {
content: '';
    position: absolute;
    top: 5px;
    left: 1px;
    width: 20px;
    height: 20px;
    background-color: #3d848a;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 1;
}

/* テキストコンテンツの塊 */
.keireki-timeline-content {
	background-color: #fff;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.keireki-timeline-date {
	font-weight: 600;
	color: #3d848a;
	margin-bottom: 5px;
	font-size: var(--fontSize20);
    width: 9rem;
}

.keireki-timeline-details{
	width: calc(100% - 9rem);
}

.keireki-details-wrap {
	display: flex;
	gap: 1rem;
}

.ly_section.bg-gray {
    background-color: #f1f1f1;
}

.keireki-list p,.gakureki-list p{
font-size: var(--fontSize20);
font-family: serif;
}

.keireki-timeline-wrap{
	padding-top:2em;
}

@media screen and (max-width: 576px){
	.keireki-timeline li {
    padding-left: 40px;
}
.keireki-details-wrap {
    flex-direction: column;
	gap: 0;
}
.keireki-timeline-date,.keireki-timeline-details{
	width: 100%;
}
.keireki-timeline-date,.keireki-list p, .gakureki-list p {
    font-size:1rem;
    font-family: serif;
}
}


/* ******************************************************************************************
	パーツ > ページャー
****************************************************************************************** */
.bl_pager{
	display: flex;
	justify-content: space-between;
	margin-top: calc(1.5rem + 5rem);/* editor相殺分 + 余白 */
}
.bl_pager_prev, .bl_pager_next{
	width: calc(50% - 1rem);
}
.bl_pager_prev a, .bl_pager_next a{
	display: block;
	position: relative;
	margin: 0 auto;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border: 1px solid var(--black);
	border-radius: 5px;
	color: var(--black);
	text-decoration: none;
}
.bl_pager_prev a:before, .bl_pager_next a:before{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	color: var(--black);
}
.bl_pager_prev a{
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: 1.25rem;
	padding-left: 2.5rem;
}
.bl_pager_next a{
	padding-right: 2.5rem;
	padding-left: 1.25rem;
}
/*左向き, 右向きの矢印*/
.bl_pager_prev a, .bl_pager_next a{
	position: relative;
}
.bl_pager_prev a:before, .bl_pager_next a:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	transition: .3s;
	width: 13px;
	height: 13px;
	margin: auto;
	border-top: 2px solid var(--black);
	border-right: 2px solid var(--black);
}
/*左向きの矢印*/
.bl_pager_prev a:before{
	right: auto;
	left: 1rem;
	transform: rotate(-135deg);
}
/*右向きの矢印*/
.bl_pager_next a:before{
	right: 1rem;
	left: auto;
	transform: rotate(45deg);
}

@media (max-width:768px){
	.bl_pager{
		display: block;
	}
	.bl_pager_prev, .bl_pager_next{
		width: 100%;
	}
	.bl_pager_prev + .bl_pager_next{
		margin-top: 1rem;
	}
}
/* ******************************************************************************************
	404ページ
****************************************************************************************** */
.st_editor .el_errorUrl{
	padding: 10px 0;
	border-bottom: 3px solid var(--mainColor);
	font-size: 1.1rem;
	letter-spacing: 2px;
}
.st_editor .el_errorUrl:before{
	content: "\f138";
	padding-right: 10px;
	color: var(--mainColor);
	font-weight: 600;
	font-size: 1rem;
	font-family: "Font Awesome 5 Free";
}
.st_editor .bl_errorList li::marker{
	color: var(--mainColor);
	font-size: 1.125rem;
}