/*
Theme Name: lightning_child 
Theme URI: ★ テーマの公式サイトなどのURL（空欄でも可） ★
Template: lightning
Description: ★ テーマの説明（空欄でも可） ★
Author: ★ テーマ作成者の名前（空欄でも可） ★
Tags: 
Version: 0.5.1
*/

@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .slide-text-title {
    font-size: 3.5em;
    font-weight: bold;
    font-style: italic;
    font-family: Times New Roman, "ＭＳ Ｐゴシック";
    letter-spacing: 0.1em;
    margin-left: -20px;
    line-height: 1.2em;
    margin-top: 20px;
  }
		.slide-text-caption {
		font-size:1.2em;
	}
}
@media (max-width: 767px) {
  .slide-text-title {
    font-size: 2.2em; /* スマホで大きく強調 */
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: -1em; /* 上に移動 */
    line-height: 1.1em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }

  .slide-text-caption {
    font-size: 1.5em;
    line-height: 1.2em;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: -20px; /* タイトルより少し下 */
  }


}


/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.concept_title {
  font-size: 2.2em;
  font-family:"Hiragino Kaku Gothic ProN", 'Noto Sans JP', sans-serif;

  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 10px 0 10px 0;
}
.concept_title2 {
  font-size: 1.6em;
  font-family: Times New Roman, "ＭＳ Ｐゴシック";
  font-weight: bold;
  letter-spacing: 0em;
  margin: 10px 0 10px 0;
}
.concept_title3 {
  font-size: 1em;
  font-family: Times New Roman, "ＭＳ Ｐゴシック";
  font-weight: bold;
  letter-spacing: 0em;
  margin: 10px 0 10px 0;
}

@media (max-width: 767px) {
  .concept_title,
  .concept_title2 {
    font-size: 2em;
    letter-spacing: 0em;
    font-family: "Hiragino Kaku Gothic ProN", 'Noto Sans JP', sans-serif, "ＭＳ Ｐゴシック";
  }
}


img {
  border-radius: 20px;
}
#videoPopup {
  display: none; /* 初期状態では非表示 */
  position: fixed; /* 画面の中央に表示 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* 幅は画面の80% */
  max-width: 640px; /* 最大幅を指定 */
  background-color: #fff; /* 背景色 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影を追加 */
  z-index: 1000; /* 他の要素より前面に表示 */
}
#videoPopup.show {
  display: block; /* 表示状態 */
}
#closePopup {
  position: absolute; /* 閉じるボタンの位置を右上に固定 */
  top: 10px;
  right: 10px;
  cursor: pointer; /* ホバー時にカーソルをポインターに変更 */
}
.hedlogp2 {
  display: none;
  float: left;
  width: 11em;
  margin-top: 5px;
  margin-left: 5em;
}
body.header_scrolled .hedlogp2 {
  display: block;
}
.page-header {
  display: none;
}
.four-column {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.four-column .column {
  flex: 1 1 22%; /* 4列で25%未満＋隙間考慮 */
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: center;
}
.four-column .column img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .four-column .column {
    flex: 1 1 45%; /* タブレットで2列 */
  }
}
@media screen and (max-width: 600px) {
  .four-column .column {
    flex: 1 1 100%; /* スマホで1列 */
  }
}
.six-column {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
.six-column .column {
  flex: 1 1 15%; /* 6列分に余白を含めて15%程度 */
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  box-sizing: border-box;
  text-align: center;
}
.six-column .column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .six-column .column {
    flex: 1 1 30%; /* タブレットで3列 */
  }
}
@media screen and (max-width: 600px) {
  .six-column .column {
    flex: 1 1 100%; /* スマホで1列 */
  }
}

  dl {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin: 0;
  }

  dt {
    font-weight: bold;
    margin-bottom: 5px;
  }

  dd {
    margin-left: 0;
    margin-bottom: 10px;
  }
@media (max-width: 767px) {
  .su-button {
    display: block;
    width: 100%;
    font-size: 30px !important;
	font-weight:bold;
    line-height: 1.6em;
    text-align: center;
    color: #fff !important;
    background-color: #ff8000 !important;
    border-radius: 100px;
    border: none;
    box-shadow: none;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    margin: 20px auto; /* 上下余白・左右中央寄せ */
    padding: 0;
    box-sizing: border-box;
  }
}


.column {
  flex: 1 1 48%;
  box-sizing: border-box;
}

/* スマホなど画面幅が600px以下の場合は1列にする */
@media (max-width: 600px) {
  .column {
    flex-basis: 100%;
  }
}

