@charset "utf-8";

:root {
	--shop-red: #ff0000;
	--shop-dark-red: #dd3333;
	--shop-blue: #0071e3;
	--shop-dark-blue: #003366;
	--shop-green: #03a10e;
	--shop-dark-green: #004010;
	--shop-orange: #f56300;
	--shop-yellow: #ffe045;
	--shop-light-yellow: #FFFF69;
	--shop-cream: #fffaf0;
	--shop-light-cream: #fffaf0;
	--shop-pink: #f05adc;
	--shop-gold: #857050;
	--shop-brown: #410700;
	--shop-gray: #767676;
	--shop-dark-gray: #333;
	--shop-light-gray: #ccc;
	--shop-light-gray2: #F0F0F0;
}
/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}
ul, ol {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a:focus {
  outline: none;
}
ins {
  text-decoration: none;
}
mark {
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
button, input, textarea {
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
input, textarea {
  background-image: -webkit-linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0));
  -webkit-appearance: none;
  border-radius: 0; /* Removing the inner shadow, rounded corners on iOS inputs */
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
iframe {
  max-width: 100%;
}
/* clearfix */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
html {}
body {
  width: 100%;
  position: relative;
  background: #fff; /* #f6f6f6 */
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
/* リンク */
a {
  color: #1a0dab;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
a, a:before, a:after, input {
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a:hover, a:focus {
  color: #1558d6;
  text-decoration: underline;
  opacity: 0.8;
}
p {
  margin-bottom: 20px;
}

/* ----------------------------------------------------------------------
 カスタム
---------------------------------------------------------------------- */
/*-- タイトル --*/
h2.section__ttl {
  margin: 0;
  padding: 30px 20px;
  background-image: linear-gradient(45deg, rgba(240, 10, 10, 1), rgba(240, 100, 10, 1));
  font-size: 18px;
  color: #fff;
  text-align: center;
}
/*-- 全体 --*/
#wrapper {
  display: block;
  width: calc(100% - 40px); /* 左右のpaddingを引く */
  padding: 20px !important;
}
@media print, screen and (min-width: 751px) {
#wrapper {
  display: block;
  width: 750px;
  margin: 0 auto;
  padding: 20px !important;
}}
.box_info {
  text-align: center;
  padding: 20px;
  background: #FFFaf0;
  border-radius: 10px;
}
/*-- お問い合わせ先 --*/
.box_info2 {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background: #fffbed;
}
/*-- エラーメッセージ --*/
.red_txt {
  margin-bottom: 20px;
  color: red;
  font-weight: bold;
}

/* ----------------------------------------------------------
    フォーム  table
------------------------------------------------------------- */
table {
  width: calc(100% - 0px); /* th,tdのpaddingを引く */
  margin-bottom: 20px;
}
.table th, .table td {
  padding: 10px;
  border: solid 1px #ccc;
  box-sizing: border-box;
  background: #fff;
}
.table th {
  width: 33%;
  text-align: left;
  background: #efefef;
  color: #000;
}
@media screen and (max-width: 650px) {
  .table {
    width: calc(100% - 0px);
    margin-bottom: 20px;
  }
  table.table th, table.table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}

/* ----------------------------------------------------------
    フォーム
------------------------------------------------------------- */
input, textarea, select {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  *font-size: 15px;
}
input {
  line-height: normal;
  vertical-align: middle;
}
input[type=text], input[type=password], textarea {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  -moz-box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.03);
  box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.03);
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
  border: 1px solid #209dd9;
}
input[type=checkbox] {
  cursor: pointer;
}
input[type=checkbox]:disabled {
  cursor: default;
}
textarea {
  width: 100%;
  overflow: auto;
  vertical-align: top;
}
select {
  padding: 5px;
  line-height: normal;
  color: #333;
}
label {
  cursor: pointer;
  padding-right: 20px;
}
legend {
  *margin-left: -7px;
  color: #333;
}
/*-- 送信ボタン --*/
.button_box {
  text-align: center;
  margin: 20px auto 40px;
}
input[type=submit], input[type=button] {
  display: block;
  width: 40%;
  margin: 15px auto;
  padding: 20px 15px;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.5s;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
/*-- 送信ボタン hover --*/
input[type=submit]:hover, input[type=button]:hover {
  background-color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: background-color 0.5s;
  color: #000;
}

/* ----------------------------------------------------------
    お読みください
------------------------------------------------------------- */
/* 文字 アンダーライン */
.under_yellow { background: linear-gradient(transparent 50%, #ffff7d 50%) }

/* ----------------------------------------------------------
    注意事項
------------------------------------------------------------- */
.notes {
  list-style: none;
}
.notes li {
  margin-bottom: 5px;
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
}
.notes li::before {
  content: "※";
}

/* ----------------------------------------------------------
    共通CSS
------------------------------------------------------------- */
/* 文字配置  text-align */
.center { text-align: center !important; }
.right { text-align: right !important; }
.left { text-align: left !important; }

/* 文字の太さ  font-weight */
.normal { font-weight: normal !important; font-weight: 400 !important; }
b, .bold { font-weight: bold !important; font-weight: 700 !important; }

/* 文字色  font-color */
.red, .fc-red { color: #dd3333 !important; }
.dark_red { color: darkred !important; }
.blue { color: #2ca9e1 !important; }
.dark_blue { color: #1a4168 !important; }
.green { color: #008000 !important; }
.orange, .fc-orange { color: #ff7d00 !important; } /* #ff4800 */
.yellow { color: #fff000 !important; }
.cream, .fc-cream { color: #FFFF69 !important; }
.pink { color: #ff0084 !important; }
.gold { color: #B99B3C !important; }
.brown, .fc-brown { color: #410700 !important; }
.gray { color: #999999 !important; }
.black { color: black !important; }
.white, .fc-w, a.fc-w:hover { color: #FFFFFF !important; }

/* ------------ 文字サイズ  font-size ------------ */
.fs110, .text90 { font-size: 90% !important; }
.fs110, .text110 { font-size: 110% !important; }
.fs120, .text120 { font-size: 120% !important; }
.fs130, .text130 { font-size: 130% !important; }
.fs140, .text140 { font-size: 140% !important; }

/* ------------ 色枠 ------------ */
.bd-glay2, .bd-gray2 { border-width: 1px; border-style: solid; border-color: var(--shop-light-gray)!important; }

/*-- ボタン　メールフォーム --*/
a.btn_form {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 200px;
	margin: 10px auto;
	padding: 1rem 2rem;
	font-weight: bold;
	background: #e7470a;
  	border: 2px solid #e7470a;
	border-radius: 5px;
	color: #FFF;
	transition: 0.5s;
}
a.btn_form:hover {
	color: #e7470a;
	background: #FFF;
}

/*----------------------------------------------------
 * margin
----------------------------------------------------*/
/* margin */
.m0 { margin: 0px !important; }
.m5 { margin: 5px !important; }
.m10 { margin: 10px !important; }
.m15 { margin: 15px !important; }
.m20 { margin: 20px !important; }
.m30 { margin: 30px !important; }
/* margin 上下 */
.mtb5 { margin-top: 5px !important; margin-bottom: 5px !important; }
.mtb10 { margin-top: 10px !important; margin-bottom: 10px !important; }
.mtb15 { margin-top: 15px !important; margin-bottom: 15px !important; }
.mtb20 { margin-top: 20px !important; margin-bottom: 20px !important; }
.mtb30 { margin-top: 30px !important; margin-bottom: 30px !important; }
.mtb40 { margin-top: 40px !important; margin-bottom: 40px !important; }
/* margin-top */
.mt0 { margin-top: 0px !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
/* margin-bottom */
.mb0 { margin-bottom: 0px !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
/* margin-right */
.mr0 { margin-right: 0px !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr30 { margin-right: 30px !important; }
.mr40 { margin-right: 40px !important; }
.mr50 { margin-right: 50px !important; }
/* margin-left */
.ml0 { margin-left: 0px !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml30 { margin-left: 30px !important; }
.ml40 { margin-left: 40px !important; }
.ml50 { margin-left: 50px !important; }

/* 改行・改行無効  ======================================================= */
/* PCのみ 改行しない */
.br-sp { display: none !important }
/* iPad以下 改行する */
@media screen and (max-width: 650px) {
.br-sp { display: inline !important }
}