/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}


/*------------------------------------------------------------
hover・・・ボタンホバー効果
-------------------------------------------------------------*/
.btn:hover {
	opacity: 0.7;
}
/*------------------------------------------------------------
clear・・・クリアフィックス解除
-------------------------------------------------------------*/
.clearfix {
	clear: both;
}
/*------------------------------------------------------------
align・・・文字の横位置
-------------------------------------------------------------*/
.al-c {
	text-align: center;
}/*中央寄せ*/
.al-r {
	text-align: right;
}/*右寄せ*/
.al-l {
	text-align: left;
}/*左寄せ*/
/*------------------------------------------------------------
margin・・・周りのブロックからの距離
-------------------------------------------------------------*/

.m0 {
	margin: 0!important;
}/*周りからのmarginを0に*/
.m0-t {
	margin-top: 0!important;
}/*上からのmarginを0に*/
.m0-r {
	margin-right: 0!important;
}/*右からのmarginを0に*/
.m0-b {
	margin-bottom: 0!important;
}/*下からのmarginを0に*/
.m0-l {
	margin-left: 0!important;
}/*左からのmarginを0に*/
.m5 {
	margin: 5px!important;
}
.m5-t {
	margin-top: 5px!important;
}
.m5-r {
	margin-right: 5px!important;
}
.m5-b {
	margin-bottom: 5px!important;
}
.m5-l {
	margin-left: 5px!important;
}
.m10 {
	margin: 10px!important;
}
.m10-t {
	margin-top: 10px!important;
}
.m10-r {
	margin-right: 10px!important;
}
.m10-b {
	margin-bottom: 10px!important;
}
.m10-l {
	margin-left: 10px!important;
}
.m15 {
	margin: 15px!important;
}
.m15-t {
	margin-top: 15px!important;
}
.m15-r {
	margin-right: 15px!important;
}
.m15-b {
	margin-bottom: 15px!important;
}
.m15-l {
	margin-left: 15px!important;
}
.m20 {
	margin: 20px!important;
}
.m20-t {
	margin-top: 20px!important;
}
.m20-r {
	margin-right: 20px!important;
}
.m20-b {
	margin-bottom: 20px!important;
}
.m20-l {
	margin-left: 20px!important;
}
.m25 {
	margin: 25px!important;
}
.m25-t {
	margin-top: 25px!important;
}
.m25-r {
	margin-right: 25px!important;
}
.m25-b {
	margin-bottom: 25px!important;
}
.m25-l {
	margin-left: 25px!important;
}
.m30 {
	margin: 30px!important;
}
.m30-t {
	margin-top: 30px!important;
}
.m30-r {
	margin-right: 30px!important;
}
.m30-b {
	margin-bottom: 30px!important;
}
.m30-l {
	margin-left: 30px!important;
}
.m40 {
	margin: 40px!important;
}
.m40-t {
	margin-top: 40px!important;
}
.m40-r {
	margin-right: 40px!important;
}
.m40-b {
	margin-bottom: 40px!important;
}
.m40-l {
	margin-left: 40px!important;
}
.m50 {
	margin: 50px!important;
}
.m50-t {
	margin-top: 50px!important;
}
.m50-r {
	margin-right: 50px!important;
}
.m50-b {
	margin-bottom: 50px!important;
}
.m50-l {
	margin-left: 50px!important;
}
.m60 {
	margin: 60px!important;
}
.m60-t {
	margin-top: 60px!important;
}
.m60-r {
	margin-right: 60px!important;
}
.m60-b {
	margin-bottom: 60px!important;
}
.m60-l {
	margin-left: 60px!important;
}
.m70 {
	margin: 70px!important;
}
.m70-t {
	margin-top: 70px!important;
}
.m70-r {
	margin-right: 70px!important;
}
.m70-b {
	margin-bottom: 70px!important;
}
.m70-l {
	margin-left: 70px!important;
}
.m80 {
	margin: 80px!important;
}
.m80-t {
	margin-top: 80px!important;
}
.m80-r {
	margin-right: 80px!important;
}
.m80-b {
	margin-bottom: 80px!important;
}
.m80-l {
	margin-left: 80px!important;
}
.m90 {
	margin: 90px!important;
}
.m90-t {
	margin-top: 90px!important;
}
.m90-r {
	margin-right: 90px!important;
}
.m90-b {
	margin-bottom: 90px!important;
}
.m90-l {
	margin-left: 90px!important;
}
.m100 {
	margin: 100px!important;
}
.m100-t {
	margin-top: 100px!important;
}
.m100-r {
	margin-right: 100px!important;
}
.m100-b {
	margin-bottom: 100px!important;
}
.m100-l {
	margin-left: 100px!important;
}
/*------------------------------------------------------------
5、padding・・・周りのブロックからの距離（padding）
-------------------------------------------------------------*/

