﻿@charset "UTF-8";
/* CSS Document */
.space_l_10px{
	margin-left: 10px;
}
.space_r_10px{
	margin-right: 10px;
}
/*---------------------------------------------
リンクボタン　（可変）
--------------------------------------------*/
.tenrankai_btn_kahen{
	/*min-width: 200px;*/
	text-decoration: none;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 4px;
  padding: 3px 4px;
	border: solid 1px;
		color: #44A01B;
}
.tenrankai_btn_kahen:hover{
	 color: #ffffff;
	background-color:#90CB76;
}
/*---------------------------------------------
画像スライダー横　　まちの風景で使用
--------------------------------------------*/
.tenrankai_l_r_flex .carousel_waku{
  width: 100%;
  max-width: 400px;
    height: 100%;
	margin-bottom: 20px;
        border: solid 1px #D6D1D1;
}

.tenrankai_l_r_flex .carousel_waku img {
  width: 100%;
  max-width: 400px;
}
/* カルーセルの外枠 */
.carousel {
  /*width: 400px;*/
  /*height: 600px;*/
  display: flex;    /* 子要素を横に並べる */
  overflow: hidden; /* はみ出た部分は表示しない */
  margin: 0 auto;   /* 水平方向中央寄せ */

}
/* カルーセル内の画像 */
.carousel img {

  margin: 0;
  padding: 0;
  display: block; /* imgタグの改行のすき間を消すため */
}
/* スクロールアニメーションのキーフレーム */
@keyframes scroll {
  /* 初期位置は1個目の画像が左端 */
  0% { margin-left: 0; }      
  /* 1個分左の位置に進めて2個目の画像を左端にする */
  20% { margin-left: -100%; }
  /* 少しの間上と同じ位置 */  
  25% { margin-left: -100%; }
  /* 2個分左の位置に進めて3個目の画像を左端にする */
  45% { margin-left: -200%; }
  /* 少しの間上と同じ位置 */  
  50% { margin-left: -200%; }
  /* 以降は上と同様に繰り返し */
  70% { margin-left: -300%; }
  75% { margin-left: -300%; }
  95% { margin-left: -400%; }
  100% { margin-left: -400%; }
}
/* カルーセルの子要素にスクロールアニメーションを設定 */
.carousel > :first-child {
  animation-name: scroll;    /* キーフレーム名 */
  animation-duration: 40s;  /* 再生時間全体は20秒 */
  animation-delay: 0s;      /* 読込直後から遅延無しで開始 */
  animation-iteration-count: infinite;  /* 無限に繰り返す */
}
/* =============================================
展覧会詳細ページ  企画はkikaku.css

============================================== */
/*1展覧会の枠*/
section.tenrankai_waku {
  width: 100%;
	max-width: 1200px;
  margin-top:20px;
  margin-bottom: 30px;
  padding: 20px 60px 0px 60px;
  box-sizing: border-box;
  border: solid 1px #79C5CB;
}
@media (max-width: 749px){
	/*1展覧会の枠*/
section.tenrankai_waku {
padding: 0px 0px;
	  box-sizing: border-box;
	border: solid 0px #79C5CB;
}
	}
/*------------------------------------------------
開催中、予告、料金
----------------------------------------------------*/
.tenrankai_waku .kikan_fee {
	font-size: 0.6rem;
	line-height: 0.8rem;
  text-align: center;
  /*width: 60px;*/
  margin-bottom: 12px;
  padding: 3px 10px;
  box-sizing: border-box;
  border: solid 1px #F1463B;
}
.tenrankai_waku .kikan_fee {
  display: inline-block;
}
/*--------------------------------------------
展覧会名
-----------------------------------------------*/
/*展覧会名小*/
.tenrankai_waku .tenrankai_waku_title_s {
  font-size: 1.0rem;
  line-height: 1.2rem;
  /*font-weight: bold;*/
  margin-bottom: 4px;
	margin-top: 4px;
}
/*展覧会名大*/
.tenrankai_waku .tenrankai_waku_title {
  font-size: 1.6rem;
  line-height: 1.8rem;
  text-align: left;
  border: solid 0px;
}
/*緑の●*/
.tenrankai_waku .title span {
  display: inline-block;
}
@media (max-width: 749px){
/*展覧会名小*/
.tenrankai_waku .tenrankai_waku_title_s {
  font-size: 1.0rem;
  line-height: 1.2rem;
  /*font-weight: bold;*/
  margin-bottom: 3px;
}
	/*展覧会名大*/
.tenrankai_waku .tenrankai_waku_title {
  font-size: 1.2rem;
  line-height: 1.4rem;
}
}
/*-------------------------------------------------------------
詳細（左　画像　　右内容）
---------------------------------------------------------------*/
.tenrankai_l_r_flex {
  width: 100%;
		font-size: 0.9rem;
	line-height: 1.4rem;
  display: flex;
  /*justify-content: center;*/ /*左右中央*/
  justify-content: flex-start; /*左寄せ*/
  margin-top: 30px;
  border: solid 0px;
}
@media (max-width: 749px){
	.tenrankai_l_r_flex{
		flex-direction: column;
	}
}
/* ----画像　縦長サイズ（通常）と横長サイズ----- */
/*----画像枠1点の場合w400縦長サイズ--------*/
.tenrankai_l_r_flex .photo_waku {
  width: 100%;
  max-width: 400px;
	margin-bottom: 20px;
}
.tenrankai_l_r_flex .photo_waku img {
  width: 100%;
  max-width: 400px;
  border: solid 1px #D6D1D1;
}
/*  --内容
    -------------------------------------------------------*/
