@charset "utf-8";
/*-------------------------------------------------------------------
	IDENTIFICATION DIVISION.
	Version.								1.4.1.2;
	PROGRAM-ID.								"news"
-------------------------------------------------------------------*/

/*****************************************************
	DATA DIVISION.
	WORKING-STRAGE SECTION.
*****************************************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*───────────────────────────────────────────────────
 common
───────────────────────────────────────────────────*/

.txt-right{
    text-align:right;
}
.txt-center{
    text-align:center;
}

.pager{
    padding:2em;
    box-sizing:border-box;
    border:1px solid #eee;
    text-align:center;
}


.detail #main .body{
    margin-bottom:3em;
}

.detail #main .body p img{
    max-width:100%;
}

#wrapper #main,
#main .contents_area{
    box-sizing:border-box;
}

#main .section{
    margin-bottom:3em;
    box-sizing:border-box;
}

#main .section h2{
    background:none;
    text-align:center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight:600;
}



.section ul,
.section ol,
.section dd{margin:0;padding:0;}
.section li{
    margin:0;
    padding:0;
    list-style-type:none;
}

#main ul.note.rice li{
    padding-left:1.2em;
    text-indent:-1.2em;
    font-size:86%;
}
#main ul.note.rice li::before{
    content:"※";
    padding-right:0.2em;
}


#list.section{
    margin-bottom:5em;
    box-sizing:border-box;
}


#list dl{
    margin-bottom:2em;
    padding-bottom:1.8em;
    font-size:0.85rem;
    border-bottom:1px dotted #696969;

}
#list dl dt{
    font-weight:bold;
    font-size:1.4rem;
    margin-bottom:0.6em;
    font-family: 'Noto Serif JP', serif;
    letter-spacing:0.1em;
}
#list dl dt:not(first-child){
    margin-top:2em;
}

#list dl dd{
    position:relative;
    box-sizing:border-box;
}

#list dl ul{

}
#list dl ul li{
    padding-left:6.5em;
}
#list dl ul li:not(:first-child){
    margin-top:1.5em;
}

#list dl ul li::before{
    content:attr(data-type);
    display:inline-block;
    position:absolute;
    width: 7.5em;
    left:0;
    box-sizing:border-box;
}


/* 画像 *****/
.image img{
    max-width:100%;
}

.image.list{
    display:flex;
    justify-content:space-between;
    gap:2%;
    margin:2em 0;
    box-sizing:border-box;
}

/* title *****/
#main .section h3{
    margin:0;
    margin-bottom:16px;
    background:none;
    font-family: "Noto Sans JP", sans-serif;
    font-weight:600;
    font-size:180%;
    color:#244c83;
    width: fit-content;
	background-image: linear-gradient(rgba(0,0,0,0) 70%, rgb(255,237,78) 70%);
}

#main .division{
    margin-bottom:3em;
}

#main .division ul h4{
    margin:0;
    padding:0;
    background:none;
    font-family: "Noto Sans JP", sans-serif;
}



/*───────────────────────────────────────────────────
 kittania2025
───────────────────────────────────────────────────*/

.notice span{
    background:#b69017;
    color:#fff;
    font-size:0.7rem;
    display:inline-block;
    padding:0.1em 0.5em;
    border-radius:4px;
}

/*───────────────────────────────────────────────────
 leaflet
───────────────────────────────────────────────────*/

#leaflet ul{
    display:flex;
    justify-content:space-between;
}

#leaflet ul li{
    width:49%;
}
#leaflet ul li img{
    width:100%;
}


/*───────────────────────────────────────────────────
 exp
───────────────────────────────────────────────────*/

#main .section #exp h3{
    margin-bottom:6px;
}

#exp .btn{
    margin-bottom:2em;
    font-family: "Noto Sans JP", sans-serif;
    text-align:center;
}

#exp .btn a{
    position: relative;
    z-index:1;
    display:inline-block;
    box-sizing:border-box;
    padding: 14px 20px;
    color:#b69017;
    font-weight:bold;
    font-size:110%;
    letter-spacing:2px;
    text-decoration:none;
    width:250px;
    overflow: hidden;
    transition: .3s;
    background:#e5e5da;
    border-radius:25px;
}


#exp .btn a::before {
    content: '';
    width: 50px;
    height: 50px;
    background-color: #b69017;
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .4s;
    z-index: -1;
}

#exp .btn a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

#exp .btn a:hover{
  color:#fff;
}
#exp .btn a:hover::before {
  width: 100%;
}


#exp .note{
    padding:1.5em;
    font-size:108%;
    box-sizing:border-box;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);
    border-radius:6px;
    font-family: "Noto Sans JP", sans-serif;
}
#exp .note dt{
    margin-bottom:0.5em;
    font-size:108%;
    font-weight:600;
    color:#244c83;
    letter-spacing:0.2em;
}
#exp .note :last-child{
    margin-bottom:0;
}


#exp p.image{
    float:right;
    margin-left:20px;
    width:25%;
}

#exp p.image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit: cover;
    border-radius:50%;
}


/* scroll ***/
#exp .infinite-scroll {
    box-sizing:border-box;
    display: flex;
    width: 100%;
    overflow: hidden;
}

#exp .infinite-scroll__container {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;

}

#exp .infinite-scroll__img-wrap {
  flex-shrink: 0;
  height: auto;
}
#exp .infinite-scroll__img-wrap img{width:100%;border-radius:6px;}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

#exp .infinite-scroll__container:first-child {
  animation: loop 80s -40s linear infinite;
}

#exp .infinite-scroll__container:last-child {
  animation: loop2 80s linear infinite;
}


/*───────────────────────────────────────────────────
 act
───────────────────────────────────────────────────*/
#act li{
    display:flex;
    align-items: center;
    gap:2em;
}

#act li p.image{

}
#act li img{
    border-radius:6px;
}

#act li h4{
    font-size:116%;
}

#act li div{
    width:75%;
}


/*───────────────────────────────────────────────────
 marche
───────────────────────────────────────────────────*/
#marche ul{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    row-gap:1em;
}

#marche ul li{
    width:calc(50% - 10px);
    text-align:center;
}
#marche ul li img{
    border-radius:8px;
}