.p0 {
	padding: 0!important;
}
.p0-t {
	padding-top: 0!important;
}
.p0-r {
	padding-right: 0!important;
}
.p0-b {
	padding-bottom: 0!important;
}
.p0-l {
	padding-left: 0!important;
}
.p5 {
	padding: 5px!important;
}
.p5-t {
	padding-top: 5px!important;
}
.p5-r {
	padding-right: 5px!important;
}
.p5-b {
	padding-bottom: 5px!important;
}
.p5-l {
	padding-left: 5px!important;
}
.p10 {
	padding: 10px!important;
}
.p10-t {
	padding-top: 10px!important;
}
.p10-r {
	padding-right: 10px!important;
}
.p10-b {
	padding-bottom: 10px!important;
}
.p10-l {
	padding-left: 10px!important;
}
.p15 {
	padding: 15px!important;
}
.p15-t {
	padding-top: 15px!important;
}
.p15-r {
	padding-right: 15px!important;
}
.p15-b {
	padding-bottom: 15px!important;
}
.p15-l {
	padding-left: 15px!important;
}
.p20 {
	padding: 20px!important;
}
.p20-t {
	padding-top: 20px!important;
}
.p20-r {
	padding-right: 20px!important;
}
.p20-b {
	padding-bottom: 20px!important;
}
.p20-l {
	padding-left: 20px!important;
}
.p25 {
	padding: 25px!important;
}
.p25-t {
	padding-top: 25px!important;
}
.p25-r {
	padding-right: 25px!important;
}
.p25-b {
	padding-bottom: 25px!important;
}
.p25-l {
	padding-left: 25px!important;
}
.p30 {
	padding: 30px!important;
}
.p30-t {
	padding-top: 30px!important;
}
.p30-r {
	padding-right: 30px!important;
}
.p30-b {
	padding-bottom: 30px!important;
}
.p30-l {
	padding-left: 30px!important;
}
.p40 {
	padding: 40px!important;
}
.p40-t {
	padding-top: 40px!important;
}
.p40-r {
	padding-right: 40px!important;
}
.p40-b {
	padding-bottom: 40px!important;
}
.p40-l {
	padding-left: 40px!important;
}
.p50 {
	padding: 50px!important;
}
.p50-t {
	padding-top: 50px!important;
}
.p50-r {
	padding-right: 50px!important;
}
.p50-b {
	padding-bottom: 50px!important;
}
.p50-l {
	padding-left: 50px!important;
}
.p60 {
	padding: 60px!important;
}
.p60-t {
	padding-top: 60px!important;
}
.p60-r {
	padding-right: 60px!important;
}
.p60-b {
	padding-bottom: 60px!important;
}
.p60-l {
	padding-left: 60px!important;
}
.p70 {
	padding: 70px!important;
}
.p70-t {
	padding-top: 70px!important;
}
.p70-r {
	padding-right: 70px!important;
}
.p70-b {
	padding-bottom: 70px!important;
}
.p70-l {
	padding-left: 70px!important;
}
.p80 {
	padding: 80px!important;
}
.p80-t {
	padding-top: 80px!important;
}
.p80-r {
	padding-right: 80px!important;
}
.p80-b {
	padding-bottom: 80px!important;
}
.p80-l {
	padding-left: 80px!important;
}
.p90 {
	padding: 90px!important;
}
.p90-t {
	padding-top: 90px!important;
}
.p90-r {
	padding-right: 90px!important;
}
.p90-b {
	padding-bottom: 90px!important;
}
.p90-l {
	padding-left: 90px!important;
}
.p100 {
	padding: 100px!important;
}
.p100-t {
	padding-top: 100px!important;
}
.p100-r {
	padding-right: 100px!important;
}
.p100-b {
	padding-bottom: 100px!important;
}
.p100-l {
	padding-left: 100px!important;
}
/*------------------------------------------------------------
font-size・・・フォントサイズの設定
-------------------------------------------------------------*/

