/*
Theme Name:
Theme URI:
Author: lockon
Author URI:
Description:
Version: 1.0
*/

@charset "UTF-8";

/* 基本構成 */
html { height: 100%; width: 100%; }
body { height: 100%; }
header, section, footer { width: 100%; }
.container { max-width: 100%; width: 100%; margin: 0 auto; padding: 1rem; }
.wide_container { max-width: 100%; width: 100%; margin: 0 auto; padding: 0; }

body {
  background-color: #FFF6E7;
  background-image: url(./images/bd_bkimg.png);
  background-position: top;
  background-repeat:repeat-x;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  height: 100%;
  color: #320A0A;
}

h1,h2,h3,h4,h5,h6,p {
  margin: 0 0 1rem;
}

/* 共通設定 */

p img {
  vertical-align: middle;
}

section p {
  line-height: 1.6;
}

p span.red {
  color: #800000;
  padding-right: 0.5rem;
}

div.btm a {
  margin: 1rem;
  display: block;
  height: 60px;
  width: 250px;
  border-radius: 10px;
  background-color: #320A0A;
}

div.btm h4 {
  height: 60px;
  width: 250px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF6E7;
}


/* 共通カラー */
.base { color: #FFF6E7; }
.brown { color: #320A0A; }
.red { color: #800000; }

/* リンク設定 */
a { text-decoration: none; color: #800000; transition: linear .3s; }
a:hover { opacity: .7;}

/* フレックス設定 */
.fl_set { display: flex; }
.fl_row { flex-direction: row; }
.fl_colum { flex-direction: column; }
.fl_wrap { flex-wrap: wrap; }
.fl_nowrap { flex-wrap: nowrap; }
.fl_center { justify-content: center;}
.fl_end { justify-content: flex-end;}
.fl_between { justify-content: space-between;}
.fl_around { justify-content: space-around;}
.fl_alignCenter { align-items: center; }
.fl_alignStart { align-items: flex-start; }

/* ポジション設定 */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.static { position: static; }

/* アニメーション設定 */
.downIn {
  animation: downIn 0.8s ease forwards;
}
@keyframes downIn {
  0% { transform:translate(0,-30px); opacity: 0; }
  100% { transform:translate(0,0); opacity: 1; }
}

.upIn {
  animation: upIn 0.8s ease forwards;
}
@keyframes upIn {
  0% { transform:translate(0,30px); opacity: 0; }
  100% { transform:translate(0,0); opacity: 1; }
}

.fade-in {
  transition: opacity 2s;
  -moz-transition: opacity 2s;
  -webkit-transition: opacity 2s;
  -o-transition: opacity 2s;
}

/* グローバルナビ */
header div.container {
  flex-wrap: wrap;
  justify-content: center;
}

header div.container img {
  width: inherit;
  height: inherit;
}

header div.container div.row_box h1,
header div.container div.row_box:nth-child(2) div.inner_box {
  margin-left: 0;
  margin: 0 auto;
  text-align: center;
}

header div.container div.row_box h1 img {
  width: 50%;
  height: auto;
}

header div.container div.row_box:nth-child(2) img {
  width: 86%;
  height: auto;
}

header div.container div.row_box {
  width: 100%;
}

/* トップページ */

#toppage section.topimage div.wide_container {
  width: 100%;
  height: 100px;
}

#toppage section.topimage div.wide_container img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-top: 4px solid #800000;
  border-bottom: 4px solid #800000;
}

#toppage section.contents div.col_box {
  padding: 0;
  border-bottom: 1px solid #320A0A;
  padding-top: 1rem;
}

#toppage section.contents h3,
#toppage section.contents p {
  padding-left: 0;
}

#toppage section.contents .kaisyabg {
  height: 300px;
  background-image: url(./images/tp_kaisya_bk.png);
  background-repeat: no-repeat;
  background-position: center;
}

#toppage section.contents div.col_box:first-child {
  padding-top: 0;
}

#toppage section.contents div.row_box:nth-child(2) {
  margin-left: 0;
}

#toppage section.contents div.row_box {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
}

