@charset "utf-8";
/*-------------------------
	index.html style
	created: 2021.08.02
	updated: 2025.11.23
---------------------------*/
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Noto+Sans+JP:wght@100..900&display=swap');

#contents {
	max-width: 1250px;
	margin: 0 auto;
}

/*-----------------
	headTitle
------------------*/
.headTitle {
    background-color: #262626;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 22px 22px;
}

.headTitle figure {
    display: flex;
    align-items: center;
    column-gap: 15px;
    height: 100px;
}

.headTitle figure img {
    max-height: 100%;
}

.headTitle div { padding-right: 10px; }

.headTitle p {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: whitesmoke;
}

.headTitle h1 {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    color: whitesmoke;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.headTitle h1 span.yellow { color: #FFE699; }
.headTitle h1 span.blue { color: #9BC2E6; }
.headTitle h1 span.font-normal { font-weight: 400; color: white; }

.headTitle nav { margin-left: auto; }

.headTitle nav ul {
    list-style: none;
    display: flex;
    column-gap: 15px;
}

.headTitle nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.1;
}

.headTitle nav ul li:first-child a img { width: 60px; }
.headTitle nav ul li:last-child a img { width: 63px; }


/*--------------------
	breadCrumb
---------------------*/
.breadCrumb {
    padding: 22px 22px 17px;
    font-size: 14px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.breadCrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.breadCrumb ul li:not(:last-child)::after {
    content: "　>";
    font-size: 12px; 
}

.breadCrumb ul li a {
    text-decoration: none;
    color: #262626;
}

.breadCrumb ul li a:hover {
    border-bottom: 1px solid #262626;
}

/*-------------
	slide
--------------*/
#slide {
	position: relative;
	background-color: #222222;
	padding: 0;
	margin-bottom: 30px;
}

.swiper-container {
	max-width: 750px;
	overflow: hidden;
	margin: 0 auto;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -25px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,10px);
}

.swiper-slide img {
	display: block;
	width: 750px;
	height: 325px;
	object-fit: cover;
  }

/* slider */
#slideShow {
	background-color: black;
	width: 100%;
	max-height: 325px;
	display: block;
}

.slick-loading .slick-list {
    background: #fff url("/common/images/loading.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 25px;
    height: 25px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
	
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-size: 20px;
    line-height: 25px;

    opacity: .75;
    color: white;
	font-weight: bold;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -40px;
}
[dir='rtl'] .slick-prev
{
    right: -40px;
    left: auto;
}
.slick-prev:before
{
    content: '＜';
	padding: 0 5px 0 3px;
}
[dir='rtl'] .slick-prev:before
{
    content: '＞';
	padding: 0 3px 0 5px;
}

.slick-next
{
    right: -40px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -40px;
}
.slick-next:before
{
    content: '＞';
	padding: 0 3px 0 5px;
}
[dir='rtl'] .slick-next:before
{
    content: '＜';
	padding: 0 5px 0 3px;
}


/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-size: 1.5rem;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .90;
    color: black;
}

	.slider {
        width: 750px;
        margin: 10px auto;
    }

    .slick-slide {
		margin: 0px 20px;
    }

    .slick-prev:before,
    .slick-next:before {
      color: white;
    }

	.slick-slide {
		transition: all ease-in-out .3s;
		opacity: .2;
	}
    
    .slick-active {
      opacity: .5;
    }

    .slick-current {
      opacity: 1;
    }

/* container */
.container {
	background-color: #888888;
	width: 100%;
	padding: 30px 20px;
}


/* titles */
#titles,
.titles {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

#titles h2,
.titles li {
	font-family: "Shin Go Bold", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 0.8rem;
	padding: 5px 10px;
	text-align: center;
	color: white;
	background-color: #222;
}

#ttl_genre,
.ttl_genre {
	width: 175px;
	margin-right: 15px;
}

#ttl_itemsList,
.ttl_itemsList {
	width: calc(100% - 190px);
}


/* links */
.btngroup {
	display: flex;
	flex-wrap: wrap;
}

.btngroup h3 {
	font-size: 0.8rem;
	width: 175px;
	height: 74px;
	margin: 0 5px 10px 0;
}

.btngroup h4 {
	font-size: 0.8rem;
	width: 165px;
	height: 74px;
	margin: 0 5px 10px 10px;
}

.btngroup h5 {
	font-size: 0.8rem;
	width: 155px;
	height: 74px;
	margin: 0 5px 10px 20px;
}

.btngroup > .group {
	display: inline-flex;
}

.btngroup ul {
	max-width: calc(100% - 180px);
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.btngroup ul li {
	margin: 0 0 10px 10px;
}

.btngroup ul li:last-child {
	margin-right: 0;
}

.btngroup ul li a {
	display: block;
	text-decoration: none;
}

.btngroup ul li a span {
	display: none;
	line-height: 1.5;
	font-size: 0.64rem;
	color: white;
	cursor: pointer;
	text-shadow: 1px 1px 4px black;
	padding-left: 1.1rem;
	text-indent: -1.1rem;
}

.blank {
	width: auto;
}


/* -Tablet- 600px-1024px */
@media screen and (max-width: 1024px){
	

	
	/*-------------
		slide
	--------------*/
	.swiper-slide img {
		max-width: 100%;
		height: auto;
	  }
	
	/* slider */
	.slider {
        max-width:  750px;
		max-height: 325px;
		width: 100%;
    }

    .slick-slide {
		margin: 0px;
		width: 100vw;
    }

    .slick-slide img {
      width: clamp(320px, 100%, 750px);
	  max-height: 325px;
    }
    
	
	/* category */
	#category ol {
		flex-wrap: wrap;
		flex-direction: row-reverse;
		height: auto;
	}
	
	#category ol li:first-child {
		width: 100%;
		margin-bottom: 20px;
		background-size: cover;
	}

	
	/* links */
	.btngroup {
		display: flex;
		overflow-x: auto;  /* 横スクロールの指定 */
		white-space: nowrap;  /* 横スクロールの指定 */
		overflow-scrolling: touch;  /* スクロールを滑らかにする */
		-webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
		margin-bottom: 1rem;
	}
	
	.btngroup h3,
	.btngroup h4,
	.btngroup h5,
	.btngroup ul li,
	.btngroup ul li a {
		height: auto;
	}

	.btngroup ul {
		flex-wrap: nowrap;
	}
	
	.btngroup ul li a span {
		display: block;
		white-space: normal;
	}
	
	.btngroup::after {
		padding-bottom: 20px;
	}
	
}

/* -SP- -599px */
@media screen and (max-width: 599px){
    
    .headTitle figure img { max-height: 90px; }

    .headTitle h1 {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .breadCrumb { padding:  22px 15px 17px; }
	
	/* category */
	#category ol li {
		font-size: 0.8rem;
	}
	
	#category ol li:first-child {
		width: 100%;
		margin-bottom: 20px;
		background-size: cover;
	}
	
	#category ol li:last-child a {
		width: calc(100vw - 39px);
		overflow-x: hidden;
		padding-right: 20px;
	}
	
	/* Arrows */
	.slick-prev,
	.slick-next {
		display: none;
	}

}