.b {
	font-weight: bold!important;
}/*太字*/
.normal {
	font-weight: normal!important;
}/*太字を解除*/
.big {
	font-size: 1.2em!important;
}
.big2 {
	font-size: 1.5em!important;
}
.big3 {
	font-size: 1.8em!important;
}
.small {
	font-size: 0.8em!important;
}

/*------------------------------------------------------------
color・・・フォントカラーの設定
-------------------------------------------------------------*/

.red {
	color: #ff0000!important;
}/*赤*/
.blue {
	color: #0000dd!important;
}/*青*/
.green {
	color: #008000!important;
}/*緑*/
.yellow {
	color: #ffff00!important;
}/*黄*/
.navy {
	color: #1F26A9!important;
}/*紺*/
.orange {
	color: #ff6600!important;
}/*橙*/
.pink {
	color: #cc6699!important;
}/*ピンク*/
.purple {
	color: #660099!important;
}/*紫*/
.olive {
	color: #808000!important;
}/*黄土色*/
.lime {
	color: #00ff00!important;
}/*黄緑*/
.aqua {
	color: #167FA6!important;
}/*水色*/
.black {
	color: #000!important;
}/*黒*/
.gray {
	color: #ccc!important;
}/*灰*/
.white {
	color: #fff!important;
}/*白*/

/*------------------------------------------------------------
下線の設定
-------------------------------------------------------------*/

.underline {
	text-decoration: underline!important;
}

/*------------------------------------------------------------
蛍光ペンのようなボックスの設定
-------------------------------------------------------------*/

.box-yellow {
	padding: 2px;
	background-color: #ff9!important;
}/*黄色*/
.box-aqua {
	padding: 2px;
	background-color: #9ff!important;
}/*水色*/
.box-gray {
	padding: 2px;
	background-color: #eee!important;
}/*灰色*/
.box-red {
	padding: 2px;
	background-color: #fcc!important;
}/*赤色*/


/*------------------------------------------------------------
入力フォームをハイライトする
-------------------------------------------------------------*/

input:focus, textarea:focus, input.focus, textarea.focus {
	background-color: #ffffe4 !important;
}

/*------------------------------------------------------------
画像を簡単に回り込ませる（スマホでは解除ver.）
-------------------------------------------------------------*/

/*左に画像、右に文章*/
.left_01,.left_02{
	float:left;
	margin: 0.2em 0.4em 0.4em 0;
}

/*右に画像、左に文章*/
.right_01,.right_02{
	float:right;
	margin: 0.2em 0em 0.4em 0.4em;
}


@media only screen and (max-width : 768px) {

.left_01,.right_01{
	float: none;
	margin: 0 0 0.5em;
}

.imgcenter_01{
	width: 100%;
	text-align: center;
}
	
.imgcenter_01 img{
	width: 50%;
	height: auto;
}

	
}




/*------------------------------------------------------------
スマホ改行コード(スマホ時のみ改行される)
-------------------------------------------------------------*/

.sp_br {
	display: none;
}

@media only screen and (max-width : 768px) {
.sp_br {
	display: block;
}
	
}