#openPopup {
  background-color: #ff8000;   /* オレンジ */
  color: #fff;                 /* 白文字 */
  font-size: 20px;             /* 大きめの文字サイズ */
  padding: 15px 60px;          /* ゆったりしたボタンサイズ */
  border: none;                /* 枠なし */
  border-radius: 8px;          /* 角を丸く */
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

#openPopup:hover {
  background-color: #e67300;   /* ホバー時に少し濃く */
}


@media (max-width: 1199.98px) {
    .siteHeader_logo img {
        margin-bottom: 0.5em;
			margin-top: 0.5em;
    }
}
a:hover{
	color:#337ab7;
}

.video_wrapper .heading{
  margin: 0;
  padding: 0;  
  position: absolute;
  left: 20px;
  top: 400px;
  z-index:1;
  color:#FFF;
  font-size: 300%;
  font-weight : bold;
}
/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox{
  width: auto;
  font-size:10px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0 10px; /* ボックス全体の位置調整 */
}

.acbox label{
  width: auto;
  height: 60px;
  font-size: 20px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #8BC34A; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px 8px 8px 8px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #fff;
　vertical-align: middle;
clear: both;
border-bottom: solid #FFF;

}

.acbox label img {
	float: left;
	margin-right: 10px;
}


.acbox label:hover{
  background: #8BC34A; /* ラベルにマウスを乗せた時の背景色 */
}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"クリックで開く▼"; /* ラベルのアイコン */
  position: absolute;
  top: 20%;
  right: 15px;
  margin-top: 20px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #F3F4F5; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #8BC34A; /* クリック後のラベルの背景色 */
}

.acbox-under{
  font-size: 15px; /* 開いた部分の文字サイズ */
  color: #555555; /* 開いた部分の文字色 */
}

.daihyo_copy {
	font-size : 1.3em;
	line-height : 160%;
}
.red_strong {
	font-size : 1.3em;
	line-height : 140%;
	color : red;
}

.saiyo_title{
	font-size : 1.5em;
	line-height: 140%;
	font-weight : bold;
	margin : 30px 0 0 0 ;
}

.items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}

#item4 {
	box-sizing: border-box;
	margin: 20px 0 0 0;
	padding: 5px 0 10px 10px;
	width: 25%;
	text-align: center;
	font-size: 0.8em;
	line-height: 1.1em;
}

#item4 img {
	margin-bottom: 20px;
}

a.anchor {
	display: block;
	padding-top: 70px;
	margin-top: -70px;
}

.items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}

.item2 {
	box-sizing: border-box;
	margin: 0;
	padding: 0 30px 20px 0;
	width: 48%;
	text-align: left;
}
.item2 img {
	margin-bottom: 10px;
}

.supporter-title{
  background:#d8c25c; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	margin-bottom:20px;
	text-align:center;
	line-height: 125%;
	}

.sub-title{
	font-weight:500;
	font-size:23px;
	margin:20px 0;
}
.colorful-title {
	font-weight:500;
	font-size:36px;
	margin:20px 0;
	text-align: center;
	line-height: 140%;
}
.colorful-r {
	color:#e2044d;
}
.colorful-b {
	color: #33F;
}
.colorful-g {
	color: #093;
}
.colorful-c {
	color: #d7711e;
}

.what-sapone {
	font-size: 1.2em;
	text-align: center;
}

.box-title {
    position: relative;
    padding: 0.7em 0.7em;
    margin: 2em 0;
    background: #75a75f;
    color: #fff;
    font-weight: bold;
	line-height: 120%;
}
.box-title:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #75a75f;
    width: 0;
    height: 0;
}
.box-title p {
    margin: 0;
    padding: 0;
	  font-size:25px;
	  	line-height: 120%;
}




.college-title{
  background:#59beb4; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	margin:20px 0 ;
	text-align:center;
}
.life-title{
	background:#55bb91; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	margin:20px 0 ;
	text-align:center;
}

.saponehouse-title{
  background:#72b771; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	margin:20px 0;
	text-align:center;
	}

.sub-title2{
	font-weight:500;
	font-size:30px;
	margin:30px 0 0 0;
	line-height: 120%;
	}

.house{
	background:#f7f2ca;
	padding:10px 20px;
}

.maps{
	background:#f7f5e6;
	padding:20px;
	display: flex;
	flex-wrap: wrap;
	
}

.map{
	width: 55%;
	height:55%;
	padding:10px;

}

.gaiyo{
	margin-top:40px;
}

