@charset "UTF-8";
/*!
Theme Name: katsumi-amamori
Theme URI: https://katsumi-home.com/amamori
Author: Amiche
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearingsjus
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Theme
--------------------------------------------------------------*/
:root {
  --color_orange: #ec8c00;
  --color_yellow: #e6ac48;
  --color_beige: #fef2dd;
  --color_red: #d42d2d;
  --color_ivory: #fef2dd88;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 1px;
  font-size: 0.1rem;
  line-height: 1.5;
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.9375px;
  font-size: 0.09375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 0.9375px;
  font-size: 0.09375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.75px;
  font-size: 0.075rem;
  line-height: 1;
  padding: .6em 1em .4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #464646;
}
a:visited {
  color: #464646;
}
a:hover, a:focus, a:active {
  color: var(--color_orange);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875px;
  font-size: 0.0875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# themes
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

body {
  background: #333;
  /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

b,
strong {
  font-weight: bold;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
Links
--------------------------------------------------------------*/
a {
  color: #464646;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:visited {
  color: #464646;
}

a:focus {
  outline: none;
}

a:hover,
a:focus,
a:active {
  color: var(--color_orange);
}

/*--------------------------------------------------------------
Clearings
--------------------------------------------------------------*/
.cf:after {
  content: " ";
  display: block;
  clear: both;
}

/*--------------------------------------------------------------
theme Layout
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #333;
}

.font {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  line-height: 1.7;
  letter-spacing: 1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  body {
    min-width: initial;
  }
}
@media screen and (max-width: 400px) {
  body {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: .8;
}

.sp_none {
  display: block;
}

.pc_none {
  display: none;
}

.inline_block {
  display: inline-block;
}

.section_inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
  }

  .section_inner {
    width: 100%;
  }
}
/* #header
------------------------------------------------------------- */
#header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100px;
  top: 0;
  left: 5%;
  position: fixed;
  z-index: 99;
  padding: 2rem 3rem;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  background-color: white;
  box-shadow: 0px 4px 20px #0000001A;
  border-top: 5px solid var(--color_orange);
}
@media screen and (max-width: 768px) {
  #header {
    height: 8rem;
    border-radius: 0;
    width: 100%;
    left: 0;
  }
}
#header h1 a {
  display: block;
}
#header h1 img {
  width: 185.4px;
}
@media screen and (max-width: 768px) {
  #header h1 img {
    width: 208.6px;
    height: 42px;
  }
}
@media screen and (max-width: 480px) {
  #header h1 img {
    width: 149px;
    height: 30px;
  }
}
#header .contact_area {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 620px;
}
@media screen and (max-width: 768px) {
  #header .contact_area {
    display: none;
  }
}
#header .contact_area .contact_tel {
  width: 310px;
  text-align: center;
  padding: 0 25px;
}
#header .contact_area .contact_tel .contact_tel_ttl {
  background: #d02500;
  color: #fff;
  padding: 2px 0;
  margin-bottom: 5px;
}
#header .contact_area .contact_tel .contact_tel_num {
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 40px;
  font-size: 4rem;
  color: #d02500;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 5px;
}
#header .contact_area .contact_tel .contact_tel_hours {
  font-size: 13px;
  font-size: 1.3rem;
}
#header .contact_area .contact_email {
  width: 310px;
  height: 100%;
}
#header .contact_area .contact_email a {
  display: block;
  height: 100%;
  color: #fff;
  text-align: center;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
  padding-top: 22px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0;
}
#header .contact_area .contact_email i {
  margin-right: 5px;
}
#header .contact_area .contact_email .contact_email_ttl {
  width: 242px;
  margin: 0 auto 8px;
  padding: 2px 0;
  background: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #e37700;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #header .gnav {
    display: none;
  }
}
#header .gnav ul {
  max-width: 1000px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 auto;
}

#header .gnav ul li a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #252525;
  text-align: center;
  line-height: 1.4;
  padding: 1rem 2rem;
}
#header .gnav ul li a:hover {
  color: var(--color_orange);
  opacity: 1;
}
#header .gnav ul li.gnav_reason a, #header .gnav ul li.gnav_investigation a {
  
}
header .drawer-hamburger,
header .drawer-nav {
  display: none;
}

.drawer--top .drawer-hamburger {
  border: none;
  background: transparent;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .drawer--top .drawer-hamburger {
    display: block;
    width: 30px;
  }
}

.drawer-hamburger-icon {
  background-color: var(--color_orange);
}
.drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  background-color: var(--color_orange);
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-close .drawer-hamburger {
  position: absolute;
  top: 1rem;
  right: 15px;
  z-index: 100001;
}
@media screen and (max-width: 480px) {
  .drawer--top .drawer-hamburger,
  .drawer--top.drawer-close .drawer-hamburger {
    padding: 12px .75rem 20px;
  }
}

.drawer--top.drawer-open .drawer-hamburger {
  right: 15px;
}

.drawer--top.drawer-open .drawer-hamburger-icon:before, .drawer--top.drawer-open .drawer-hamburger-icon:after {
  background-color: #fff;
}