/* CSS Document */
/*******************************************************

PC用レイアウト(768px以上のスクリーン)

*******************************************************/
/********************************
共通設定(PC用)
********************************/
/*body全体のスタイル設定*/
body {
  font-size: 62.5%; /*emの計算をしやすくする*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  color: #000;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*ブラウザのCSSをリセット*/
p {
  margin: 0 important;
  padding: 0 important;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}
/********************************
見出しタグ設定
********************************/
h2 {}
h3 {}
h4 {}
/********************************
全体レイアウト/背景設定(PC)
********************************/
/*全体エリア(全体背景を設定するにはここ)*/
.main {
  background-color: #f2f2f2;
}
/*記事エリア(ボディエリア背景設定はここ)*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.6em; /*16px*/
}
/*記事ボディエリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

/*カラム全体の幅*/
.top_image_in,.section_inr {
  width: 950px;
  margin: 0 auto;
}
/********************************
上部ヘッダー設定
********************************/
/*上部ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: rgba(250,250,250,0.9);
  overflow: hidden;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
}
.header_title {}
.header_logo {
  float: left;
  width: 25%;
}
.header_logo img {
  width: 100%;
}
.header_contact {
  width: 33%;
  float: right;
  margin: 1em -9em 0em 0em;
}
.header_contact img {
  width: 75%;
}
.header_tel {
  width: 27%;
  float: right;
  margin: 1.7em 0em 0em;
}
.header_tel img {
  width: 100%;
}

#header_02 {
	display: none;
}

/********************************
ファーストビュー設定
********************************/
.top_image {
  background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/firstview_pc_front.png");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}
.top_image_in img {
  width: 100%;
}
/********************************
セクション設定
********************************/
/*サブヘッド*/
.section_sub{
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/sub_back.png");
	background-repeat: repeat-y;
	background-size: cover;
	color: #fff;
	height: 160px;
}

.section_sub_in{
	background-color:transparent;
	position: relative;
}


.sub_img{
	position:absolute;
	top:-16px;
	left: 0;
	text-align: center;
	padding: 0 3em;
}

.sub_img img{
	width: 100%;
}


/*セクション悩み*/
.section_nayami{
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png"); /* 全体の背景画像 */
	padding: 1em 0em;
	font-size: 1.2em;
}

.section_nayami_in{
	background-color: transparent;
}

.section_nayami ul.checklist {
	background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_main_in.png);
	margin: 0 -2em 0.5em;
	padding: 1em 2em;
	border: 5px solid #ccc;
	border-radius: 10px;
}
.section_nayami ul.checklist li {
	margin-bottom: 0.8em;
	padding-top: 0px;
	padding-left: 42px;
	background: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/icon-check04-red.png) left top no-repeat;
	list-style-type: none;
	font-weight: bold;
}

/*実績*/
.section_jisseki {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_wara.png");
  padding: 2em 0em 1em;
}

.box_jirei_01 {
	width: 48%;
	float: left;
	background-color: rgb(255,255,255,0.8);
	padding: 1em 1em;
	border: 3px solid #ccc;
	margin-bottom: 1em;
	margin-left: 10px;
}
.title_jirei_01 {
	color: #fff;
	background-color: #637e4d;
	padding: 0.2em 0.5em;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 10px;
	font-size: 120%;
}

/*プロフィール*/
.section_profile {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png"); /* 全体の背景画像 */
	padding: 1em 0em;
}

.circle {
  border-radius: 90%;
}
.box_profile {
  background-color: #fff;
	border: 5px solid #ccc;
  margin: 0 -2em;
  padding: 1em 2em;
  margin-bottom: 1em;
}

/*特徴*/
/*.section_tokutyo {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_ap_01.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	background-size: cover;
}*/

.section_tokutyo{
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_wara.png");
}

.section_tokutyo_in {
	background-color: transparent;
}
.box_tokutyo {
	border: 2px dotted #ccc;
	background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_main_in.png);
	margin: 0 -2em;
	margin-bottom: 1em;
	padding: 1em 2em;
	overflow: auto;
}
.line_under{
	border-bottom: 1px dotted #ccc;
	padding-bottom: 10px;
	margin-bottom: 1em;
}
/*ポリシー*/
.section_policy {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png");
}

.box_wb {
	border: 5px dotted #ccc;
	padding: 1em 2em 1em;
	overflow: auto;
	background-color: #fff;
}
.border_title {
	border-bottom: 2px solid #ccc;
	padding-bottom: 0.2em;
	margin-bottom: 1.5em;
}
.box_wb_left {
	width: 56%;
	float: left;
}
.box_wb_right {
	width: 42%;
	float: right;
}
.box_wb_right img {
	width: 100%
}
/*お客様の声*/
.section_koe {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_wara.png");
}