.net-title{
	background:#b88956; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	margin:20px 0;
	text-align:center;
}
.event-title{
	background:#31afbb; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	margin:20px 0;
	text-align:center;
}

.staff-title{
	background:#d8c25c; 
	padding:25px; 
	border:1px ; 
	border-radius:10px;
	color:#fff;
	font-size:35px;
	font-weight:bold;
	margin-bottom:20px;
	text-align:center;
	text-align:center;
}
 

.staff li{
	list-style: none;
}

.strong 
{
	font-size:18px;
	font-weight: bold;
}

.isikuras{
	margin:5em 0;
}

.takagis{
	margin:5em 0;
}

.furunos{
	margin:5em 0;
}

.setos{
	margin:5em 0;
}

.furutas{
	margin:5em 0;
}




.isikuras .chatting {
  width: 100%;
  text-align: left;
}
.says {
  display: inline-block;
  position: relative; 
  margin: 0 0 0 10px;
  padding: 10px;
  max-width: 650px;
  border-radius: 12px;
  background: #f9f9e1;
  width:90%;
}


.says p {
  margin: 0;
  padding: 0;
}

/* 全幅 */
div.wide-wrap{
position:relative;
margin:0 calc(50% - 50vw);
overflow:hidden;
}


/* シンプルな全幅見出し */
#wide-wrap1{
background-color:#f7db8e;
color:#fff;
text-shadow:1px 1px 1px #ffb7ca;
padding:1em 0;
}


/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
@media(max-width:500px){
.inquiry th,.inquiry td {
 display:block!important;
 width:100%!important;
 border-top:none!important;
 -webkit-box-sizing:border-box!important;
 -moz-box-sizing:border-box!important;
 box-sizing:border-box!important;
}
.inquiry tr:first-child th{
 border-top:1px solid #d7d7d7!important;
}
/* 必須・任意のサイズ調整 */	
.inquiry .haveto,.inquiry .any {	
font-size:10px;
}
.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 20%;
  right: 15px;
  margin-top: 20px;
}
.acbox label{
  width: auto;
  height: 60px;
  font-size: 16px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #8BC34A; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px 8px 8px 8px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #fff;
　vertical-align:top;
clear: both;
border-bottom: solid #FFF;

}

#item4 img {
	margin-bottom: 10px;
}


.item2 {
	box-sizing: border-box;
	margin: 0;
	padding: 0 0 20px 0;
	width: 100%;
	text-align: left;
}
.item2 img {
	margin-bottom: 20px;
}

.post-title {
	font-size: 30px;
	font-weight: bold;
}

}
/*見出し欄*/
.inquiry th {
 text-align:left;
 font-size:14px;
 color:#444;
 padding-right:5px;
 width:30%;
 background:#f7f7f7;
 border:solid 1px #d7d7d7;
}

/*通常欄*/
.inquiry td{
 font-size:13px;
 border:solid 1px #d7d7d7;	
}
/*横の行とテーブル全体*/
.entry-content .inquiry tr,.entry-content table{
 border:solid 1px #d7d7d7;	
}
/*必須の調整*/
.haveto{
 font-size:7px;
 padding:5px;
 background:#ff9393;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:1px;
}
/*任意の調整*/
.any{
 font-size:7px;
 padding:5px;
 background:#93c9ff;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:1px;
}
/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item{
 display:block;
}
/*送信ボタンのデザイン変更*/
#formbtn{
 display: block;
 padding:1em 0;
 margin-top:30px;
 width:100%;
 background:#ffaa56;
 color:#fff;
 font-size:18px;
 font-weight:bold;	 
 border-radius:2px;
 border: none;
}
/*送信ボタンマウスホバー時*/
#formbtn:hover{
 background:#fff;
 color:#ffaa56;
}
.nav-wrap li {
	font-size : 1.3em;
}

.daihyo_copy {
	background-color: #faf4e1;
	padding : 10px;
	margin-bottom : 20px;
}
@media screen and (min-width:1024px) {
h1.post-title {
	font-size: 56px;
	text-align: center;
	font-weight: 700;
	margin: -15px 0 -5px 0;
}

#smart-logo img {
	max-height: 76px;
}
}
@media screen and (max-width:640px){
.pconly {
	display:none;
}
}

div.wide-wrap-bg-yellow{
	background-color: lightyellow;
	padding: 20px;
position:relative;
margin:0 calc(50% - 50vw);
overflow:hidden;
}


.textwidget {
	margin: 0 1em 0 1em;
	line-height: 1.4em;
	font-size: 1.2em;
	
}


