@charset "utf-8";
/* CSS Document */

/* 基本設定 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{
    margin:0;
    padding:0;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    line-height: 1.6;
}
img {
	max-width:100%;
	height: auto;
}
a{
	text-decoration: none;
}
a:hover, .active{
	text-decoration: none;
}
ol,ul{
    list-style:none;
}
header {
    text-align: center;
 }
header img{
    width: 150px;
 }


/* 共通の設定
================================================== */

img{
	max-width: 100%;
	height: auto;
}
section{
	clear:both;
}
.margin_bottom_100 {
  margin-bottom: -100px;
}
.margin_bottom_400 {
  margin-bottom: 400px;
}


/* ヒーローエリア
================================================== */
.hero {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ff9900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p{
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 30px;
    letter-spacing: 0.5px;
}



/* メインコンテンツ
================================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ff9900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.card {
    background-color: #2b2b2b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.6);
}
.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.text-orange span{
    color: #f97316;
}
.text-gray{
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-top: 10px;
}


/* アイテム 3カラム
================================================== */
.item_3{
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 100px auto 0;
}
.item_3 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.item_3 li {
    width: 32%;
    height: 400px;
    margin: 0 0 50px;
    list-style: none;
    background-color: #2b2b2b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
}
.item_3 ul::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}



/* アイテム 4カラム
================================================== */
.item_4{
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 100px auto 0;
}
.item_4 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.item_4 li {
    width: 24%;
    height: 320px;
    margin: 0 0 30px;
    list-style: none;
    background-color: #2b2b2b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
}
.item_4 ul::before,.item_4 ul::after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
.item_4 ul:before {
    order:1;
}


/* 共通
================================================== */
.name {
    font-size: 0.8em;
    margin-top: 20px;
    letter-spacing: 1px;
}
.price{
    font-size: 0.8em;
    margin-top: 3px;
    letter-spacing: 0.5px;
}



/* PCのみ
================================================== */

@media(max-width:788px){
.pc{
    display: none !important;
}
}
    
/* SPのみ
================================================== */

@media(min-width:789px){
.sp{
    display: none !important;
}
}




/* SP用
================================================== */
@media screen and ( max-width:768px) {
.item_2{
    max-width: 100%;
    width: 90%;
    text-align: center;
    margin: 30px auto 0;
}
.item_2 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.item_2 li {
    width: calc((100% - 10px) / 2);
    height: 280px;
    margin: 0 0 30px;
    list-style: none;
    background-color: #2b2b2b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
}
.item_2 ul::before,
.item_2 ul::after {
    content: "";
    display: block;
    width: 24.5%;
    height: 0;
}
.item_2 ul:before {
    order:1;
}
}