.box_koe {
	background-color: #fff;
	border: 3px double #ccc;
	width: 32%;
	float: left;
	margin: 1em 0.2em;
	padding: 1em 1em 1em;
	overflow: auto;
}
.box_koe p {
}
.koe_img {
	text-align: center;
}
.box_koe img {
	width: 50%;
	border-radius: 100%;
	margin-bottom: 1em;
}
.title_koe {
	border-bottom: 1px dotted #637e4d;
	padding: 0.5em 0.5em;
	margin-bottom: 0.8em;
	font-size: 100%;
}
/*
.box_koe{
	padding: 1em 2em;
	background-color: #fff;
	border: 5px solid #637e4d;
	margin-bottom: 1em;
	border-radius: 10px;
}

.title_koe{
	background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/icon-check4-red.png);
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 2.5em;
	font-weight: bold;
	font-size: 140%;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 0.5em;
	margin-bottom: 1em;	
	padding-top: 5px;
}
*/
/*.title_koe {
  background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_koe.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 5%;
  padding-left: 2em;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  font-size: 120%;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}*/
/*吹き出し*/
.chat-l, .chat-r {
  position: relative;
  overflow: hidden;
  margin: 0 0 0em;
}
.chat-l {
  margin-bottom: 1.5em;
}
.bubble {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 73%;
  min-height: 60px;
  margin-bottom: 2em;
  padding: 1em;
  border: 1px solid #ccc;
  background: #FFFEF2;
  border-radius: 10px;
  box-shadow: 0px 0px 0px #000;
}
.bubble .bubble-in {
  border-color: #FFFEF2;
}
.talker {
  display: block;
  width: 25%;
  height: auto;
  text-align: center;
}
.talker b {
  font-weight: normal;
}
.talker img {
  display: block;
  width: 150px;
  max-width: 100%;
  max-width: none\9; /*IE8への対応*/
  margin: auto;
  border-radius: 100%;
}
.chat-l .talker {
  float: left;
  margin-right: 2%;
}
.chat-r .talker {
  float: right;
  margin-left: 2%;
  margin-bottom: 1em;
}
.chat-l .bubble {
  float: right;
}
.chat-r .bubble {
  float: left;
}
.bubble .bubble-in:after, .bubble .bubble-in:before {
  position: absolute;
  top: 40%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
}
/*吹き出しの微調整*/
.bubble .b-arw20:after, .bubble .b-arw20:before {
  top: 20%;
}
.bubble .b-arw30:after, .bubble .b-arw30:before {
  top: 30%;
}
.bubble .b-arw40:after, .bubble .b-arw40:before {
  top: 40%;
}
.bubble .b-arw60:after, .bubble .b-arw60:before {
  top: 60%;
}
.bubble .b-arw70:after, .bubble .b-arw70:before {
  top: 70%;
}
.bubble .b-arw80:after, .bubble .b-arw80:before {
  top: 80%;
}
.chat-l .bubble .bubble-in:after, .chat-l .bubble .bubble-in:before {
  right: 100%;
}
.chat-r .bubble div:after, .chat-r .bubble div:before {
  left: 100%;
}
.chat-l .bubble .bubble-in:after {
  margin-top: -8px;
  border-width: 8px 20px;
  border-color: transparent;
  border-right-color: inherit;
}
.chat-l .bubble .bubble-in:before {
  margin-top: -9px;
  border-width: 9px 21px;
  border-color: transparent;
  border-right-color: #ccc;
}
.chat-r .bubble .bubble-in:after {
  margin-top: -8px;
  border-width: 8px 20px;
  border-color: transparent;
  border-left-color: inherit;
}
.chat-r .bubble .bubble-in:before {
  margin-top: -9px;
  border-width: 9px 21px;
  border-color: transparent;
  border-left-color: #ccc;
}
.bubble p:first-child {
  margin-top: 0;
}

/*よくある質問*/
.section_qa {
	background-color: #fff;
}

.accordion_header_02 {
	margin: 10px 0px 0em 0px;
	background: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/+.png) no-repeat, url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/img_kimono.png") no-repeat;
	background-color: #637e4d;
	background-size: 40px 40px;
	background-position: 8px 50%, 98% 50%;
	padding: 15px 2px 15px 55px;
	color: #fff;
	height: auto;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	display: block;
}
.selected02 {
	background: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/_.png) no-repeat, url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/img_kimono.png") no-repeat;
	;
	background-color: #637e4d;
	background-position: 8px 50%, 98% 50%;
}
.selected02 + * {
	background: #fff;
	background-position: 8px 50%;
}
.accordion_open_02 {
	margin: 0px 0px 15px 0px;
	padding: 10px;
	background: #fff;
	border-left: solid 4px #637e4d;
	border-right: solid 4px #637e4d;
	border-bottom: solid 4px #637e4d;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
}
.accordion_open_02:before {
	content: "";
}
.accordion_field_02 {
	display: block;
	line-height: 1.5;
	text-align: left;
	padding: 0 0 0 0px;
	margin: 0px 0 10px 0;
	color: #000;
	font-size: 100%;
	width: 100%;
}
/*サービス利用の流れ*/
.section_stepflow {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png");
}

