@charset "UTF-8";
html {
  scroll-behavior: smooth;
}



/* 共通スタイル */
#page-top {
    font-size: 1.5rem;
    font-weight: bold;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e7f07b;
    border-radius: 50%;
    width: 60px; /* 幅を固定 */
    height: 60px; /* 高さを固定 */
    cursor: pointer;
    transition: opacity 0.5s;
    z-index: 8888888;

    /* Flexboxで文字を中央揃え */
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    text-align: center; /* テキストの中央揃え */
}

#page-top a {
    text-decoration: none; /* 下線を削除 */
    color: #4D4D4D; /* 文字色 */
	font-size: 1.2rem;
}

#page-top a:visited {
    color: #4D4D4D; /* 訪問済みリンクの色 */
    text-decoration: none; /* 下線を削除 */
}

@media (max-width: 900px) {
    #page-top {
        font-size: 1rem;
        width: 50px; /* モバイル用の幅 */
        height: 50px; /* モバイル用の高さ */
    }
}



/*アイコン*/
.contents {
	max-width: 800px;
	width: 60%;
	justify-content: center;
	margin: 50px auto 0;
    display: flex;
	flex-wrap: wrap;
}
@media (max-width: 900px){
	.contents{
		width: 90%;
	}
}
.contents a{
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	
}


.contents_icon{
	margin: 0 20px 40px;
	width: 150px;
	height: 150px;
	border: solid;
	border-color: #BABABA;
	border-radius: 20px;
}
.contents_icon:hover{
border-color: #e7f07b;
}
.contents_icon img{
	padding-top:10px;
}

@media (max-width: 900px){
    .contents_icon {
        width: calc(50% - 40px); /* 2列にするための幅調整 */
        margin-right: 20px; /* アイコン間の間隔 */
        margin-bottom: 20px; /* 行間の間隔 */
    }
}

/*コンテンツの共通レイアウト部分*/

/* Safariで三角マークを非表示にする */
details[name="c-accordion"] > summary::-webkit-details-marker {
    display: none;
}
details[name="c-accordion"]{
	border:solid;
	border-color: #BABABA;
	border-radius: 20px;
	padding: 20px;
	width: 80%;
	max-width: 1000px;
	margin: 20px auto;
}
details[name="c-accordion"]:hover{
	border-color: #e7f07b;
}
.c-accordion_ttl{
	 display: flex;
    align-items: center; /* 垂直方向中央揃え */
    cursor: pointer; /* カーソルをポインターに */
    width: 100%; /* 横幅いっぱいに設定 */
    padding: 20px 0; /* クリック範囲を上下に広げる */
	
}
.c-accordion_ttl img{
	margin-left: 30px;
	height: 100px;
	width: 100px;
}
.c-accordion_text{
	width: 83%;
	margin-left: 40px;
}
.c-accordion_text h2{
	font-size: 1.3rem;
	line-height: 1.5rem;
	text-align: left;
}
.c-accordion_text p{
	font-size: 1rem;
	text-align: left;
	line-height: 1.3rem;
}
/* summary要素の子要素（画像やテキスト）もクリックできるように */
.c-accordion_ttl img,
.c-accordion_ttl .c-accordion_text {
    pointer-events: none; /* 親要素へのクリックを妨げないように */
}

/*開いた時の色*/
details[name="c-accordion"][open] {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333333; /* テキスト色を#333に設定 */
}

details[name="c-accordion"][open] .c-accordion_text h2,
details[name="c-accordion"][open] .c-accordion_text p {
    color: #333333; /* 開いたときのタイトルやテキストの色も#333に設定 */
}

/* details全体のスタイルを設定 */
details[name="c-accordion"] {
    position: relative;
    border: solid 1px #BABABA;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer; /* カーソルをポインターに */
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
}

details[name="c-accordion"]:hover {
    border-color: #e7f07b; /* ホバー時の枠線色 */
}