.drawer--top .drawer-nav {
  display: block;
  width: 100%;
  height: 100%;
  background: #133265;
  z-index: 100000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 60px 40px 40px;
}
@media screen and (max-width: 600px) {
  .drawer--top .drawer-nav {
    padding: 60px 20px 40px;
  }
}
.drawer--top .drawer-nav .drawer-menu ul {
  margin-bottom: 20px;
}
.drawer--top .drawer-nav .drawer-menu ul li a {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  padding: 18px 10px;
}
@media screen and (max-width: 480px) {
  .drawer--top .drawer-nav .drawer-menu ul li a {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 10px;
  }
}
.drawer--top .drawer-nav .drawer-menu .company_info {
  text-align: center;
  color: #fff;
  padding: 30px 20px;
  border: 1px solid #fff;
  border-radius: 4px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_name {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .drawer--top .drawer-nav .drawer-menu .company_info .company_name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 400px) {
  .drawer--top .drawer-nav .drawer-menu .company_info .company_name {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_addr {
  margin-bottom: 10px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .works_area {
  margin-bottom: 30px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_tel {
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_tel a {
  color: #fff;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_tel i {
  margin-right: 5px;
}
@media screen and (max-width: 600px) {
  .drawer--top .drawer-nav .drawer-menu .company_info .company_tel {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_tel .contact_tel_hours {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_contact {
  margin-top: 10px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_contact a {
  display: block;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  padding: 24px 15px;
  margin: 0 auto;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .drawer--top .drawer-nav .drawer-menu .company_info .company_contact a {
    max-width: initial;
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_contact a {
  font-size: 22px;
  font-size: 2.2rem;
  border-radius: 0;
}
@media screen and (max-width: 400px) {
  .drawer--top .drawer-nav .drawer-menu .company_info .company_contact a {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_contact i {
  margin-right: 5px;
}
.drawer--top .drawer-nav .drawer-menu .company_info .company_contact .contact_email_ttl {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 8px;
  padding: 2px 0;
  background: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #e37700;
  font-weight: bold;
  letter-spacing: 1px;
}
.drawer-nav.active {
  top: 0;
}

.mainvisual {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
	/*height: 600px;
  background: url(images/img_mainvisual.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;*/
}

.mainvisual iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

@media screen and (max-width: 768px) {
  .mainvisual {
    margin-top: 10%;
  }
}

@media screen and (max-width: 480px) {
  .mainvisual {
    margin-top: 15%;
  }
}

/*@media screen and (max-width: 768px) {
  .mainvisual {
    height: 480px;
    margin-top: 72px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual {
    height: 420px;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual {
    height: 360px;
    margin-top: 50px;
  }
}*/

/* content
------------------------------------------------------------- */
.content {
  width: 100%;
}
.content section {
  position: relative;
  margin: 70px auto;
}
@media screen and (max-width: 600px) {
  .content section {
    margin: 60px auto;
  }
}
@media screen and (max-width: 480px) {
  .content section {
    margin: 50px auto;
  }
}
.content section h2 {
  font-size: 40px;
  font-size: 4rem;
  color: #252525;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 53px;
}
@media screen and (max-width: 768px) {
  .content section h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .content section h2 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .content section h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.arc_blog {
/*  padding-bottom: min(14vw, 140px);*/
  padding-bottom: min(7vw, 70px);
}
.content section.sec_blog {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 1000px;
  min-height: 220px;
  margin: 50px auto 0;
}
.arc_blog .sec_blog h2 {
  text-align: left;
}
.arc_blog .btn_more.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .content section.sec_blog {
    padding: 0 15px;
  }
  .arc_blog .ttl_area .btn_more {
    display: none;
  }
  .arc_blog .btn_more.sp {
    display: block;
    width: 100%;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_blog {
    margin: 40px auto;
  }
}
.content section.sec_blog .ttl_area {
  width: 340px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content section.sec_blog .ttl_area {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .content section.sec_blog .ttl_area h2 {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
}
.content section.sec_blog ul {
  width: 660px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .content section.sec_blog ul {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .content section.sec_blog ul {
    padding: 0;
  }
}
.content section.sec_blog ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 10px;
  border-bottom: 1px solid var(--color_yellow);
}
.content section.sec_blog ul li a .blog_date {
  display: block;
  width: 100px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .content section.sec_blog ul li a .blog_date {
    display: block;
  }
}
.content section.sec_blog ul li a .blog_title {
  display: block;
  width: 440px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .content section.sec_blog ul li a .blog_title {
    display: block;
  }
}
.content section.sec_blog .btn_more {
  position: relative;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .content section.sec_blog .btn_more {
    position: static;
  }
}
.content section.sec_blog .ttl_area .btn_more a, 
.content section.sec_plan .btn_more a {
  display: block;
  width: 204px;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid var(--color_yellow);
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  background: #e37500;
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
}
@media screen and (max-width: 768px) {
  .content section.sec_blog .ttl_area .btn_more a, 
  .content section.sec_plan .btn_more a {
    width: 180px;
    margin: 0 auto;
    padding: 6px 5px;
  }
}
@media screen and (max-width: 600px) {
  .content section.sec_blog .ttl_area .btn_more a, 
  .content section.sec_plan .btn_more a {
    width: 160px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.content section.sec_works {
  background: var(--color_beige);
  margin: 0;
  padding: 20px 0 min(14vw, 14rem) 0;
}
@media screen and (max-width: 768px) {
  .content section.sec_works {
    padding: 20px 0 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .content section.sec_works {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_works {
    padding: 40px 20px;
  }
}
.content section.sec_works:after {
  content: '';
  width: 588px;
  height: 432px;
  background: url(images/bg_works_ink.png) no-repeat 0 0;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .content section.sec_works:after {
    width: 352.8px;
    height: 259.2px;
  }
}
@media screen and (max-width: 600px) {
  .content section.sec_works:after {
    width: 235.2px;
    height: 172.8px;
  }
}
@media screen and (max-width: 768px) {
  .content section.sec_works .section_inner {
    padding: 0 15px;
  }
}
.arc_blog .btn_more.sp a {
  display: block;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  padding: 24px 15px;
  margin: 0 auto;
  background: #e37500;
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  border-radius: 4px;
  position: relative;
}
.content section.sec_works h2 {
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.content section.sec_works h2 .ttl_en {
  display: block;
  text-transform: uppercase;
  font-family: 'roboto';
  font-size: 18px;
  font-size: 1.8rem;
  color: #EC8C00;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px) {
  .content section.sec_works h2 .ttl_en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_works h2 .ttl_en {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .content .btn_more.sp a {
    font-size: 20px;
    font-size: 2rem;
  }
}
.content section.sec_works .works_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .content section.sec_works .works_list {
    margin-bottom: 30px;
  }
}
.content section.sec_works .works_list li {
  width: 32%;
  margin: 0 2% 20px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .content section.sec_works .works_list li {
    width: 49%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_works .works_list li {
    margin-bottom: 10px;
  }
}
.content section.sec_works .works_list li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .content section.sec_works .works_list li:nth-child(3n) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .content section.sec_works .works_list li:nth-child(even) {
    margin-right: 0;
  }
}
.content section.sec_works .works_list li:nth-child(10) {
  display: none;
}
@media screen and (max-width: 768px) {
  .content section.sec_works .works_list li:nth-child(10) {
    display: block;
  }
}
.content section.sec_works .works_list li a {
  display: block;
}
.content section.sec_works .works_list li .works_info {
  padding: 20px 25px;
}
@media screen and (max-width: 600px) {
  .content section.sec_works .works_list li .works_info {
    padding: 20px 15px;
  }
}
.content section.sec_works .works_list li .works_date {
  font-size: 13px;
  font-size: 1.3rem;
}
.content section.sec_works .works_list li .works_ttl {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .content section.sec_works .works_list li .works_ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_works .works_list li .works_ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.content section.sec_works .works_list li .works_cat span {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 10px 10px 0;
  border-radius: 4px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .content section.sec_works .works_list li .works_cat span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.content section.sec_works .works_list li .works_cat span.cat_wall_painting {
  background: #3ea12e;
}
.content section.sec_works .works_list li .works_cat span.cat_interior {
  background: #e37a00;
}
.content section.sec_works .works_list li .works_cat span.cat_renovation {
  background: #d02500;
  letter-spacing: 0;
}
.content section.sec_works .works_list li .works_cat span.cat_exterior {
  background: #2367cc;
  letter-spacing: 0;
}
.content section.sec_works .works_list li .works_cat span.cat_other {
  background: #838383;
}
.content section.sec_works .btn_more a {
  display: block;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  padding: 24px 15px;
  margin: 0 auto;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .content section.sec_works .btn_more a {
    max-width: initial;
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}
.content section.sec_plan {
  margin: 0;
  padding: 70px 0 min(14vw, 140px) 0;
  background: url("/amamori/wp-content/themes/katsumi-amamori/images/bg01.jpg") repeat;
}
@media screen and (max-width: 768px) {
  .content section.sec_plan {
    padding: 60px 15px;
  }
}
.content section.sec_plan h2 p {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.content section.sec_plan .staff_photo {
  position: absolute;
  top: -44px;
  right: 82px;
}
@media screen and (max-width: 768px) {
  .content section.sec_plan .staff_photo {
    top: -31px;
    right: -5px;
  }
}
@media screen and (max-width: 600px) {
  .content section.sec_plan .staff_photo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .content section.sec_plan .staff_photo img {
    width: 155.2px;
    height: 203.2px;
  }
}
.content section.sec_plan .plan_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.content section.sec_plan .plan_list > li {
  width: 49%;
  
}
.plan_photo img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .content section.sec_plan .plan_list > li {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list > li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .content section.sec_plan .plan_list .plan_photo img {
    width: 100%;
  }
}
.content section.sec_plan .plan_list .plan_info {
  padding: 20px 25px 0 25px;
}
.content section.sec_plan .plan_list .plan_ttl_area {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.content section.sec_plan .plan_list .plan_ttl_area .plan_ttl {
  width: 100%;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 400px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.content section.sec_plan .plan_list .plan_ttl_area .plan_price {
  width: 100%;
  text-align: right;
  color: #d02500;
  line-height: 1.2;
}
.content section.sec_plan .plan_list .plan_ttl_area .plan_price strong {
  font-family: "Shippori Mincho", serif;
  font-size: 92px;
  font-size: 9.2rem;
}
@media screen and (max-width: 600px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price strong {
    font-size: 82px;
    font-size: 8.2rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price strong {
    font-size: 66px;
    font-size: 6.6rem;
  }
}
@media screen and (max-width: 400px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price strong {
    font-size: 60px;
    font-size: 6rem;
  }
}
.content section.sec_plan .plan_list .plan_ttl_area .plan_price .price {
  font-family: "Shippori Mincho", serif;
  font-size: 62px;
  font-size: 6.2rem;
}
@media screen and (max-width: 600px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price .price {
    font-size: 54px;
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price .price {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 400px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price .price {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
.content section.sec_plan .plan_list .plan_ttl_area .plan_price .price_unit {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price .price_unit {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price .price_unit {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 400px) {
  .content section.sec_plan .plan_list .plan_ttl_area .plan_price .price_unit {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.content section.sec_plan .plan_list .note {
  margin-bottom: 20px;
}
.content section.sec_plan .plan_list .note li {
  font-size: 13px;
  font-size: 1.3rem;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0;
}
.content section.sec_plan .plan_list .paint_info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content section.sec_plan .plan_list .paint_info .paint_photo {
  width: 200px;
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list .paint_info .paint_photo {
    width: 160px;
  }
}
.content section.sec_plan .plan_list .paint_info .paint_comment {
  width: calc(100% - 220px);
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 480px) {
  .content section.sec_plan .plan_list .paint_info .paint_comment {
    width: calc(100% - 180px);
  }
}
.content section.sec_plan .btn_more {
  margin-top: 20px;
}


/* #footer
------------------------------------------------------------- */
footer {
  background: #ffffff !important;
  padding-top: 50px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 15px 15px;
  }
}
footer .footer_logo {
  /* margin: 50px 0 20px; */
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  footer .footer_logo {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_logo img {
    width: 180px;
  }
}
footer .section_inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 3rem;
  margin-bottom: 60px;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  footer .section_inner {
    padding: 0 15px;
    margin-bottom: 20px;
  }
}
footer .company_info {
  width: 340px;
  border-right: 1px solid #DADADA;
}
@media screen and (max-width: 768px) {
  footer .company_info {
    width: 100%;
    text-align: center;
    border-right: none;
  }
}
footer .nav_area {
  width: 600px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .nav_area nav {
  width: 40%;
}
@media screen and (max-width: 768px) {
  footer .nav_area {
    width: 100%;
  }
  footer .nav_area nav {
    width: 100%;
    margin: 3rem 0;
  }
}
footer .nav_area nav li {
  margin-bottom: 8px;
}
footer .nav_area nav li a {
  color: #333;
  position: relative;
}
footer .nav_area nav li a::before {
  content:'';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: relative;
  margin-right: 1rem;
  transform: rotate(-45deg);
  border-right: 1px solid var(--color_orange);
  border-bottom: 1px solid var(--color_orange);
}
footer .nav_area .works_area {
  width: 60%;
}
@media screen and (max-width: 768px) {
  footer .nav_area .works_area {
    width: 100%;
  }
}
footer .nav_area .works_area dt {
  font-weight: bold;
  margin-bottom: 5px;
  float: none;
  padding: 0;
}
footer .nav_area .works_area dd {
  padding: 0;
  border: none;
  text-align: left;
}
footer .footer_copyright {
  width: 100%;
  max-width: 1000px;
  margin: 5rem auto 0;
  padding: 3rem 0 0;
  text-align: center;
  border-top: 1px solid var(--color_orange);
}
@media screen and (max-width: 768px) {
  footer .footer_copyright {
    text-align: center;
    margin-bottom: 20rem;
  }
}
footer .footer_copyright small {
  font-size: 12px;
  font-size: 1.2rem;
}
footer .footer_fixed_contact {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 90;
  background: #B20000;
}
footer .footer_fixed_contact.sp {
  background: linear-gradient(0deg, #B20000 90%, transparent 90%);
}
@media screen and (max-width: 768px) {
  footer .footer_fixed_contact.pc {
    display: none;
  }
  footer .footer_fixed_contact.sp {
    display: none;
    padding-bottom: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  footer .footer_fixed_contact.sp {
    display: none;
  }
}
footer .footer_fixed_contact .section_inner {
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
  max-width: none;
}
footer .footer_fixed_contact.sp .section_inner {
  justify-content: center;
  gap: 1rem;
}
footer .footer_fixed_contact .footer_fixed_contact_logo {
  width: min(20vw, 18.5rem);
  margin-right: auto;
  padding: 1.5rem;
}

footer .footer_fixed_contact .footer_fixed_contact_text {
  font-size: 14px;
  font-size: min(1vw, 1.4rem);
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
footer .footer_fixed_contact .footer_fixed_contact_text span {
  display: block;
  background-color: #fff;
  color: #B20000;
  text-align: center;
  border-radius: 5px;
}
footer .footer_fixed_contact .footer_fixed_contact_tel {
  padding: 0 1rem;
}
footer .footer_fixed_contact .footer_fixed_contact_tel i {
  font-size: 50px;
  font-size: min(3.5vw, 5rem);
  color: #fff;
}
footer .footer_fixed_contact .footer_fixed_contact_tel span {
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 50px;
  font-size: min(3.5vw, 5rem);
  color: #fff;
  letter-spacing: 2.5px;
  line-height: 1;
}
@media screen and (max-width:468px) {
  footer .footer_fixed_contact.sp .footer_fixed_contact_btn_area, 
  footer .footer_fixed_contact_btn_tel {
    width: 90%;
  }
}
footer .footer_fixed_contact .footer_fixed_contact_btn_area a {
  display: block;
  background: #FFF600;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
  font-size: 20px;
  font-size: min(1.5vw, 2rem);
  color: #075D82;
  text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  text-align: center;
  font-weight: 700;
  padding: 1.2rem min(1.5vw, 2rem) 1.2rem min(2vw, 3rem);
  position: relative;
  z-index: 0;
  letter-spacing: 0;
}
footer .footer_fixed_contact.sp .footer_fixed_contact_btn_area a {
  font-size: min(4vw, 2rem);
  padding: 1.2rem min(5vw, 2rem) 1.2rem min(5vw, 3rem);
}
footer .footer_fixed_contact.sp .footer_fixed_contact_btn_area a {
  border-radius: 4rem;
}
footer .footer_fixed_contact .footer_fixed_contact_btn_area a::before, 
footer .footer_fixed_contact .footer_fixed_contact_btn_area a::after {
  position: absolute;
  z-index: 1;
  text-shadow: none;
}
footer .footer_fixed_contact .footer_fixed_contact_btn_area a::before {
  content: '雨漏りの判断は私たちにお任せください！';
  color: white;
  background-color: #FA5800;
  border-radius: 2rem;
  padding: .8rem 2rem;
  top: 0;
  left: 2rem;
  transform: translateY(-60%);
  font-size: min(1vw, 1.8rem);
  font-weight: bold;
  line-height: 1;
}
footer .footer_fixed_contact.sp .footer_fixed_contact_btn_area a::before {
  left: 3rem;
  font-size: min(3vw, 1.4rem);
  transform: translateY(-70%);
}
footer .footer_fixed_contact .footer_fixed_contact_btn_area a::after {
  content:'';
  border-top: min(1vw, 1rem)  solid #FA5800;
  border-left: min(1vw, 1rem)  solid transparent;
  border-right: min(1vw, 1rem)  solid transparent;
  top: 0;
  left: 4rem;
  transform: translateY(80%);
}
footer .footer_fixed_contact.sp .footer_fixed_contact_btn_area a::after {
  border-top: min(3vw, 1rem)  solid #FA5800;
  border-left: min(3vw, 1rem)  solid transparent;
  border-right: min(3vw, 1rem)  solid transparent;
  left: 50%;
  transform: translateY(60%)translateX(-50%);
}
footer .footer_fixed_contact .footer_fixed_contact_btn_area a span {
  font-size: 26px;
  font-size: min(2vw, 2.6rem);
}
footer .footer_fixed_contact.sp .footer_fixed_contact_btn_area a span {
  font-size: min(5vw, 2.4rem);
}

footer .footer_fixed_contact .pagetop {
  width: 60px;
  background: var(--color_orange);
}
footer .footer_fixed_contact .pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 1;
  padding-top: 19px;
}
footer .footer_fixed_contact_btn_tel {
  border: 1px solid #fff;
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
  background-color: #B20000;
}
footer .footer_fixed_contact_btn_tel > div {
  text-align: center;
  color: #fff;
}
footer .footer_fixed_contact_btn_tel .left {
  padding-right: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
  border-right: 1px solid #fff;
}
footer .footer_fixed_contact_btn_tel .right {
  padding-left: 1rem;
  font-size: min(6vw, 2.4rem);
  line-height: 1.4;
}
footer .footer_fixed_contact_btn_tel .right b {
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}
footer .footer_fixed_contact_btn_tel .right i {
  font-size: min(6vw, 2.4rem);
}
footer .footer_fixed_contact_btn_tel .right span {
  font-size: 1rem;
  display: block;
}
@media screen and (max-width: 480px) {
  footer .footer_fixed_contact .pagetop a {
    width: 44px;
    height: 44px;
    padding-top: 13px;
  }
  footer .footer_fixed_contact .pagetop a img {
    width: 25.6px;
    height: 13.6px;
  }
}

.fade_in {
  opacity: 0;
  -webkit-transition: 3s;
  -moz-transition: 3s;
  -ms-transition: 3s;
  -o-transition: 3s;
  transition: 3s;
}
.fade_in.from_left {
  transform: translate(-50px, 0);
}
.fade_in.from_right {
  transform: translate(50px, 0);
}
.fade_in.from_top {
  transform: translate(0, -50px);
}
.fade_in.from_bottom {
  transform: translate(0, 50px);
}

.fade_in.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.btn_hover {
  position: relative;
}
.btn_hover.from_left:before {
  transform-origin: right top;
  transform: scale(0, 1);
}
.btn_hover.from_top:before {
  transform-origin: left bottom;
  transform: scale(1, 0);
}
.btn_hover:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: var(--color_orange);
  transition: transform .3s;
}
.btn_hover:hover {
  opacity: .99;
  color: #fff;
}
.btn_hover:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_hover.hover_white:before {
  background: #fff;
}
.btn_hover.hover_white:hover {
  color: var(--color_orange) !important;
}

/*--------------------------------------------------------------
 Page style
--------------------------------------------------------------*/
.page .main_ttl, .error404 .main_ttl, .archive .main_ttl, .single .main_ttl {
  height: 30rem;
  background-image: url(/amamori/wp-content/themes/katsumi-amamori/images/bg_main_ttl_default.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .page .main_ttl, .error404 .main_ttl, .archive .main_ttl, .single .main_ttl {
    margin-top: 72px;
  }
}
@media screen and (max-width: 480px) {
  .page .main_ttl, .error404 .main_ttl, .archive .main_ttl, .single .main_ttl {
    height: 300px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 400px) {
  .page .main_ttl, .error404 .main_ttl, .archive .main_ttl, .single .main_ttl {
    height: 280px;
  }
}
.page .main_ttl h1, .error404 .main_ttl h1, .archive .main_ttl h1, .single .main_ttl h1 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 480px) {
  .page .main_ttl h1, .error404 .main_ttl h1, .archive .main_ttl h1, .single .main_ttl h1 {
    width: 300px;
    height: 180px;
  }
}
@media screen and (max-width: 400px) {
  .page .main_ttl h1, .error404 .main_ttl h1, .archive .main_ttl h1, .single .main_ttl h1 {
    width: 260px;
    height: 150px;
  }
}
.page .main_ttl h1 .ttl_jp, .error404 .main_ttl h1 .ttl_jp, .archive .main_ttl h1 .ttl_jp, .single .main_ttl h1 .ttl_jp {
  display: block;
  width: 100%;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .page .main_ttl h1 .ttl_jp, .error404 .main_ttl h1 .ttl_jp, .archive .main_ttl h1 .ttl_jp, .single .main_ttl h1 .ttl_jp {
    font-size: 34px;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 480px) {
  .page .main_ttl h1 .ttl_jp, .error404 .main_ttl h1 .ttl_jp, .archive .main_ttl h1 .ttl_jp, .single .main_ttl h1 .ttl_jp {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 400px) {
  .page .main_ttl h1 .ttl_jp, .error404 .main_ttl h1 .ttl_jp, .archive .main_ttl h1 .ttl_jp, .single .main_ttl h1 .ttl_jp {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.page .main_ttl h1 .ttl_en, .error404 .main_ttl h1 .ttl_en, .archive .main_ttl h1 .ttl_en, .single .main_ttl h1 .ttl_en {
  display: block;
  text-transform: uppercase;
  font-family: 'roboto';
  font-size: 18px;
  font-size: 1.8rem;
  color: #EC8C00;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  .page .main_ttl h1 .ttl_en, .error404 .main_ttl h1 .ttl_en, .archive .main_ttl h1 .ttl_en, .single .main_ttl h1 .ttl_en {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 400px) {
  .page .main_ttl h1 .ttl_en, .error404 .main_ttl h1 .ttl_en, .archive .main_ttl h1 .ttl_en, .single .main_ttl h1 .ttl_en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.page .main_ttl h1.ttl_long .ttl_jp, .error404 .main_ttl h1.ttl_long .ttl_jp, .archive .main_ttl h1.ttl_long .ttl_jp, .single .main_ttl h1.ttl_long .ttl_jp {
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .page .content > section, .error404 .content > section, .archive .content > section, .single .content > section {
    padding: 0 15px;
  }
}

.error404 .content section.sec_404 h2 {
  font-weight: bold;
}
.error404 .content section.sec_404 p {
  text-align: center;
}
.error404 .content section.sec_404 .btn_return {
  margin-top: 40px;
}
.error404 .content section.sec_404 .btn_return a {
  display: block;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  padding: 24px 15px;
  margin: 0 auto;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .error404 .content section.sec_404 .btn_return a {
    max-width: initial;
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}

.reason header .gnav ul li.gnav_reason a {
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}


.sprinkling header .gnav ul li.gnav_investigation a, 
.infrared header .gnav ul li.gnav_investigation a{
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}
@media screen and (max-width: 768px) {
  .plan .content section.sec_plan {
    padding-top: 70px;
  }
}
.plan .content section.sec_plan .plan_list > li {
  margin-bottom: 20px;
}

.company header .gnav ul li.gnav_company a {
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}
.company .content section.sec_company .company_outline {
  width: 100%;
}
.company .content section.sec_company .company_outline tr:nth-child(odd) th {
  background: var(--color_ivory);
}
.company .content section.sec_company .company_outline tr:nth-child(odd) td {
  background: var(--color_ivory);
}
@media screen and (max-width: 600px) {
  .company .content section.sec_company .company_outline tr:nth-child(odd) td {
    background: #fff;
  }
}
.company .content section.sec_company .company_outline th,
.company .content section.sec_company .company_outline td {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 25px 20px;
}
@media screen and (max-width: 768px) {
  .company .content section.sec_company .company_outline th,
  .company .content section.sec_company .company_outline td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .company .content section.sec_company .company_outline th,
  .company .content section.sec_company .company_outline td {
    padding: 15px 20px;
  }
}
.company .content section.sec_company .company_outline th {
  width: 30%;
  font-weight: bold;
  color: var(--color_yellow);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .company .content section.sec_company .company_outline th {
    display: block;
    width: 100%;
    text-align: left;
    background: var(--color_ivory);
  }
}
.company .content section.sec_company .company_outline td {
  width: 70%;
}
@media screen and (max-width: 600px) {
  .company .content section.sec_company .company_outline td {
    display: block;
    width: 100%;
  }
}
.company .content section.sec_company .company_outline td p {
  margin-bottom: 20px;
}
.company .content section.sec_company .company_outline td dl dd {
  margin-bottom: 20px;
}
.company .content section.sec_company .company_outline td dl dd:last-child {
  margin-bottom: 0;
}
.company .container {
	position: relative;
}
.company .wrap {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 100px 30px;
}
.company .message h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 45px;
  line-height: 1.5;
}
.company h2 {
  background: url(./images/title_bg.svg) no-repeat center top;
  background-size: 250px;
  width: auto;
  height: 200px;
  text-align: center;
  padding-top: 44px;
  margin: 0 0 45px;
  font-family: "Shippori Mincho", serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1;
}
.company h2 code, .page h2 code {
  position: relative;
  font-family: "Neonderthaw", cursive;
  display: block;
  font-size: 3rem;
  font-weight: 400;
  color: #ec8c00;
  letter-spacing: 0;
  margin-top: 50px;
  transform: rotate(-10deg);
}
.company .message h2 {
	width: 250px;
}
.company .message p {
	line-height: 2 !important;
}
.company .message .image {
  position: relative;
}
.company .message .image::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 15px 15px white;
}
.company .wrapColor {
  position: relative;
}
.company .outline {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
.company .outline dt {
  float: left;
  clear: left;
  padding: 20px 0;
}
.company .outline dd {
  padding: 20px 0 20px  min(20%, 200px);
  border-bottom: 1px dotted #e6ac48;
}
.company .outline .wide {
  width: 100%;
  padding-left: 0;
}
.company .outline dd.noborder {
  border-bottom: 0 !important;
}


@media print, screen and (max-width: 1024px) {
  .page .max95 {
    max-width: 95% !important;
    margin: 0 auto;
  }
}
.page .position-relative {
  position: relative;
}
.page .justify-content-center {
  justify-content: center;
}
.page .reason {
  max-width: 380px;
}
.page .wrapFlexCe {
  justify-content: center;
}
.page .planTop.mb-0 {
  margin-bottom: 0;
}
.page .font-current {
  color: #e6ac48;
}
.page .reasonTop, 
.page .reasonBottom {
  width: 100%;
  max-width: 380px;
}


.staff header .gnav ul li.gnav_staff a {
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}
.staff .content section.sec_staff_list {
  max-width: 1000px;
  margin: 70px auto;
}
.staff .content section.sec_staff_list .staff_info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #00162d;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .staff .content section.sec_staff_list .staff_info {
    max-width: 560px;
    margin: 0 auto 30px;
  }
}
.staff .content section.sec_staff_list .staff_info:nth-child(even) {
  background: #1f6bbb;
}
.staff .content section.sec_staff_list .staff_info:nth-child(even) .staff_photo {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 768px) {
  .staff .content section.sec_staff_list .staff_info:nth-child(even) .staff_photo {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
}
.staff .content section.sec_staff_list .staff_info:nth-child(even) .staff_detail {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -moz-order: 0;
  -ms-flex-order: 0;
  order: 0;
}
@media screen and (max-width: 768px) {
  .staff .content section.sec_staff_list .staff_info:nth-child(even) .staff_detail {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
.staff .content section.sec_staff_list .staff_info:nth-child(even) .staff_basic_info .year {
  background: #00162d;
}
.staff .content section.sec_staff_list .staff_photo {
  width: 460px;
}
@media screen and (max-width: 768px) {
  .staff .content section.sec_staff_list .staff_photo {
    width: 100%;
  }
  .staff .content section.sec_staff_list .staff_photo img {
    width: 100%;
  }
}
.staff .content section.sec_staff_list .staff_detail {
  width: calc(100% - 460px);
  padding: 60px 50px;
}
@media screen and (max-width: 768px) {
  .staff .content section.sec_staff_list .staff_detail {
    width: 100%;
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .staff .content section.sec_staff_list .staff_detail {
    padding: 30px;
  }
}
.staff .content section.sec_staff_list h2 {
  font-size: 28px;
  font-size: 2.8rem;
  color: #fff844;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .staff .content section.sec_staff_list h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .staff .content section.sec_staff_list h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.staff .content section.sec_staff_list .staff_basic_info {
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .staff .content section.sec_staff_list .staff_basic_info {
    margin-bottom: 40px;
  }
}
.staff .content section.sec_staff_list .staff_basic_info .year {
  display: inline-block;
  background: #1f6bbb;
  padding: 3px 10px;
  margin-right: 10px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .staff .content section.sec_staff_list .staff_basic_info .year {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.staff .content section.sec_staff_list .staff_basic_info .name {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .staff .content section.sec_staff_list .staff_basic_info .name {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.staff .content section.sec_staff_list .staff_comment {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .staff .content section.sec_staff_list .staff_comment {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.contact .content section.sec_contact {
  max-width: 1000px;
  margin: 70px auto;
}
.contact .content section.sec_contact h2 {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 400px) {
  .contact .content section.sec_contact h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.contact .content section.sec_contact .photo_area {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact .content section.sec_contact .photo_area > div {
  width: 49%;
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact .photo_area > div {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contact .content section.sec_contact section h3 {
  font-size: 28px;
  font-size: 2.8rem;
  color: var(--color_orange);
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact section h3 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.contact .content section.sec_contact section .contact_tel_num {
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 68px;
  font-size: 6.8rem;
  color: #d12500;
  text-align: center;
  letter-spacing: 4px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section .contact_tel_num {
    font-size: 58px;
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact section .contact_tel_num {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 400px) {
  .contact .content section.sec_contact section .contact_tel_num {
    font-size: 40px;
    font-size: 4rem;
  }
}
.contact .content section.sec_contact section .contact_tel_hours {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact section .contact_tel_hours {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .contact .content section.sec_contact section .contact_tel_hours {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.contact .content section.sec_contact section.contact_email .form_table {
  padding: 20px 50px 50px;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table {
    padding: 20px 25px 40px;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact section.contact_email .form_table {
    padding: 0 0 30px;
  }
}
.contact .content section.sec_contact section.contact_email .form_table table {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table table {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact section.contact_email .form_table table {
    margin-bottom: 20px;
  }
}
.contact .content section.sec_contact section.contact_email .form_table table th,
.contact .content section.sec_contact section.contact_email .form_table table td {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 25px 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table table th,
  .contact .content section.sec_contact section.contact_email .form_table table td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact section.contact_email .form_table table th,
  .contact .content section.sec_contact section.contact_email .form_table table td {
    display: block;
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact section.contact_email .form_table table th,
  .contact .content section.sec_contact section.contact_email .form_table table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact .content section.sec_contact section.contact_email .form_table table th {
  width: 30%;
  vertical-align: top;
  padding-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table table th {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact section.contact_email .form_table table th {
    width: 100%;
    padding-bottom: 0;
  }
}
.contact .content section.sec_contact section.contact_email .form_table table td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table table td {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact section.contact_email .form_table table td {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.contact .content section.sec_contact section.contact_email .form_table table .required {
  display: inline-block;
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  background: #d42d2d;
  border-radius: 4px;
  padding: 0 5px;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.contact .content section.sec_contact section.contact_email .form_table table input[type="text"],
.contact .content section.sec_contact section.contact_email .form_table table input[type="email"],
.contact .content section.sec_contact section.contact_email .form_table table textarea {
  width: 80%;
  background: var(--color_ivory);
  border: none;
  border-radius: 0;
  padding: 15px 20px;
  font-size: 18px;
  font-size: 1.8rem;
  outline: none;
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table table input[type="text"],
  .contact .content section.sec_contact section.contact_email .form_table table input[type="email"],
  .contact .content section.sec_contact section.contact_email .form_table table textarea {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content section.sec_contact section.contact_email .form_table table input[type="text"],
  .contact .content section.sec_contact section.contact_email .form_table table input[type="email"],
  .contact .content section.sec_contact section.contact_email .form_table table textarea {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact .content section.sec_contact section.contact_email .form_table .btn_submit input[type="submit"] {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 35px 10px;
  border: none;
  border-radius: 4px;
  outline: none;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
}
@media screen and (max-width: 768px) {
  .contact .content section.sec_contact section.contact_email .form_table .btn_submit input[type="submit"] {
    font-size: 20px;
    font-size: 2rem;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 600px) {
  .contact .content section.sec_contact section.contact_email .form_table .btn_submit input[type="submit"] {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.contact .content section.sec_contact section.contact_email .form_table .btn_submit input[type="submit"]:hover {
  opacity: .8;
}

.thanks .content section.sec_complete .lead {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .thanks .content section.sec_complete .lead {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.thanks .content section.sec_complete .btn_return a {
  display: block;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  padding: 24px 15px;
  margin: 0 auto;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .thanks .content section.sec_complete .btn_return a {
    max-width: initial;
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
 Post style
--------------------------------------------------------------*/
.blog-list header .gnav ul li.gnav_blog a {
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}
.archive .content,
.single .content,
.blog-list .content {
  max-width: 1000px;
  margin: 50px auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .archive .content,
  .single .content,
  .blog-list .content {
    padding: 0 15px;
  }
}
.archive .content .primary,
.single .content .primary,
.blog-list .content .primary {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .archive .content .primary,
  .single .content .primary,
  .blog-list .content .primary {
    width: 100%;
    margin-bottom: 50px;
  }
}
.archive .content .secondary,
.single .content .secondary,
.blog-list .content .secondary {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .archive .content .secondary,
  .single .content .secondary,
  .blog-list .content .secondary {
    width: 100%;
  }
}
.archive .content .secondary .nav_category,
.single .content .secondary .nav_category,
.blog-list .content .secondary .nav_category {
  margin-bottom: 40px;
}
.archive .content .secondary h2,
.single .content .secondary h2,
.blog-list .content .secondary h2 {
  background: var(--color_yellow);
  padding: 10px 15px;
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
}
.archive .content .secondary ul li,
.single .content .secondary ul li,
.blog-list .content .secondary ul li {
  padding: 8px 15px;
}

.archive .content .primary ul,
.blog-list .content .primary ul {
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .archive .content .primary ul,
  .blog-list .content .primary ul {
    margin-bottom: 40px;
  }
}
.archive .content .primary ul li,
.blog-list .content .primary ul li {
  border-bottom: 1px solid #c8c8c8;
}
.archive .content .primary ul li:first-child a,
.blog-list .content .primary ul li:first-child a {
  padding-top: 0;
}
.archive .content .primary ul li a,
.blog-list .content .primary ul li a {
  display: block;
  padding: 25px 20px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .archive .content .primary ul li a,
  .blog-list .content .primary ul li a {
    padding: 25px 5px;
  }
}
.archive .content .primary ul li .news_date,
.blog-list .content .primary ul li .news_date {
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  .archive .content .primary ul li .news_date,
  .blog-list .content .primary ul li .news_date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.archive .content .primary ul li .news_ttl,
.blog-list .content .primary ul li .news_ttl {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .archive .content .primary ul li .news_ttl,
  .blog-list .content .primary ul li .news_ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.archive .wp-pagenavi,
.blog-list .wp-pagenavi {
  text-align: center;
  margin-top: 20px;
}
.archive .wp-pagenavi span.current,
.blog-list .wp-pagenavi span.current {
  background: #e6ac48;
  color: #fff;
  border-color: #e6ac48;
}
.archive .wp-pagenavi a,
.archive .wp-pagenavi span,
.blog-list .wp-pagenavi a,
.blog-list .wp-pagenavi span {
  display: inline-block;
  color: #333;
  padding: 3px 8px;
  border-radius: 0;
  border-color: #e6ac48;
}
.archive .wp-pagenavi a:hover,
.blog-list .wp-pagenavi a:hover {
  background: #e6ac48;
  color: #fff;
  border: 1px solid #e6ac48;
  opacity: 1;
}

.single .content .primary article {
  margin-bottom: 40px;
}
.single .content .primary article > header {
  display: block;
  position: static;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(46, 26, 0, 0.2);
}
.single .content .primary article h2 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.single .content .primary article .blog_date {
  font-size: 13px;
  font-size: 1.3rem;
}
.single .content .primary article .blog_ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.single .content .primary article .blog_content p {
  margin-bottom: 20px;
}
.single .content .primary article .blog_content p:last-child {
  margin-bottom: 0;
}
.single .content .primary article .btn_more {
  text-align: right;
}
.single .content .primary article .btn_more a {
  display: block;
  max-width: 380px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  padding: 24px 15px;
  margin: 0 auto;
  background: #e37500;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e37500 0%, #e29a00 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e37500 0%, #e29a00 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e37500', endColorstr='#e29a00',GradientType=1 );
  /* IE6-9 */
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .single .content .primary article .btn_more a {
    max-width: initial;
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}
.single .content .primary article .btn_more a {
  border-bottom: none;
  padding: 0 17px 0 0;
}
@media screen and (max-width: 480px) {
  .single .content .primary article .btn_more a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.single .content .primary article .btn_more a:after {
  right: 0;
}
.single .content .page_nav {
  margin-top: 30px;
  padding-bottom: 50px;
  position: relative;
}
.single .content .page_nav .screen-reader-text {
  display: none;
}
.single .content .page_nav .nav-previous,
.single .content .page_nav .nav-next,
.single .content .page_nav .post_archive {
  position: absolute;
  top: 0;
  width: auto;
}
@media screen and (max-width: 768px) {
  .single .content .page_nav .nav-previous,
  .single .content .page_nav .nav-next,
  .single .content .page_nav .post_archive {
    width: 32%;
  }
}
.single .content .page_nav .nav-previous a,
.single .content .page_nav .nav-next a,
.single .content .page_nav .post_archive a {
  display: block;
  width: 180px;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  color: #333;
  border: 1px solid #5a5a5a;
  padding: 6px 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single .content .page_nav .nav-previous a,
  .single .content .page_nav .nav-next a,
  .single .content .page_nav .post_archive a {
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.single .content .page_nav .nav-previous {
  left: 0;
}
@media screen and (max-width: 768px) {
  .single .content .page_nav .nav-previous {
    margin-right: 2%;
  }
}
.single .content .page_nav .nav-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .single .content .page_nav .nav-next {
    margin-left: 2%;
  }
}
.single .content .page_nav .post_archive {
  left: 50%;
  margin-left: -90px;
}
@media screen and (max-width: 768px) {
  .single .content .page_nav .post_archive {
    left: 34%;
    margin-left: 0;
  }
}
.single .content .page_nav .post_archive a {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .single .content .page_nav .post_archive a {
    width: 100%;
  }
}

.post-type-archive-works header .gnav ul li.gnav_works a,
.tax-works_category header .gnav ul li.gnav_works a,
.single-works header .gnav ul li.gnav_works a {
  color: var(--color_orange);
  border-bottom-color: var(--color_orange);
}
.post-type-archive-works header .gnav ul li.gnav_blog a,
.tax-works_category header .gnav ul li.gnav_blog a,
.single-works header .gnav ul li.gnav_blog a {
  background: transparent;
}

.post-type-archive-works .content,
.tax-works_category .content {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .post-type-archive-works .content,
  .tax-works_category .content {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .post-type-archive-works .content section.sec_works,
  .tax-works_category .content section.sec_works {
    padding: 60px 0;
  }
}
.post-type-archive-works .content section.sec_works .lead,
.tax-works_category .content section.sec_works .lead {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .post-type-archive-works .content section.sec_works .lead,
  .tax-works_category .content section.sec_works .lead {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .post-type-archive-works .content section.sec_works .lead,
  .tax-works_category .content section.sec_works .lead {
    text-align: left;
  }
  .post-type-archive-works .content section.sec_works .lead br,
  .tax-works_category .content section.sec_works .lead br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .post-type-archive-works .content section.sec_works .lead,
  .tax-works_category .content section.sec_works .lead {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.post-type-archive-works .content section.sec_works .select_works_cat,
.tax-works_category .content section.sec_works .select_works_cat {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .post-type-archive-works .content section.sec_works .select_works_cat,
  .tax-works_category .content section.sec_works .select_works_cat {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.post-type-archive-works .content section.sec_works .select_works_cat li,
.tax-works_category .content section.sec_works .select_works_cat li {
  width: 32%;
  margin: 0 2% 20px 0;
}
@media screen and (max-width: 768px) {
  .post-type-archive-works .content section.sec_works .select_works_cat li,
  .tax-works_category .content section.sec_works .select_works_cat li {
    width: 49%;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .post-type-archive-works .content section.sec_works .select_works_cat li,
  .tax-works_category .content section.sec_works .select_works_cat li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.post-type-archive-works .content section.sec_works .select_works_cat li:nth-child(3n), .post-type-archive-works .content section.sec_works .select_works_cat li:last-child,
.tax-works_category .content section.sec_works .select_works_cat li:nth-child(3n),
.tax-works_category .content section.sec_works .select_works_cat li:last-child {
  margin-right: 0;
}
.post-type-archive-works .content section.sec_works .select_works_cat li.cat_renovation p,
.tax-works_category .content section.sec_works .select_works_cat li.cat_renovation p {
  letter-spacing: 0;
}
.post-type-archive-works .content section.sec_works .select_works_cat li a,
.tax-works_category .content section.sec_works .select_works_cat li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background: #fff;
}
.post-type-archive-works .content section.sec_works .select_works_cat li a:hover,
.tax-works_category .content section.sec_works .select_works_cat li a:hover {
  background: #d9e3f3;
  opacity: 1;
}
.post-type-archive-works .content section.sec_works .select_works_cat li a img,
.tax-works_category .content section.sec_works .select_works_cat li a img {
  width: 110px;
}
@media screen and (max-width: 600px) {
  .post-type-archive-works .content section.sec_works .select_works_cat li a img,
  .tax-works_category .content section.sec_works .select_works_cat li a img {
    width: 90px;
  }
}
.post-type-archive-works .content section.sec_works .select_works_cat li a p,
.tax-works_category .content section.sec_works .select_works_cat li a p {
  width: calc(100% - 110px);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--color_orange);
  font-weight: bold;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .post-type-archive-works .content section.sec_works .select_works_cat li a p,
  .tax-works_category .content section.sec_works .select_works_cat li a p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .post-type-archive-works .content section.sec_works .select_works_cat li a p,
  .tax-works_category .content section.sec_works .select_works_cat li a p {
    width: calc(100% - 90px);
    font-size: 15px;
    font-size: 1.5rem;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .post-type-archive-works .content section.sec_works .select_works_cat li a p,
  .tax-works_category .content section.sec_works .select_works_cat li a p {
    padding: 10px 15px;
  }
}
.post-type-archive-works .content section.sec_works .works_list,
.tax-works_category .content section.sec_works .works_list {
  margin-bottom: 0;
}
.post-type-archive-works .content section.sec_works .works_list li.no-post,
.tax-works_category .content section.sec_works .works_list li.no-post {
  width: 100%;
  background: none;
  text-align: center;
}

.single-works .content {
  display: block;
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .single-works .content {
    padding: 0;
  }
}
.single-works .content section.sec_works_detail h2 {
  font-size: 26px;
  font-size: 2.6rem;
  color: #fff;
  text-align: left;
  background: var(--color_orange);
  padding: 10px 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail h2 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.single-works .content section.sec_works_detail .works_info {
  margin-bottom: 20px;
}
.single-works .content section.sec_works_detail .works_info .works_cat {
  display: inline-block;
}
.single-works .content section.sec_works_detail .works_info .works_cat span {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 10px 10px 0;
  border-radius: 4px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail .works_info .works_cat span {
    font-size: 15px;
    font-size: 1.5rem;
    margin-right: 5px;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .works_info .works_cat span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.single-works .content section.sec_works_detail .works_info .works_cat span.cat_wall_painting {
  background: #3ea12e;
}
.single-works .content section.sec_works_detail .works_info .works_cat span.cat_interior {
  background: #e37a00;
}
.single-works .content section.sec_works_detail .works_info .works_cat span.cat_renovation {
  background: #d02500;
  letter-spacing: 0;
}
.single-works .content section.sec_works_detail .works_info .works_cat span.cat_exterior {
  background: #2367cc;
  letter-spacing: 0;
}
.single-works .content section.sec_works_detail .works_info .works_cat span.cat_other {
  background: #838383;
}
.single-works .content section.sec_works_detail .works_info .works_date {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--color_orange);
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail .works_info .works_date {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .works_info .works_date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.single-works .content section.sec_works_detail .photo_before_after {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  align-items: start;
  margin-bottom: 40px;
}
.single-works .content section.sec_works_detail .photo_before_after > div {
  position: relative;
}
.single-works .content section.sec_works_detail .photo_before_after > div p {
  width: 124px;
  font-family: "Anton", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  padding: 3px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail .photo_before_after > div p {
    width: 100px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .photo_before_after > div p {
    width: 80px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.single-works .content section.sec_works_detail .photo_before_after .photo_before {
  width: 32%;
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .photo_before_after .photo_before {
    width: 100%;
    margin-bottom: 30px;
  }
  .single-works .content section.sec_works_detail .photo_before_after .photo_before img {
    width: 100%;
  }
}
.single-works .content section.sec_works_detail .photo_before_after .photo_before:after {
  content: '';
  width: 87px;
  height: 81px;
  background: url(images/img_icon_works_arrow_pc.png) no-repeat 0 0;
  background-size: cover;
  position: absolute;
  bottom: -101px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .single-works .content section.sec_works_detail .photo_before_after .photo_before:after {
    width: 69.6px;
    height: 64.8px;
    bottom: -80px;
  }
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail .photo_before_after .photo_before:after {
    width: 60.9px;
    height: 56.7px;
    bottom: -70px;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .photo_before_after .photo_before:after {
    content: none;
  }
}
.single-works .content section.sec_works_detail .photo_before_after .photo_before p {
  background: #d02500;
}
.single-works .content section.sec_works_detail .photo_before_after .photo_after {
  width: 64%;
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .photo_before_after .photo_after {
    width: 100%;
  }
}
.single-works .content section.sec_works_detail .photo_before_after .photo_after p {
  background: #3ea12e;
}
.single-works .content section.sec_works_detail table {
  width: 100%;
}
.single-works .content section.sec_works_detail table th,
.single-works .content section.sec_works_detail table td {
  padding: 25px;
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail table th,
  .single-works .content section.sec_works_detail table td {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail table th,
  .single-works .content section.sec_works_detail table td {
    display: block;
    border-bottom: none;
    padding: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.single-works .content section.sec_works_detail table th {
  width: 30%;
  background: #aacced;
  text-align: center;
  color: #ccc;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail table th {
    width: 100%;
    text-align: left;
  }
}
.single-works .content section.sec_works_detail table td {
  width: 70%;
  background: #e8eef5;
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail table td {
    width: 100%;
  }
}
.single-works .content section.sec_works_detail .page_nav {
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  .single-works .content section.sec_works_detail .page_nav {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .single-works .content section.sec_works_detail .page_nav {
    margin-top: 30px;
  }
}

.tax-works_category.term-cat_wall_painting .content section.sec_works .select_works_cat li.cat_wall_painting a {
  background: #d9e3f3;
}
.tax-works_category.term-cat_interior .content section.sec_works .select_works_cat li.cat_interior a {
  background: #d9e3f3;
}
.tax-works_category.term-cat_renovation .content section.sec_works .select_works_cat li.cat_renovation a {
  background: #d9e3f3;
}
.tax-works_category.term-cat_exterior .content section.sec_works .select_works_cat li.cat_exterior a {
  background: #d9e3f3;
}
.tax-works_category.term-cat_other .content section.sec_works .select_works_cat li.cat_other a {
  background: #d9e3f3;
}

/*# sourceMappingURL=style.css.map */


.bnr{
	padding-bottom: 0.25rem;
}

.post-type-archive-column header .gnav ul li.gnav_column a, 
.single-column header .gnav ul li.gnav_column a {
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}
.post-type-archive-investigation header .gnav ul li.gnav_investigation a, 
.single-investigation header .gnav ul li.gnav_investigation a, 
.investigation header .gnav ul li.gnav_investigation a{
  border-bottom-color: var(--color_orange);
  color: var(--color_orange);
}

.content section.sec_faq {
/*  background-color: var(--color_beige);*/
  margin: 0 auto;
}
.content section.sec_faq .section_inner {
  max-width: 600px;
  min-height: 220px;
  padding: 50px 15px 70px 15px;
}

.sec_faq .ttl_area {
  width: 400px;
}
.sec_faq .accordionCo {
  margin: 0 auto;
}

.qIcon {
  background: #e6ac48;
  display: inline-block;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  margin-right: 10px;
  border-radius: 100px;
  line-height: 38px;
}
.accordionCo ul {
  margin: 0 auto;
  padding: 0;
}
.accordionCo li {
  position: relative;
  text-align: justify;
  border-bottom: 1px dotted #e6ac48;
}
.accordionCo li:first-child {
  border-top: 1px dotted #e6ac48;
}
.accordionCo h3 {
  font-size: min(4vw, 1.8rem) !important;
  text-align: justify;
  margin-bottom: 0;
  padding-right: 30px;
}
.accordionCo a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  padding: 1em 0;
  position: relative;
  transition: 0.3s;
}
.accordionCo a:hover {
  color: #e6ac48;
}
.accordionCo li .accordion_icon,
.accordionCo li .accordion_icon span {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}
.accordionCo li .accordion_icon {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 32px;
  right: 3px;
}
.accordionCo li .accordion_icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e6ac48;
}
.accordionCo li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.accordionCo li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.accordionCo li .accordion_icon.active span:nth-of-type(1) {
  display: none;
}
.accordionCo li .accordion_icon.active span:nth-of-type(2) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.answer {
  display: none;
  padding-bottom: 20px;
}

.article {
  position: relative;
  z-index: 0;
}
.article section {
  z-index: 1;
}

@media print, screen and (max-width: 1024px) {
  .wave {
    position: absolute;
    background: url(/amamori/wp-content/themes/katsumi-amamori/images/wave.svg) no-repeat top;
    background-size: cover;
    width: 100%;
    height: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
  }
}
@media print, screen and (min-width: 1025px) {
  .wave {
    position: absolute;
    background: url(/amamori/wp-content/themes/katsumi-amamori/images/wave.svg) no-repeat top;
    background-size: 100%;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
  }
}



.diagonal {
  position: relative;
  z-index: 2;
  padding-bottom: 0 !important;
}
.diagonal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 100vw;
  border-color: transparent transparent transparent #fef2dd;
}

.content section h2 {
  font-weight: 600;
  margin: 0 auto;
  line-height: 1;
  padding-bottom: 8rem;
  position: relative;
}
.content section h2 span {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ec8c00;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: 'roboto';
}
.content section h2:not(.nobar) > span {
  margin-bottom: 2rem;
}
.content section h2.nobar span {
  margin-top: 2rem;
}
.content section h2:not(.nobar)::after{
  content:'';
  position: absolute;
  bottom: 5rem;
  left: 50%;
  width: 36px;
  height: 4px;
  background-color: #ec8c00;
  transform: translateX(-50%);
}
.frameTop {
  position: relative;
  background: url(/amamori/wp-content/themes/katsumi-amamori/images/box_bg.svg) no-repeat top;
  background-size: 100%;
  width: 100%;
  aspect-ratio: 380 / 50;
  padding: 0;
}
.frameInner {
  background: url(/amamori/wp-content/themes/katsumi-amamori/images/box_ce_bg.svg) repeat-y center;
  background-size: 100%;
  min-height: 330px;
  font-size: 1.4rem;
  text-align: justify;
  padding: 0 42px;
}
.frameBottom {
  position: relative;
  background: url(/amamori/wp-content/themes/katsumi-amamori/images/box_bg.svg) no-repeat bottom;
  background-size: 100%;
  width: 100%;
  aspect-ratio: 380 / 50;
  padding: 0;
}

.archive .content .sec_works {
  background: #ffffff;
}
.works_cat span {
  background-color: #ec8c00;
}
.works_thumb img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pt-20px {
  padding-top: 20px !important;
}

.investigation_price table thead {
  border-color: #ec8c00;
}
.investigation_price table thead th {
  color: #ec8c00;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto;
}
.investigation_price table strong {
  font-weight: bold !important;
}
.investigation_price .is-style-stripes tbody tr:nth-child(odd) {
  background-color: #fef2dd !important;
}

#investigation .sec_plan {
  padding-top: min(14vw, 140px);
}

.infrared_bg {
  background-image: url();
}
.constructionExample .new {
  background: #e6ac48 !important;
}

.single-column .content header {
  background: none;
  border-bottom: 1px dotted #e6ac48 !important;
  font-size: 32px;
  margin-bottom: 24px;
  padding-bottom: 0 !important;
}
.single-column .content h2.blog_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem !important;
  font-weight: 600;
  margin: 0 auto;
}
.single-column .content .blog_content h2:first-child {
  margin-top: 0;
}
.single-column .content .blog_content h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem !important;
  margin-top: 6rem;
  font-weight: 600;
}
.single-column .content .blog_content h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem !important;
  margin-top: 4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #ec8c00;
}
.single-column .content .blog_content .wp-block-image {
  margin-bottom: 2rem;
}
.single .content .primary article .blog_content p {
  font-size: 1.5rem;
}
.archive .content .news_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem !important;
}
.archive .content .news_date {
  margin: 1.5rem 0;
  display: block;
}
.archive .content, .single .content, .blog-list .content {
  max-width: 1260px;
}
.archive h3.planTop {
  margin-bottom: 3rem; 
}
@media print, screen and (min-width: 1025px) {
    .reason:nth-child(2) {
        margin-top: 0 !important;
    }
}

.mainvisual .main-h1 {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10vmax 3vw;
    display:flex;
    flex-direction: column; align-items:center;justify-content: center;
    backdrop-filter: blur(4px);
  }
  .mainvisual .main-h1 h1 {
    max-width: 1260px;
    margin: 0 auto;
    font-size: min(8vw,9rem);
    font-weight: 800;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 4rem;
  }
  .mainvisual .main-h1 h2 {
    text-align: center;
    background:
    linear-gradient(45deg,  transparent 20px, rgba(255, 255, 255, 0.8) 20px),
    linear-gradient(135deg, transparent 0, rgba(255, 255, 255, 0.8) 0),
    linear-gradient(225deg, transparent 20px, rgba(255, 255, 255, 0.8) 20px),
    linear-gradient(315deg, transparent 0, rgba(255, 255, 255, 0.8) 0);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    padding: 20px 25px;
    font-size: min(4vw, 2rem);
    font-weight: 800;
  }
.mainvisual .main-h1 h2 .sp-only {
  display:none;
}
  .mainvisual .btn:not(:hover) {
    background: #ec8c00;
  }
  .mainvisual .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem 2.75rem;
    line-height: 1;
  }
@media screen and (max-width: 768px) {
  .mainvisual .main-h1 h2 {
    width: 80%;
  }
  .mainvisual .main-h1 h2 .sp-only {
    display:inline;
  }
  .mainvisual .btn {
    width: 80%;
  }
}

.kv {
  width: 100%;
  position: relative;
  z-index: 0;
}
.kv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .kv .pc-only {
    display: none;
  }
  .kv {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 769px) {
  .kv .pc-only {
    display: block;
  }
  .kv .sp-only {
    display: none;
  }
}

.polygon {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: 140px;
  text-align: center;
}
.polygon.top {
  top: 0;
}
.polygon.btm {
  bottom: 0;
}
.polygon img.beige {
  filter: invert(99%) sepia(34%) saturate(586%) hue-rotate(314deg) brightness(88%) contrast(131%);
}
.polygon img.white {
  filter: invert(98%) sepia(2%) saturate(9%) hue-rotate(36deg) brightness(104%) contrast(102%);
}