/*ステップフローのCSS*/
ul.stepflow {
  border: none;
  margin: 1em 0.5em;
  padding: 0;
  list-style: none;
  color: #000;
}
ul.stepflow > li:before, ol.stepflow > li:before {
  background-color: #000 !important;
}
.stepflow li {
  position: relative;
  padding: 0 0 1.5em 1.8em;
}
.stepflow > li:before {
  content: "";
  width: 3px;
  background: #000;
  display: block;
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 5px;
}
.stepflow-white {
  content: '';
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px #000;
}
.stepflow-black {
  content: '';
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px #000;
  background-color: #000;
}
.stepflow_label {
  padding: 3px 0px 8px 0px;
  margin-bottom: 8px;
  color: #000;
  font-size: 1.2em;
  font-weight: bold;
}
.stepflow_title {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}
.stepflow_content {
  font-size: 1em;
  line-height: 1.5;
  margin-top: .5em;
  padding: 0 0 1.5em;
  border-bottom: dashed 1px #000;
}
/*ステップフローのCSSここまで*/

/*プラン*/
.section_plan{
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png");
}


.section_plan table {
	margin-bottom: 0.5em;
	padding: 0;
	border-top: 1px solid #959595;
	border-left: 1px solid #959595;
}

.section_plan th, .section_plan td {
	padding: 0.5em;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
}
.section_plan th {
	background-color: #f0f0f0;
	font-weight: bold;
	text-align: left;
}
.section_plan table.table-style01 th, .section_plan table.table-style01 td {
	text-align: center;
	vertical-align: middle;
}
.section_plan table.table-style01 th {
	background-color: #637e4d;
	color: #fff;
}


/*会社概要*/
.section_company {
  background-color: #FFF;
}
.section_company_in {
  background-color: transparent;
}

/*テーブルタグ*/
.section_company table {
  margin-bottom: 1.5em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 5px;
}
.section_company th, .section_company td {
  background-color: #f6f6f6;
  padding: 10px;
  text-align: center;
  border-left: 1px solid #fff;
}
.section_company th {
  background: #4d9ecc;
  vertical-align: middle;
  text-align: center;
  width: 100em;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
}
.section_company table, .section_company table{
  text-align: left;
  vertical-align: center;
  font-size: 100%;
}

.table-style02 th {
  background-color: #637e4d;
  border-radius: 0px;
}
.table-style02 td {
  background-color: #fff;
  text-align: left !important;
  border-radius: 5px;
  padding: 0.5em !important;
}

/*CTA*/
.section_cta {
	background-color: #637e4d;
}

/*問い合わせ部分*/
.section_entry {
  background-color: #637e4d;
}
.section_entry_in {
  background-color: transparent;
  padding: 1em 0em;
}
.box_entry {
  background-color: #fff;
  padding: 0em 2em 0.5em;
  border-radius: 5px;
  margin-bottom: 1em;
}
.entry_tel {
  width: 49%;
  float: left;
  margin: 0.5em 0em 0em;
}
.entry_mail {
  width: 49%;
  float: right;
  margin-top: 0.5em;
}

.caution_01 {
  color: #fff;
  text-align: center;
  font-size: 80%;
}