.c-accordion_ttl {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

/* 開閉時の背景色調整 */
details[name="c-accordion"][open] {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
}


@media (max-width: 900px){
	.c-accordion_ttl{
	display: block;
}
	.c-accordion_text{
		margin: 0 auto;
	}
	.c-accordion_text h2{
		font-size: 1rem;
	}
	.c-accordion_text p{
		font-size:  0.8rem;
	}
}
[id]::before {
    content: "";
    display: block;
    height: 20px; /* 上部からの余白を設定 */
    margin-top: -20px;
}


/* モーダル全体のスタイル */
.lb-dataContainer {
   position: relative;
    margin: auto; /* 中央揃え */
}
.lb-outerContainer {
    position: fixed;
    max-width: 80%;
    max-height: 80%;
    box-sizing: border-box;
     background-color: transparent !important;
    box-shadow: none !important;
}
.lb-nav {
    background-color: transparent !important; /* 背景を透明に強制設定 */
    box-shadow: none !important; /* 不要なシャドウを削除 */
    border: none !important; /* 不要なボーダーを削除 */
    padding: 0 !important; /* 不要な余白を削除 */
    margin: 0 !important; /* 不要なマージンを削除 */
}




/* モーダル内の画像のサイズを調整 */
.lb-image {
    max-width: 80% ; /* 親要素の幅に収める（最大） */
    max-height: 70vh ; /* 親要素の高さの90%に収める */
    object-fit: contain; /* 縦横比を維持しつつ画像を収める */
    display: block; /* インライン画像の余白を削除 */
    margin: 0 auto; /* 画像を中央揃え */
    background-color: rgba(255, 255, 255, 0.7); /* 背景色 */
	padding: 10px;
}

/* モーダル全体の位置を中央に */
.lb-outerContainer {
    top: 30vh; /* 縦中央 */
}

/* 背景の暗いオーバーレイ */
.lb-overlay {
    background: rgba(0, 0, 0, 0.8); /* 背景を半透明に */
}
.lightbox .lb-outerContainer {
    width: auto !important;
    height: auto !important;
    max-width: 90%;
    max-height: 90%;
    overflow: visible;
}


/* 閉じるボタンの位置を調整 */
.lb-close {
    position: absolute; /* 要素を親コンテナ内で絶対配置 */
    top: -150px; /* 上端から10pxの位置に配置 */
    right: 10px; /* 右端から10pxの位置に配置 */
    color: white; /* ボタンの色 */
    font-size: 24px; /* ボタンのサイズ */
    background: none; /* 背景を透明に */
    border: none; /* ボーダーを削除 */
    cursor: pointer; /* カーソルをポインターに */
    z-index: 1000; /* 他の要素の上に表示 */
}
/* 閉じるボタンの位置調整 */
.lb-close:hover {
　　color: #e7f07b; /* ホバー時の色を変更 */
    transform: scale(1.2); /* ホバー時に少し拡大 */
    transition: all 0.3s ease; /* スムーズなホバーアニメーション */
}

.lb-number {
    display: none !important; /* 非表示設定を解除 */
  
}

/*ホームページ*/

.hp_00{
	display: flex;
}
@media (max-width: 1000px){
	.hp_00{
		margin-top: 50px;
		display: block;
	}
}
.hp_01{
	margin: 20px;
}
.hp_01 img{
	width: 90%;
	
	max-height:200px; 
	object-fit: contain;
	
}
.hp_01 h1{
	font-size: 1.3rem;
}

.flow_design05 {
	margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background:#898989;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
  background: #898989;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 16px;
  transform: translateY(-50%);
  
}

.flow05 dt span {
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
}

.flow05 > li dl {
  margin-left: 0;
}
.flow05 dt{
	font-size: 1.2rem;
	text-align: left;
	line-height: 2rem;
}

.running{
	text-align: left;
	margin: 20px;
}
.running h1{
	font-size: 1.3rem;
	background-color: #e7f07b;
	padding-left: 20px;
	margin-bottom: 10px;
	
}
.running h3{
	font-size: 1.2rem;
}
.running p{
	font-size: 1rem;
	line-height: 1.3rem;
	padding-left: 20px;
}

/*パンフレット*/

.pamphlet_img{
	margin-top: 50px;
	display: flex;
	justify-content: center;
	
}
.pamphlet_img img{
	width: 80%;
height: 80%;
	object-fit: contain;
 filter: drop-shadow(5px 5px 5px #aaa);
	
}

@media (max-width: 900px){
	.pamphlet_img{
	display: block;
}

	.pamphlet_img h3{
	margin-bottom: 30px;
}
}
.pamphlet_img h3{
	font-size: 1.3rem;
}
.pamphlet-initial {
	margin-bottom: 30px;
}
.pamphlet-initial h2{
	margin: 20px 0 10px;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.7rem;
	padding-left: 30px;
}
.pamphlet-initial span{
	font-size: 1rem;
	line-height: 1.3rem;
	text-align: left;
}
.pamphlet-initial ul {
    display: flex;
    justify-content: center; /* 横方向中央揃え */
    flex-wrap: wrap; /* 要素を折り返し */
}

.pamphlet-initial li {
	width: 30%;
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: bold;
    background-color: #e7f07b;
    list-style: none;
    margin: 10px;
    padding: 15px;
    border-radius: 20px;
    min-width: 200px;
    height: 100px; /* 高さを指定 */
    display: flex; /* Flexboxを適用 */
    align-items: center; /* 縦方向中央揃え */
    justify-content: center; /* 横方向中央揃え */
    text-align: center; /* テキストを中央揃え */
}


.pamphlet_img03{
	display: flex;
	width: 90%;
	margin: 0 auto;
}
.pamphlet_img03 img{
	width: 50%;
}

.pamphlet_img04 img{
	width: 90%;
}
@media (max-width: 900px){
	.pamphlet_img03{
	display: block;
}
	.pamphlet_img03 img{
	width: 90%;
		margin-bottom: 10px;
}
.pamphlet_img04 img{
	width: 90%;
	justify-content: center;
	margin-bottom: 10px;
}
}
.pamphlet_pages{
	width: 88%;
	text-align: left;
	margin: 10px auto;
}
.pamphlet_pages h2{
	font-size: 1.3rem;
}
.pamphlet_pages p{
	font-size: 1rem;
	line-height: 1.3rem;
}
.pamphlet_pages span{
	color: #F05052;
}

/*チラシ*/
.flyer-img{
	display: flex;
	justify-content: center;
}
.flyer-img-02{
	width: 23%;
}
.flyer-img-02 img{
	max-width: 100%;
	max-height: 250px;
	margin: 10px;
}
.flyer-img-02 h1{
	font-size: 1.2rem;
	line-height: 1.3rem;
	text-align: center;
}
.flyer-size{
	width: 90%;
	margin: 0 auto;
}
.flyer-size-title{
	width: 90%;
	text-align: left;
	font-size: 1.3rem;
}
.flyer-size01{
	display: flex;	
}
.flyer-size p{
	text-align: left;
	font-size: 1rem;
	line-height: 1.5rem;
}
.flyer-size02{
	margin: 0 10px;
}

@media (max-width: 1300px){
	.flyer-size01{
	display: block;	
}
}
/*チラシ　折り込み・ポスティング*/

.flyer-oripos{
	justify-content: center;
	display: flex;
	text-align: left;
	width: 90%;
	margin: 0 auto;
}

.flyer-dl {
justify-content: center;
}
.flyer-oripos h1{
	font-size: 1.3rem;
	text-align: center;
	font-weight: bold;
}
.flyer-oripos h2{
	margin-top: 10px;
	line-height: 1.4rem;
	font-size: 1.1rem;
}
.flyer-oripos p{
	font-size: 1rem;
	line-height: 1.3rem;
}
.flyer-oripos span{
	font-size: 0.7rem;
}
.flyer-ori,.flyer-pos{
	margin: 20px;
	width: 60%;
}
.flyer-ori a,.flyer-pos a{
	
	margin: 20px auto 0;
	background-color: #e7f07b;
	color: #333;
	font-size: 1.3rem;
	text-decoration: none;
	font-weight: bold;
	border-radius: 30px;
	padding: 10px 20px;
}
.flyer-ori-span{
	color: #F05052;
}
@media (max-width: 1300px){
	.flyer-oripos{
	display: block;
}
	.flyer-ori,.flyer-pos{
		width: 90%;
	}
	.flyer-ori a,.flyer-pos a{
		font-size: 1rem;
	}
}

/*ポスター*/

.poster{
	width: 90%;
	margin: 0 auto;
}
.poster-img {
	width: 70%;
}
.poster h2{
	font-size: 1.3rem;
	background-color: #e7f07b;
	border-radius: 20px;
	padding:  5px 10px;
}
.poster p{
	margin: 10px;
	padding-left: 20px;
	text-align: left;
	font-size: 1rem;
	line-height: 1.3rem;
}

/*看板*/
.sticker,.cutting{
	display: flex;
	text-align: left;
}

.sticker img,.cutting img{
	height: 150px;
	margin: 10px;
}
.sticker-text,.cutting-text{
	margin-left: 10px;
}
.sticker h2,.cutting h2{
	font-size: 1.3rem;
}
.sticker p, .cutting p{
	font-size: 1rem;
}
@media (max-width: 900px){
	.sticker,.cutting{
		display: block;
	}
}



/*一般印刷物*/

.print_item00{
	justify-content: center;
flex-wrap: wrap;
	display: flex;
	text-align: left;
	align-items: flex-end;
	width: 100%;
}
.print_item00 h2{
	font-size: 1.3rem;
}
.print_item00 p{
	font-size: 1rem;
	line-height: 1.3rem;
}
.print_item{
	margin: 15px;
	width: 40%;
	
}

.print_item img{
	margin: 10px;
	height: auto;
	max-height: 400px;
width: 100%;
	max-width: 400px;
	object-fit: contain;
}
@media (max-width: 600px){
	.print_item{
	width: 100%;
		height: auto;
}
	.print_item img{
		max-height: 100vh;
			width: 100%;
	}
}



/*ノベルティ*/
.novelty_01{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px;
}
.novelty_01 p{
	text-align: left;
}
.novelty_01 img{
	margin: 10px;
	
	height: auto;
	max-height: 400px;
width: 100%;
	max-width: 400px;
	object-fit: contain;
}
.novelty_item{
	margin: 15px;
	width: 40%;
}
@media (max-width: 600px){
	.novelty_item{
	width: 100%;
		height: auto;
}
	.novelty_01 img{
		max-height: 100vh;
	}
}
/*ウェアプリント*/

.wear_bag_towel{
	display: flex;
	justify-content: center;
}
.wear_bag_towel img{
	margin: 10px;
	
}
.wear_item img{
	width: 80%;
	margin: 0 auto;
	height: auto;
}