/* フッター */

footer div.logo {
  margin-bottom: 3rem;
}

footer ul li {
  line-height: 2;
}

/* ページヘッダー */

section.page_header h2 {
  width: 100%;
  height: 56px;
  background-color: #320A0A;
  background-image: url(./images/page_header_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: #FFF6E7;
  font-size: 1.2rem;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

#note section.page_header h2 {
  font-size: 1.2rem;
  padding-top: 1.2rem;
}

section.page_header h3 {
  margin: 0 auto;
  text-align: center;
}

section.page_header p {
  margin: 0 auto;
  text-align: left;
  padding: 1rem;
}

.page_header img {
  display: none;
}


/* あんこうページ */

#ankou section.contents .col_box {
  flex-direction: column;
}

#ankou section.contents .row_box:first-child {
  padding-right: 0;
  text-align: center;
  margin-bottom: 1rem;
}

#ankou section.contents h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#ankou section.contents .btm h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

#ankou section.contents table {
  text-align: left;
  line-height: 1.4;
  margin-bottom: 1rem;
}

#ankou section.contents table td {
  padding-left: 1rem;
}

#ankou section.contents h4.plice {
  color: #800000;
}

#ankou section.contents h4.plice small {
  font-size: 1rem;
  font-weight: normal;
}

#ankou section.contents .omoushikomi {
  padding-top: 1rem;
  width: 100%;
  margin: 0 auto;
}

#ankou section.contents .mousikomiheader h4,
#ankou section.contents .mousikomiheader p {
  text-align: center;
  line-height: 1.2;
}

#ankou section.contents .omoushikomi p span {
  display: inline-block;
  width: 100%;
}

#ankou section.contents .denwa {
text-align: center;
line-height: 1.4;
padding-top: 2rem;
}

#ankou section.contents .denwabox {
width: 90%;
margin: 2rem auto;
padding: 1rem;
font-size: 1.6rem;
font-weight: 600;
border: 1px solid #320A0A;
}

/* 店舗紹介 */

#shop section.contents .menu_box .col_box {
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

#shop section.contents .menu_box .cat img {
  width: 24px;
  height: auto;
  margin-bottom: 1rem;
}



#shop section.contents .menu_box {
  font-size: 1rem;
}

#shop section.contents .menu_box img {
  padding-right: 0;
  margin-bottom: 1rem;
}

#shop section.contents .menu_box p {
  padding-left: 0;
  padding-top: 0;
  text-align: left;
}

#shop section.contents .menu_box p.enkai {
  padding-left: 0;
  padding-top: 0;
}

#shop section.contents .menu_box {
  margin-bottom: 1rem;
}

#shop section.contents .menu_box .nattounemu {
  flex-direction: column;
}

#shop section.contents .menu_box .nattounemu p {
  margin-bottom: 0;
}

#shop section.shopguide .container {
  flex-direction: column;
}

#shop section.shopguide .row_box:first-child {
  margin-right: 0;
  margin-bottom: 2rem;
}

#shop section.shopguide .logo,
#shop section.shopguide .text {
  margin-bottom: 1rem;
}

#shop section.shopguide .logo img {
  width: 86%;
  height: auto;
}

#shop section.shopguide .map {
  border: 1px solid #320A0A;
  width: 302px;
}

/* 会社案内 */

#company section.contents table {
  display: block;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

#company section.contents tbody {
  display: block;
  width: 100%;
}

#company section.contents tr {
  display: block;
  border-bottom: 1px solid #800000;
  margin-bottom: 1rem;
}

#company section.contents th {
  display: block;
  padding-left: 0;
  width: 100%;
}

#company section.contents td {
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

/* 特定商取引に関する法律に基づく表記 */

#note section.contents table {
  margin: 0 auto;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.2;
}

#note section.contents tr {
  height: 2rem;
  border-bottom: 1px dotted #800000;
  margin-bottom: 1rem;
}
#note section.contents th {
  width: 25%;
}

#note section.contents th,
#note section.contents td {
  padding: 1rem 0;
}