/********************************
いろいろCSS
********************************/
/********************************
下部フッター設定
********************************/
.footer {
  background-color: #637e4d;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}


/* CSS Document */

@media only screen and (max-width : 768px) {

/*******************************************************

スマホ用レイアウト(768px以下のスクリーン)

*******************************************************/

/********************************
共通設定(スマホ用)
********************************/
/*body全体のスタイル設定*/
body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

	
/********************************
全体レイアウト/背景設定(スマホ)
********************************/
/*全体エリア(全体背景を設定するにはここ)*/
.main {
  background-color: #f2f2f2;
}
/*記事エリア(ボディエリア背景設定はここ)*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.6em; /*16px*/
}
/*記事ボディエリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

/*カラム全体の幅*/
.top_image_in,.section_inr {
  width: 100%;
}
/********************************
上部ヘッダー設定
********************************/
/*上部ヘッダー全体*/
  .header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 5000;
    background-color: #fff;
    overflow: hidden;
  }
  /*ヘッダー内部をカラム幅にする*/
  .header_inr {
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
  }
  .header_title {}
  .header_logo {
    float: left;
    width: 25%;
  }
  .header_logo img {
    width: 100%;
  }
  .header_contact {
    width: 33%;
    float: right;
    margin: 0.4em -5.5em 0em 0em;
  }
  .header_contact img {
    width: 75%;
  }
  .header_tel {
    width: 27%;
    float: right;
    margin: 0.7em 0em 0em;
  }
  .header_tel img {
    width: 100%;
  }
	

#header_02 {
	display: block;
	width: 100%;
	background-color: rgba(255,255,255,0.7);
	position: fixed;
	bottom:0;
	left: 0;
	z-index: 100;
	border-bottom: 1px solid #ccc;
}
#header_in_02 {
	background-color: rgba(255,255,255,0.1);
	position: relative;
	padding: 0em 0em 0em;
	text-align: center;
}

#header_in_02 img{
	width: 100%;
}
	
	.footer_right{
		float: right;
		width: 50%;
	}	
	
	
	.footer_left{
		float: left;
		width: 50%;
	}	
	
	
/********************************
ここから下にstyle.cssを貼付けして調節
********************************/

	
	
/********************************
セクション
********************************/
/*サブヘッド*/
.section_sub{
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/sub_back.png");
	background-repeat: repeat-y;
	background-size: cover;
	color: #fff;
	height: auto;
}

.section_sub_in{
	background-color:transparent;
	position: relative;
}


.sub_img{
	position:static;
	top:0px;
	left: 0;
	text-align: center;
	padding: 0 0em;
}

.sub_img img{
	width: 95%;
}	

	
/*悩み*/
.section_nayami {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png"); /* 全体の背景画像 */
	padding: 1em 0em;
}
.section_nayami_in {
	background-color: transparent;
}
.section_nayami ul.checklist {
	background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_main_in.png);
	margin: 0 0.5em 0.5em;
	padding: 1em 1em;
	border: 3px solid #ccc;
	border-radius: 10px;
}
.section_nayami ul.checklist li {
	margin-bottom: 0.5em;
	padding-top: 5px;
	padding-left: 42px;
	padding-bottom: 5px;
	background: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/icon-check04-red.png) left top no-repeat;
	list-style-type: none;
	font-size: 100%;
}	
	
	
	
/*実績*/
.section_jisseki {
	
}
.box_jirei_01 {
	width: auto;
	float: none;
	border: 3px solid #ccc;
	padding: 1em 1em;
	margin: 0 0.5em;
	margin-bottom: 1em;
}
.title_jirei_01 {
	color: #fff;
	background-color: #637e4d;
	padding: 0.2em 0.5em;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 10px;
	font-size: 120%;
}
/*プロフィール*/
.section_profile {
	
}
  .circle {
    border-radius: 100%;
  }
  .box_profile {
    background-color: #FFF;
    margin: 0.5em;
    padding: 1em 1em;
    margin-bottom: 1em;
  }

/*特徴*/
.section_tokutyo {
	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_wara.png");
}
.section_tokutyo_in {
	background-color: transparent;
}
.box_tokutyo {
	border: 2px dotted #ccc;
	background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_main_in.png);
	margin: 0.5em;
	margin-bottom: 1em;
	padding: 1em 1em;
}
.line_under{
	border-bottom: 1px dotted #ccc;
	padding-bottom: 10px;
	margin-bottom: 1em;
}
/*ポリシー*/
.section_policy {
	
}
	
.box_wb {
	border: 2px dotted #ccc;
	padding: 1em 0.5em 1em;
	margin: 0.5em;
	overflow: auto;
}
.border_title {
	border-bottom: 2px solid #ccc;
	padding-bottom: 0.2em;
	margin-bottom: 1.5em;
}
.box_wb_left {
	width: 100%;
	float: none;
}
.box_wb_right {
	width: 100%;
	float: none;
	margin-top: 1em;
}
.box_wb_right img {
	width: 100%
}