/*行の並び------------*/
.tenrankai_l_r_flex .detail_data {
  margin-left: 5%;
  width: flex;
  /*font-size: 1.0rem;
  line-height: 30px;*/
  border: solid 0px;
}
@media (max-width: 749px){
	.tenrankai_l_r_flex .detail_data {
		  margin-left: 0%;
	}
}
/*===================================================
　ページ説明
================================================== */

.tenrankai_l_r_flex .reed_area { /*テキスト */

  width: 100%;
  max-width: 700px;
  margin-top: 0px;
  margin-bottom: 50px;
  text-align: justify;
	border: solid 0px;
}
/*-------------------------------------
説明文下で注釈を入れる
波線と文字
<p class="dashed_2p"><span>半原版画館コレクションとは</span></p>
2025_08.cfm（展覧会）で使用
-------------------------------------*/
.setsumei_dashed_2p{
	border-bottom:dashed 2px #C8C2C2;
	padding-bottom: 3px;/*文字の下を開ける*/
	margin: 20px 0 6px 0;
}
/********************************************
詳細表示（関連イベント）
********************************************/
/*左項目と右テキスト*/ /*天池中央*/
.tenrankai_l_r_flex .item_flex,
.tenrankai_l_r_flex .item_flex_middle{
  display: flex;
 align-items: center;
  margin-bottom: 10px;
  border: solid 0px;
}
@media (max-width: 749px){
    .tenrankai_l_r_flex .item_flex{
     align-items: flex-start;    
    }    
   
}
/*左項目と右テキスト*/ /*上揃え*/
.tenrankai_l_r_flex .item_flex_ue {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  border: solid 0px;

}


/*項目囲み*/
.tenrankai_l_r_flex .item_flex .kakomi_flex,
.tenrankai_l_r_flex .item_flex_ue .kakomi_flex,
.tenrankai_l_r_flex .item_flex_middle .kakomi_flex{
  display: flex;
  justify-content: space-between;
  width: 80px;min-width: 80px;
  padding: 6px 6px;
  box-sizing: border-box;
  margin-right: 10px;
  border: solid 1px #82B140;
}
/*右のテキスト*/
.tenrankai_l_r_flex .item_flex .right_txt, .tenrankai_l_r_flex .item_flex_ue .right_txt,
.tenrankai_l_r_flex .item_flex_middle .right_txt{
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
  flex: 1; /*自動調整*/
  /*vertical-align: middle;*/
  border: solid 0px;
}


/*=======================================

特別な案内（出品のお申し込み　美濃加茂市美術展　)

======================================== */
section.setsumei {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 100px auto;
  font-size: min(3.5vw, 1.0rem);
  line-height: 1.2rem;
  text-justify: inter-ideograph; /* IEで必要 */
  text-justify: inter-character; /* Firefoxで必要 */
  text-align: justify;
}
/*タイトル*/
section.setsumei .line_title {
  font-size: min(5vw,1.2rem);
  border-bottom: solid 1px #B22125;
  border-left: solid 8px #B22125;
  padding: 2px 0 4px 10px;
  box-sizing: border-box;
}
section.setsumei .lead {
  color: #B22125;
  padding: 10px 0;
}
/*---------------------------------------------

左　項目　右内容

----------------------------------------------*/
/*日時などの並び（天池中央）
----------------------------------------------*/
/*左項目と右テキスト*/ /*天池中央*/
section.setsumei .item_flex {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: solid 0px;
}
@media (max-width: 1100px){
section.setsumei .item_flex{
     align-items: flex-start;    
    }    
   
}
/*左項目と右テキスト*/ /*上揃え*/
section.setsumei .item_flex_ue {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  border: solid 0px;
}


/*項目囲み*/
section.setsumei .item_flex .kakomi_flex, section.setsumei 　.item_flex_ue .kakomi_flex {
  display: flex;
  justify-content: space-between;
  width: 80px;min-width: 80px;
  padding: 6px 6px;
  box-sizing: border-box;
  margin-right: 10px;
  border: solid 1px #82B140;
}
/*右のテキスト*/
section.setsumei .item_flex .right_txt, section.setsumei 　  .item_flex_ue .right_txt  {
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
  flex: 1; /*自動調整*/
  /*vertical-align: middle;*/
  border: solid 0px;
}
/*申し込みボタン
--------------------------*/
section.setsumei a{
	text-decoration: none;
}
section.setsumei .link_btn{
  display: inline-block;
  background-image: none;
  /*margin-top: 20px;*/
  padding: .4em 0.6em;
  border-radius: 4px;
  /*margin: 0.2em 0;*/
  /*background-color: #4CAF50;*/
  border: solid 1px #54BF66;
  /*border: none;*/
  color: #000000;
  text-decoration: none;
	font-size: 0.8rem;
  cursor: pointer;
  position: relative;
  transition: 0.5s; /*hover処理の時間*/
}
section.setsumei .link_btn:hover, section.setsumei .link_btn:focus {
  /*outline: none;*/
  color: #ffffff;
  background-color: #5AB4BD;
}
section.setsumei .link_btn::-moz-foucus-inner{
  padding: 0;
  /*border: none;*/
}







/* =====================================================================*/

/* スマホ用***************** */
@media (max-width: 749px){

	

}
/* タブレット用 ***************** */
@media (min-width: 750px) and (max-width: 1023px) {
  /*枠---------------------------------------*/
}
/* Desktop ***************** */
@media (min-width: 1024px) {}