/*
Theme Name: ORION Child
Template: orion_tcd037
*/


h2.menu-title{
	font-size:20px;
	text-align:center;
	margin-bottom:20px;
	background:#CC2E2E;
	color:#fff;
	padding:20px;
	border-radius:20px 20px 0 0;
	line-height:1.6;
}
h2.index_content_header2 .headline{
    float: inherit !important;
    font-size: 30px;
    margin: 10px 20px 0 0;
    color: #000;
}
/*===========================
TOPスライダースマホ用
===========================*/

/* 親にrelative */
#header_slider .item {
  position: relative;
}

/* スマホ時だけ上から画像を被せる */
@media screen and (max-width: 767px) {
  #header_slider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("https://soratacos.com/menu/wp-content/uploads/2026/04/sp-back1.png") center center / cover no-repeat;

    z-index: 1;
  }

  /* 中のテキストを上に出す */
  #header_slider .item > * {
    position: relative;
    z-index: 2;
  }
}

/*===========================
TOPページタイトル
===========================*/
.pc #index_content1 .index_content_header .headline {
    font-size: 40px;
}
.index_content_header2 .headline {
    float:none;
	text-align:center;
    font-size: 30px;
    margin: 10px 20px 0 0;
    color: #000;
	border-bottom: 4px double #000;
}
.index_content_header .headline {
    font-size: 20px;
    margin: 0 0 5px;
    margin-bottom: 20px !important;
    line-height: 160%;
    text-align: center !important;
    text-align: center;
    border-bottom: 1px solid #000;
}
/*===========================
TOPページ３カラムメニュー
===========================*/

.sora-menu-wrap {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  margin-bottom: 40px;
  margin-top:20px;
}

/* カード */
.menu-item {
  display: flex;
  flex-direction: column;
  padding:20px;
  margin-bottom: 20px;
  background:#fff !important;
  box-shadow: 0px 8px 7px 5px rgb(0, 0, 0, 0.2);
}

/* 画像 */
.menu-item-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.menu-item-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* タイトル */
.menu-item-title {
  font-size: 28px;
  margin-bottom: 16px;
  background: #000;
  padding: 20px;
	/*border-radius: 20px 20px 0 0;*/
  text-align: center;
  color: #fff;
}

/* 説明 */
.menu-item-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* 価格（ここが今回の本体） */
.sora-price {
  /*display: flex !important;*/
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-top: auto; /* ←下に揃える */
  line-height:1.5;
	text-align:center;
}


/* 縦線（2つ以上の時だけ） */
.sora-price span + span {
  border-left: 1px solid #333;
  padding-left: 12px;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .sora-menu-wrap {
    grid-template-columns: 1fr !important;
	  margin-bottom: 20px;
  }
  .menu-item-image {
    height: 200px;
  }

  .menu-item-title {
    font-size: 24px;
  }

  .sora-price {
    font-size: 18px;
  }
}
/*===========================
テーブル設定
===========================*/
/* テーブル全体 */
table {
  width: 100%;
  font-size:18px;
  border-collapse: separate;
  border-spacing: 0 10px; /* 行間10px */
  line-height:1.5;
  margin-bottom:30px;
}

/* th */
th {
  position: relative;
  width: 24% !important;
  color: #000;
  font-weight: bold;
  padding: 20px;
  border-top:3px solid #000;
  border-bottom: 3px solid #000;
}
/* 右線を疑似要素で作る */
th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;     /* 上の余白 */
  bottom: 15px;  /* 下の余白 */
  width: 1px;
  background: #000;
}
/* td */
td {
  background: #fff;
  color: #000;
  font-weight: normal;
  padding: 20px;
  border-top:3px solid #000;
  border-bottom: 3px solid #000;
}
/* スマホ */
@media screen and (max-width: 767px) {
/* テーブル全体 */
table {
  font-size:16px;
  line-height:1.5;
}
/* th */
th {
  width: 27% !important;
  padding: 20px;
}
/* 右線を疑似要素で作る */
th::after {
  top: 7px;     /* 上の余白 */
  bottom: 7px;  /* 下の余白 */
}
/* td */
td {
  padding: 20px;
}
}
/*===========================
フッターロゴ
===========================*/
#footer_bottom {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}
#footer_social_link {
    display:none;
}
#footer_logo {
    margin: 0 0 0 0;
}
#footer_top_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}
.logo_area .logo img {
  height: 300px;
  width: auto;
}
/* スマホ */
@media screen and (max-width: 767px) {
.logo_area .logo img {
    height: auto;
    max-width: 200px !important;
}
}