/*お客様の声*/
.section_koe {
}

.box_koe {
	width: 97%;
	background-color: #fff;
	border: 3px double #ccc;
	padding: 1em 0.5em 0em;
	overflow: auto;
	margin: 0.5em;
}
.box_koe p {
}
.box_koe img {
	border-radius: 100%;
	width: 40%;
	margin-bottom: 0em;
}
.title_koe {
}	
/*	
.box_koe{
	padding: 1em 1em;
	background-color: #fff;
	border: 5px solid #637e4d;
	margin-bottom: 1em;
	border-radius: 10px;
}

.title_koe{
	background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/icon-check4-red.png);
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 2.5em;
	font-weight: bold;
	font-size: 140%;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 0.5em;
	margin-bottom: 1em;	
	padding-top: 5px;
}
	*/
/*.title_koe {
    background-image: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_koe.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 12%;
    padding-left: 2.2em;
    padding-bottom: 0.3em;
    margin-bottom: 0.5em;
    font-size: 120%;
    font-weight: bold;
    border-bottom: 1px dotted #ccc;
  }*/	
	
/*よくある質問*/
.section_qa {
	margin: 0.5em;
	font-size: 100%;
}
	

.accordion_header_02 {
	margin: 10px 0px 0em 0px;
	background: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/+.png) no-repeat, url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/img_kimono.png") no-repeat;
	background-color: #637e4d;
	background-size: 40px 40px;
	background-position: 8px 50%, 98% 50%;
	padding: 15px 2px 15px 55px;
	color: #fff;
	height: auto;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	display: block;
	padding-right: 3em;
}
.selected02 {
	background: url(https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/_.png) no-repeat, url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/img_kimono.png") no-repeat;
	;
	background-color: #637e4d;
	background-position: 8px 50%, 98% 50%;
}
.selected02 + * {
	background: #fff;
	background-position: 8px 50%;
}
.accordion_open_02 {
	margin: 0px 0px 15px 0px;
	padding: 10px;
	background: #fff;
	border-left: solid 4px #637e4d;
	border-right: solid 4px #637e4d;
	border-bottom: solid 4px #637e4d;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
}
.accordion_open_02:before {
	content: "";
}
.accordion_field_02 {
	display: block;
	line-height: 1.5;
	text-align: left;
	padding: 0 0 0 0px;
	margin: 0px 0 10px 0;
	color: #000;
	font-size: 100%;
	width: 100%;
}	
	
	
/*サービス利用の流れ*/
.section_stepflow {
	margin: 0.5em;
}
	
/*プラン*/
	.section_plan{
		margin: 0.5em;

	background-image: url("https://naoshiya.kyoto/kimono/wp-content/themes/なをし屋リスティング広告用LP/images/bg_section_01.png");
	}
	
/*会社概要*/
.section_company {
	padding: 0.5em;
}
	
.section_company table {
    margin-bottom: 1.5em;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 5px;
  }
  .section_company th, .section_company td {
    background-color: #f9f9f9;
    padding: 10px;
    text-align: center;
    border-left: 1px solid #fff;
  }
  .section_company th {
    background: #637e4d;
    vertical-align: middle;
    text-align: center;
    width: 10px;
    overflow: visible;
    position: relative;
    color: #fff;
    font-weight: normal;
  }

	
.table-style02 th {
    background-color: #637e4d !important;
    border-radius: 0px;
  }
  .table-style02 td {
    text-align: left !important;
    border-radius: 5px;
    padding: 0.5em !important;
    font-size: 90%;
  }	
	
/*CTA*/
.section_cta {
	
}

/*問い合わせ部分*/
  .section_entry {
    background-color: #637e4d;
  }
  .section_entry_in {
    background-color: transparent;
    padding: 1em 0em;
  }
  .box_entry {
    margin: 0em 1em;
    background-color: #fff;
    padding: 0.5em 1em 1em;
    border-radius: 5px;
    margin-bottom: 1em;
  }
  .entry_tel {
    width: 100%;
    float: none;
    margin: 0.5em 0em 0em;
  }
  .entry_mail {
    width: 100%;
    float: none;
    margin-top: 0.5em;
  }
  .caution_01 {
    color: #fff;
    text-align: center;
    font-size: 90%;
  }
	
	
}

