@charset "UTF-8";

/*! sanitize.css v7.0.3 | CC0 License | github.com/csstools/sanitize.css */
/* Document
 * ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Use the default user interface font in all browsers (opinionated).
 * 3. Correct the line height in all browsers.
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.15;
  /* 3 */
  -moz-tab-size: 4;
  /* 4 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Use the default monospace user interface font
 *    in all browsers (opinionated).
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: Menlo, Consolas, Roboto Mono, Ubuntu Monospace, Noto Mono,
    Liberation Mono, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Use the default monospace user interface font
 *    in all browsers (opinionated).
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: Menlo, Consolas, Roboto Mono, Ubuntu Monospace, Oxygen Mono,
    Liberation Mono, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/*
 * Remove the text shadow on text selections in Firefox 61- (opinionated).
 * 1. Restore the coloring undone by defining the text shadow
 *    in all browsers (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Remove the margin in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Show the overflow in Edge and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge and IE.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

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

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/* !Break Points - SP:SmartPhone, TB:Tablet, DT:Desktop, WS:WideScreen */
@media (max-width: 599px) {
  .onlySP {
    display: inline;
  }

  .onlyTB {
    display: none;
  }

  .overTB {
    display: none;
  }

  .onlyDT {
    display: none;
  }

  .overDT {
    display: none;
  }

  .overWS {
    display: none;
  }
}

@media (min-width: 600px) {
  html {
    font-size: 85%;
  }

  .onlySP {
    display: none;
  }

  .onlyTB {
    display: inline;
  }

  .overTB {
    display: inline;
  }

  .onlyDT {
    display: none;
  }

  .overDT {
    display: none;
  }

  .overWS {
    display: none;
  }
}

@media (min-width: 900px) {
  html {
    font-size: 95%;
  }

  .onlySP {
    display: none;
  }

  .onlyTB {
    display: none;
  }

  .overTB {
    display: inline;
  }

  .onlyDT {
    display: inline;
  }

  .overDT {
    display: inline;
  }

  .overWS {
    display: none;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 100%;
  }

  .onlySP {
    display: none;
  }

  .onlyTB {
    display: none;
  }

  .overTB {
    display: inline;
  }

  .onlyDT {
    display: none;
  }

  .overDT {
    display: inline;
  }

  .overWS {
    display: inline;
  }
}

/*  ==========================================================================
    Common
    ========================================================================== */
html,
body {
  margin: 0;
}

html {
  font-family: sans-serif;
  font-size: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 100%;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #555;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a:hover {
  color: #000;
}

sup {
  font-size: 0.8em;
}

.bold {
  font-weight: bold;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.rpsimg {
  width: 100%;
  height: auto;
}

.circle {
  border-radius: 100%;
}

.float {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
}

.float:hover {
  -webkit-box-shadow: 0 0 5px #999;
  box-shadow: 0 0 5px #999;
}

::-moz-selection {
  color: #d19a5f;
  background: #999;
  text-shadow: none;
}

::selection {
  color: #d19a5f;
  background: #999;
  text-shadow: none;
}

/*  ==========================================================================
    Link Animation
    ========================================================================== */
a.imgZoom .img_wrapper {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1301px) {
  a.imgZoom .img_wrapper02 {
    max-width: 250px;
    width: 250px;
    height: 250px;
  }
}

@media screen and (min-width: 851px) and (max-width: 1300px) {
  a.imgZoom .img_wrapper02 {
    height: 17.8vw;
  }
}

@media screen and (min-width: 600px) and (max-width: 850px) {
  a.imgZoom .img_wrapper02 {
    height: 37.2vw;
  }
}

@media (max-width: 599px) {
  a.imgZoom .img_wrapper02 {
    height: 42vw;
  }
}

@media (min-width: 1001px) {
  a.imgZoom .img_wrapper02 {
    max-width: 256px;
    width: 100%;
  }
}

@media (min-width: 851px) and (max-width: 1000px) {
  article.news .main_content#news .tile a.imgZoom .img_wrapper02 {
    height: 25.6vw;
  }
}

a.imgZoom .img_wrapper02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.imgZoom img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a.imgZoom:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

a.imgFadein .img_wrapper {
  background-color: #fff;
}

a.imgFadein img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

a.imgFadein:hover img {
  opacity: 1;
}

a.imgFadeout .img_wrapper {
  background-color: #fff;
}

a.imgFadeout img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}

a.imgFadeout:hover img {
  opacity: 0.5;
}

a.fadein {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

a.fadein:hover,
a.fadein.select {
  opacity: 1;
}

a.fadeout {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}

a.fadeout:hover,
a.fadeout.select {
  opacity: 0.5;
}

a.color {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a.color:hover,
a.color.select {
  color: #d19a5f;
}

a.colorR {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #d19a5f;
}

a.colorR:hover,
a.colorR.select {
  color: #fff;
}

a.btn {
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a.btn:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #999;
  padding-left: 0.5em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a.btn:hover {
  color: #fff;
  background-color: #000;
}

a.btn:hover:after {
  margin-right: -0.25em;
  padding-left: 0.75em;
}

a.btn.bottom:after {
  content: "";
}

a.btn.bottom:hover:after {
  margin-right: 0;
  padding-left: 0.5em;
}

a.morebtn {
  display: inline-block;
  padding: 1em 1.5em;
  border: 1px solid #666;
  font-size: 0.6em;
  line-height: 1;
  vertical-align: bottom;
}

a.morebtn.color:hover,
a.morebtn.color.select {
  border-color: #d19a5f;
}

/*  ==========================================================================
    Contents
    ========================================================================== */
.article {
  display: block;
  width: 100%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 900px) {
  .article {
    margin-top: 140px;
  }
}

.content {
  padding: 2em 0;
}

.content2 {
  padding: 0 0 2em;
}

.cont_wrapper2 {
  width: 90%;
  position: relative;
  padding: 0;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .content {
    padding: 3em 0;
  }

  .content2 {
    padding: 0 0 3em;
  }

  .cont_wrapper2 {
    max-width: 800px;
  }
}

.cont_wrapper {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .cont_wrapper {
    width: 80%;
  }
}

.cont_wrapper.mini {
  max-width: 800px;
}

.cont_wrapper.wide {
  width: 90%;
  max-width: 1280px;
}

.cont_wrapper.full {
  width: 100%;
  max-width: none;
}

.cont_wrapper.colpc2 {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .cont_wrapper.colpc2 .wrapperL {
    clear: both;
    float: left;
    width: 48%;
  }

  .cont_wrapper.colpc2 .wrapperR {
    float: right;
    width: 48%;
  }
}

/*  ==========================================================================
    Tile
    ========================================================================== */
.tiles {
  width: 102%;
  margin-left: -1%;
  padding: 0;
  font-size: 0;
}

.tile {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 3rem;
  padding: 0 1%;
  font-size: 1rem;
}

.tile a {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 599px) {
  .tiles.colspA .tile {
    width: auto;
  }

  .tiles.colsp1 .tile {
    width: 100%;
  }

  .tiles.colsp2 .tile {
    width: 50%;
  }

  .tiles.colsp3 .tile {
    width: 33.3333333333%;
  }

  .tiles.colsp4 .tile {
    width: 25%;
  }

  .tiles.colsp5 .tile {
    width: 20%;
  }

  .tiles.colsp6 .tile {
    width: 16.6666666666%;
  }

  .tiles.colsp7 .tile {
    width: 14.2857142857%;
  }

  .tiles.colsp8 .tile {
    width: 12.5%;
  }

  .tiles.colsp9 .tile {
    width: 11.1111111111%;
  }

  .tiles.colsp10 .tile {
    width: 10%;
  }

  .tiles.colsp11 .tile {
    width: 9.0909090909%;
  }
}

@media (min-width: 600px) {
  .tiles.coltbA .tile {
    width: auto;
  }

  .tiles.coltb1 .tile {
    width: 100%;
  }

  .tiles.coltb2 .tile {
    width: 50%;
  }

  .tiles.coltb3 .tile {
    width: 33.3333333333%;
  }

  .tiles.coltb4 .tile {
    width: 25%;
  }

  .tiles.coltb5 .tile {
    width: 20%;
  }

  .tiles.coltb6 .tile {
    width: 16.6666666666%;
  }

  .tiles.coltb7 .tile {
    width: 14.2857142857%;
  }

  .tiles.coltb8 .tile {
    width: 12.5%;
  }

  .tiles.coltb9 .tile {
    width: 11.1111111111%;
  }

  .tiles.coltb10 .tile {
    width: 10%;
  }

  .tiles.coltb11 .tile {
    width: 9.0909090909%;
  }
}

@media (min-width: 900px) {
  .tiles.colpcA .tile {
    width: auto;
  }

  .tiles.colpc1 .tile {
    width: 100%;
  }

  .tiles.colpc2 .tile {
    width: 50%;
  }

  .tiles.colpc3 .tile {
    width: 33.3333333333%;
  }

  .tiles.colpc4 .tile {
    width: 25%;
  }

  .tiles.colpc5 .tile {
    width: 20%;
  }

  .tiles.colpc6 .tile {
    width: 16.6666666666%;
  }

  .tiles.colpc7 .tile {
    width: 14.2857142857%;
  }

  .tiles.colpc8 .tile {
    width: 12.5%;
  }

  .tiles.colpc9 .tile {
    width: 11.1111111111%;
  }

  .tiles.colpc10 .tile {
    width: 10%;
  }

  .tiles.colpc11 .tile {
    width: 9.0909090909%;
  }
}

@media (min-width: 1280px) {
  .tiles.coldpA .tile {
    width: auto;
  }

  .tiles.coldp1 .tile {
    width: 100%;
  }

  .tiles.coldp2 .tile {
    width: 50%;
  }

  .tiles.coldp3 .tile {
    width: 33.3333333333%;
  }

  .tiles.coldp4 .tile {
    width: 25%;
  }

  .tiles.coldp5 .tile {
    width: 20%;
  }

  .tiles.coldp6 .tile {
    width: 16.6666666666%;
  }

  .tiles.coldp7 .tile {
    width: 14.2857142857%;
  }

  .tiles.coldp8 .tile {
    width: 12.5%;
  }

  .tiles.coldp9 .tile {
    width: 11.1111111111%;
  }

  .tiles.coldp10 .tile {
    width: 10%;
  }

  .tiles.coldp11 .tile {
    width: 9.0909090909%;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.cont_wrapper.colpc2:before,
.clearfix:after,
.cont_wrapper.colpc2:after {
  content: " ";
  display: table;
}

.clearfix:after,
.cont_wrapper.colpc2:after {
  clear: both;
}

.clearfix,
.cont_wrapper.colpc2 {
  *zoom: 1;
}

.mean-bar .meanmenu-reveal {
  padding: 15px !important;
}

header {
  position: relative;
}

header .content {
  padding: 0;
}

@media screen and (min-width: 800px) {
  header .content {
    padding: 2em 1em 1.5em;
  }
}

header #logo {
  z-index: 999999;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  margin: 9px 25% 0;
}

header #logo .rpsimg {
  width: 140px;
}

@media screen and (max-width: 799px) {
  header #logo {
    margin: 9px 10% 0 0;
  }
}

@media screen and (min-width: 800px) {
  header #logo {
    margin-top: 2em;
  }

  header #logo .rpsimg {
    width: 180px;
  }
}

header #gnav ul {
  font-size: 0;
}

header #gnav ul li {
  font-size: 1rem;
}

@media screen and (min-width: 800px) {
  header #gnav ul li {
    display: inline-block;
  }

  header #gnav ul li.onlyHM {
    display: none;
  }
}

header #gnav ul li > a {
  font-size: 1.4em;
  padding: 0.5em 0.8em;
}

@media screen and (min-width: 800px) {
  header #gnav #main_nav {
    margin-top: 5.5em;
  }

  header #gnav #main_nav ul li {
    font-size: 0.85rem;
    flex: 1;
    max-width: 150px;
  }

  header #gnav #main_nav ul {
    display: flex;
    justify-content: center;
  }

  header #gnav #main_nav ul li:not(.onlyHM) {
    border-right: solid 1px #ccc;
  }

  header #gnav #main_nav ul li:nth-of-type(8) {
    border: none;
  }

  header #gnav #main_nav ul li > a {
    font-size: 1.6em;
    font-family: "Noto Sans Japanese";
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.5em;
    position: relative;
    width: 100%;
  }

  header #gnav #main_nav ul li > a::before {
    content: "";
    display: block;
    max-width: 80%;
    width: 80px;
    height: 3px;
    background-color: #56ae99;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.3s;
  }

  header #gnav #main_nav ul li > a:hover::before {
    opacity: 1;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1100px) {
  header #gnav #main_nav ul li > a {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 801px) and (max-width: 1000px) {
  header #gnav #main_nav ul li > a {
    padding: 0.8em;
    font-size: 1.3em;
  }
}

header #gnav #side_nav {
  position: absolute;
  top: 8px;
  right: 10px;
}

header #gnav #side_nav li.txt_wrapper {
  color: #666;
  line-height: 1.1 !important;
  text-align: left;
}

header #gnav #side_nav li.txt_wrapper .tel {
  /* margin-bottom: 3px; */
  color: #000;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 0.5 !important;
  position: relative;
}

header #gnav #side_nav li.txt_wrapper .tel::before {
  content: "お客様専用ダイヤル";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, calc(-100% - 10px));
  font-size: 0.4em;
  font-weight: normal;
  letter-spacing: 0.1em;
}

header #gnav #side_nav li.txt_wrapper .tel img {
  vertical-align: baseline;
  margin-right: 0.2em;
}

@media screen and (max-width: 800px) {
  header #gnav #side_nav li.txt_wrapper {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  header #gnav #side_nav {
    top: 25px;
    right: 1rem;
  }

  header #gnav #side_nav li.tel-sp {
    display: none;
  }
  header #gnav #side_nav li.txt_wrapper .tel {
    margin-top: 0.7em;
  }
}

@media screen and (min-width: 800px) and (max-width: 1100px) {
  header #gnav #side_nav {
    top: 0;
  }

  header #side_nav ul li {
    display: block;
  }

  header #gnav #side_nav li.contact {
    margin-top: 5px;
  }
}

@media screen and (min-width: 1101px) {
  header #gnav #side_nav ul {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 799px) {
  header #gnav #side_nav ul {
    display: flex;
    align-items: center;
  }

  header #gnav #side_nav li.txt_wrapper {
    display: none;
  }

  header #gnav #side_nav li.tel-sp {
    position: relative;
    z-index: 999999;
  }

  header #gnav #side_nav li.tel-sp a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e3cc;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 2px 2px #ccc;
  }

  header #gnav #side_nav li.tel-sp a img {
    width: 18px;
    height: 18px;
  }
}

header #gnav #side_nav li.sns {
  display: none;
}

@media screen and (min-width: 800px) {
  header #gnav #side_nav li.sns {
    display: inline-block;
  }
}

header #gnav #side_nav li.sns a {
  font-size: 1.6em;
  padding: 0.5em;
}

header #gnav #side_nav li.contact {
  position: relative;
  z-index: 999999;
}

header #gnav #side_nav li.contact .cotact_btn {
  display: inline-block;
  font-size: 1.2em;
  margin-left: 1em;
  padding: 0.7em 1.2em;
  background: #e8e3cc;
  line-height: 1;
  border-radius: 1.75em;
  -webkit-box-shadow: 0px 2px 2px #ccc;
  box-shadow: 0px 2px 2px #ccc;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 799px) {
  header #gnav #side_nav li.contact .cotact_btn {
    margin-left: 0.5em;
    font-weight: bold;
  }
}

@media (min-width: 1280px) {
  header #gnav #side_nav li.contact .cotact_btn {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 800px) {
  header #gnav #side_nav li.contact .cotact_btn {
    position: relative;
    padding: 0.7em 1.2em 0.7em 2.5em;
  }

  header #gnav #side_nav li.contact .cotact_btn:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 14px;
    display: inline-block;
    background: url("../img/icon_mail.svg") no-repeat;
    background-size: contain;
    width: 17px;
    height: 16px;
  }

  header #gnav #side_nav li.contact .cotact_btn:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "";
    color: #999;
    padding-left: 0.5em;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}

header #gnav #side_nav li.contact .cotact_btn .cotact_info {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-left: 1em;
  padding: 1.5em;
  background: #e8e3cc;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px #999;
  box-shadow: 0px 3px 6px #999;
  text-align: left;
  white-space: nowrap;
}

header #gnav #side_nav li.contact .cotact_btn .cotact_info .intro {
  margin-bottom: 1em;
}

header #gnav #side_nav li.contact .cotact_btn .cotact_info a.btn {
  display: block;
  width: 100%;
  padding: 1em;
  border-radius: 2em;
  text-align: center;
}

header #gnav #side_nav li.contact .cotact_btn .cotact_info a.gofaq {
  color: #fff;
  background: #333;
}

header #gnav #side_nav li.contact .cotact_btn .cotact_info a.goform {
  color: #666;
  background: #fff;
}

header #gnav #side_nav li.contact .cotact_btn .cotact_info a.goform:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  padding-right: 0.5em;
}

header #gnav #side_nav li.contact .cotact_btn.active .cotact_info {
  display: block;
}

@media (min-width: 600px) {
  header #gnav #side_nav li.contact .cotact_btn:hover .cotact_info {
    display: block;
  }
}

footer {
  margin: 2em 0 0;
}

@media (max-width: 599px) {
  footer .cont_wrapper {
    width: 85%;
    margin: 0 auto;
  }
}

footer #area {
  color: #666;
}

footer #area .cont_wrapper {
  display: block;
  width: 100% !important;
  padding: 2em 2em;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
}

@media (min-width: 600px) {
  footer #area .cont_wrapper {
    max-width: 580px;
    padding: 2em 2em 2.5em;
    border: 1px solid #ddd;
    border-radius: 10px;
  }
}

footer #area .cont_wrapper #area_title {
  margin-bottom: 0.5em;
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
}

footer #area .cont_wrapper #area_title:before {
  content: "";
  display: inline-block;
  padding-right: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

footer #area .cont_wrapper #area_name {
  font-size: 0;
  text-align: left;
}

footer #area .cont_wrapper #area_name li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8;
}

footer #area .cont_wrapper #area_name li:after {
  content: "・";
}

footer #area .cont_wrapper #area_name li.area_token:before {
  content: "";
  display: inline-block;
  padding-right: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

footer #area .cont_wrapper #area_name li.area_token:after {
  content: "：";
}

footer #area .cont_wrapper #area_name li.last-child:after,
footer #area .cont_wrapper #area_name li:last-child:after {
  content: "";
  padding-right: 1em;
}

footer #area .cont_wrapper .attention {
  display: inline-block;
  margin-top: 0.75em;
  font-size: 1.2em;
  line-height: 1.4;
}

footer #area .cont_wrapper .attention a {
  text-decoration: underline;
}

footer .bnr .tile {
  margin-bottom: 1.5rem;
}

footer .bnr .tile:last-child {
  margin-bottom: 0;
}

footer .bnr .tile a .img_wrapper {
  max-height: 120px !important;
}

footer .bnr .tile a .img_wrapper .overtxt {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.5;
}

footer #bnr_s .tile a {
  position: relative;
  background: #e8e3cc;
  height: 100px;
  border-radius: 8px;
  font-size: 0.9em;
}

footer #bnr_s .tile a .title_en {
  position: absolute;
  left: -0.1em;
  bottom: 0;
  font-family: "Caveat", cursive;
  font-size: 3em;
  color: #fff;
}

footer #bnr_s .tile a:hover .title_en {
  color: #fff;
}

footer #copyright {
  margin: 1em 2em;
  color: #666;
}

footer #copyright a {
  text-decoration: underline;
}

article #hero {
  position: relative;
}

article #hero .txt_wrapper {
  font-family: "Noto Sans Japanese";
  font-weight: 500;
}

article#index #hero .txt_wrapper {
  position: absolute;
  color: #fff;
  top: 20%;
  right: 10%;
  font-size: 6vw;
  line-height: 1.2;
  text-shadow: 0px 2px 10px #666;
}

@media (min-width: 600px) {
  article#index #hero .txt_wrapper {
    top: 29%;
    right: 11.5%;
    font-size: 3.8vw;
  }
}

article.second_directory #hero {
  position: relative;
  display: table-cell;
  width: 100vw;
  height: 250px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 600px) {
  article.second_directory #hero {
    height: 400px;
  }
}

article.second_directory #hero:after {
  content: "";
  z-index: 998;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 600px) {
  article.second_directory #hero:after {
    height: 400px;
  }
}

article.second_directory #hero .txt_wrapper {
  z-index: 999;
  position: relative;
  color: #000;
  font-size: 2em;
  line-height: 1;
}

@media (min-width: 600px) {
  article.second_directory #hero .txt_wrapper {
    font-size: 3em;
  }
}

/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */
/* hide the link until viewport size is reached */
a.meanmenu-reveal {
  display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: relative;
  background: #fff;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #666;
  height: 3px;
  margin-top: 3px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #fff;
  margin-top: 44px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  color: #666;
  border-top: 1px solid #383838;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  border-top: 1px solid #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0.75;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 32px;
  padding: 12px !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(0, 0, 0, 0.9);
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.mean-remove {
  display: none !important;
}

/**
 * Swiper 4.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 1, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin-top: 10px;
  width: 100%;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-clickable .swiper-pagination-bullet:not(:last-of-type) {
  margin-right: 10px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #555;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.arrow {
  position: relative;
}

.arrow:after {
  position: absolute;
  content: "";
  display: inline-block;
  padding-left: 0.3em;
  color: #999;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.arrow:hover:after {
  padding-left: 0.6em;
}

article#index .main_content {
  position: relative;
  display: block;
  margin-top: 8em;
  margin-left: 5%;
  padding-top: 6em;
  padding-bottom: 0;
}

article#index #intro .content {
  padding: 3.5em 0;
}

@media (min-width: 600px) {
  article#index #intro .content {
    padding: 7em 0;
  }
}

@media (max-width: 599px) {
  article#index #intro .content .cont_wrapper {
    width: 80%;
  }
}

article#index #intro .catch {
  font-family: "Noto Sans Japanese";
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 1em;
}

article#index #intro .read p {
  font-size: 1.2em;
  text-align: justify;
  line-height: 2em !important;
  margin-top: 1em !important;
}

article#index #intro .read p:first-child {
  margin-top: 0 !important;
}

article.second_directory .main_content {
  position: relative;
  display: block;
  margin-bottom: 8em;
  padding-bottom: 0;
}

article.second_directory #intro.no_read {
  padding-bottom: 0;
}

article.second_directory #intro .content {
  padding-bottom: 3.5em;
}

@media (min-width: 600px) {
  article.second_directory #intro .content {
    padding-bottom: 7em;
  }
}

@media (max-width: 599px) {
  article.second_directory #intro .content .cont_wrapper {
    width: 80%;
  }
}

article.second_directory #intro .catch {
  position: relative;
  z-index: 999;
  font-family: "Caveat", cursive;
  font-size: 5em;
  line-height: 1;
  margin-top: -1.15em;
}

@media (min-width: 600px) {
  article.second_directory #intro .catch {
    font-size: 6em;
  }
}

article.second_directory #intro .read .title_jp {
  font-size: 0.9em;
  font-weight: bold;
}

article.second_directory #intro .read p {
  color: #666;
  font-size: 1.2em;
  text-align: justify;
  line-height: 2em !important;
  margin-top: 1em !important;
}

article.second_directory #intro .read p:first-child {
  margin-top: 0 !important;
}

body .main_content .title_ja {
  z-index: 99;
  position: relative;
  padding-left: 10%;
  font-family: "Noto Sans Japanese";
  font-size: 2.5em;
  font-weight: 500;
}

body .main_content .title_en {
  z-index: 98;
  position: absolute;
  font-family: "Caveat", cursive;
  left: 5%;
  font-size: 6em;
  top: 2.5rem;
  color: #fff;
  white-space: nowrap;
}

body .main_content:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body .cont_wrapper {
  position: relative;
  padding-top: 2em;
  padding-bottom: 0;
}

body .cont_wrapper .more {
  display: block;
  text-align: right;
}

body .cont_wrapper .more a.btn {
  display: inline-block;
  min-width: 70%;
  margin-bottom: -8em;
  padding: 0.75em 2.5em;
  border: 3px solid black;
  color: #000;
  font-size: 1.4em;
  text-align: center;
}

@media (min-width: 600px) {
  body .cont_wrapper .more a.btn {
    min-width: 28%;
  }
}

body .cont_wrapper .more a.btn:hover {
  color: #fff;
}

body #voice .cont_wrapper .tiles .tile {
  position: relative;
  z-index: 96;
}

body #voice .cont_wrapper .tiles .tile .img_wrapper {
  width: 80%;
  margin-right: 20%;
}

@media (min-width: 600px) {
  body #voice .cont_wrapper .tiles .tile .img_wrapper {
    width: 100%;
    margin-right: 0;
  }
}

body #voice .cont_wrapper .tiles .tile .txt_wrapper {
  position: relative;
  z-index: 97;
  padding: 1.5em;
  background-color: #fff;
  width: 70%;
  margin-left: 30%;
  margin-top: -2em;
}

@media (min-width: 600px) {
  body #voice .cont_wrapper .tiles .tile .txt_wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}

body #voice .cont_wrapper .tiles .tile .txt_wrapper .title {
  font-size: 1.6em;
  line-height: 1.4 !important;
}

body #voice .cont_wrapper .tiles .tile .txt_wrapper .tag {
  margin-top: 0.5em;
  color: #666;
  font-size: 1.2em;
}

body #voice:before {
  background: #d4e8cc;
}

body .bnr {
  padding-top: 0;
}

body .bnr .tile a .overtxt {
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 999;
  width: 100%;
  vertical-align: 50%;
  font-size: 1.6em;
}

body .bnr .tile a .overtxt.faq {
  letter-spacing: 0.3em;
}

body .bnr .tile a .img_wrapper {
  display: block;
  overflow: hidden;
  max-height: 190px;
  border-radius: 8px;
}

body .bnr .tile a .img_wrapper img {
  opacity: 0.5;
}

body .bnr .tile a .txt_wrapper {
  margin-top: 1em;
  font-size: 1.2em;
  line-height: 1.6;
}

body #company .cont_wrapper .txt_wrapper {
  font-size: 1.2em;
  z-index: 1000;
  width: 90%;
  margin: 0 auto 2em;
}

@media (min-width: 600px) {
  body #company .cont_wrapper .txt_wrapper {
    position: relative;
    width: 50%;
    margin-left: 50%;
    margin-top: -5em;
  }
}

body #company .cont_wrapper .txt_wrapper p {
  text-align: justify;
  line-height: 2 !important;
}

body #company .cont_wrapper .more .btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}

body #company .cont_wrapper .img_wrapper {
  position: relative;
  z-index: 998;
  display: block;
  overflow: hidden;
  width: 116.6666666666%;
  left: -5.5555555555%;
  margin-left: -5.5555555555%;
  max-height: 550px;
}

@media (min-width: 600px) {
  body #company .cont_wrapper .img_wrapper {
    width: 100%;
    margin-left: 12.5%;
  }
}

body #company:before {
  background: #cce2e8;
  height: 90%;
}

.topCompanyFlex {
  display: flex;
  justify-content: space-between;
}

.topCompanyFlex .topCompanyMap,
.topCompanyFlex .img_wrapper {
  width: 49% !important;
}

.topCompanyFlex .img_wrapper {
  margin-left: 2% !important;
  left: auto !important;
  margin-right: 8%;
}

.topCompanyFlex .img_wrapper p {
  margin-top: 1em;
}

.topCompanyMap iframe {
  width: 100%;
}

@media (max-width: 599px) {
  .topCompanyFlex {
    flex-direction: column-reverse;
  }

  .topCompanyFlex .topCompanyMap,
  .topCompanyFlex .img_wrapper {
    width: 100% !important;
  }

  .topCompanyFlex .topCompanyMap {
    margin-top: 15px;
  }

  .topCompanyFlex .img_wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

article#index section#reform .cont_wrapper .tiles .tile .txt_wrapper .title,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .title {
  margin-top: 0.5em;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.4 !important;
}

@media (min-width: 600px) {
  article#index section#reform .cont_wrapper .tiles .tile .txt_wrapper .title,
  article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .title {
    width: 88%;
  }
}

article#index section#reform .cont_wrapper .tiles .tile .txt_wrapper .area,
article#index section#reform .cont_wrapper .tiles .tile .txt_wrapper .tag,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .area,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .tag {
  margin-top: 0.5rem;
  color: #7b7b7b;
}

article#index
  section#reform
  .cont_wrapper
  .tiles
  .tile
  .txt_wrapper
  .area:before,
article#index
  section#reform
  .cont_wrapper
  .tiles
  .tile
  .txt_wrapper
  .tag:before,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .area:before,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .tag:before {
  display: inline-block;
  width: 1.3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
}

article#index section#reform .cont_wrapper .tiles .tile .txt_wrapper .area,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .area {
  font-size: 1.2em;
}

article#index
  section#reform
  .cont_wrapper
  .tiles
  .tile
  .txt_wrapper
  .area:before,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .area:before {
  content: "";
}

article#index
  section#reform
  .cont_wrapper
  .tiles
  .tile
  .txt_wrapper
  .tag:before,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .tag:before {
  content: "";
  font-size: 0.9em;
}

article#index section#reform .cont_wrapper .tiles .tile .txt_wrapper .tag li,
article.reform #reform .cont_wrapper .tiles .tile .txt_wrapper .tag li {
  display: inline;
  margin-right: 0.75em;
}

article#index section#reform:before,
article.reform #reform:before {
  background: #e8e3cc;
}

article#index section#news {
  margin-top: 0;
}

article.reform #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/index/hero.jpg);
}

article.reform #intro {
  margin-bottom: 4em;
}

article.reform #intro .catch {
  color: #ff8a41;
}

article.reform #search,
article.reform #point {
  position: relative;
  background: #e8e3cc;
}

article.reform #search .title_ja,
article.reform #point .title_ja {
  position: absolute;
  top: 0;
  margin-top: -0.5em;
  font-family: "Noto Sans Japanese";
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
}

article.reform #search .tag,
article.reform #search .room,
article.reform #point .tag,
article.reform #point .room {
  text-align: center;
}

article.reform #search .tag li,
article.reform #search .room li,
article.reform #point .tag li,
article.reform #point .room li {
  display: inline-block;
}

article.reform #search .tag a,
article.reform #search .room a,
article.reform #point .tag a,
article.reform #point .room a {
  display: block;
  background: #fff;
  margin: 0.5em 0.3em;
  padding: 1em 1.8em;
  border-radius: 3em;
  color: #7b7b7b;
}

article.reform #reform {
  position: relative;
  margin-top: 6em;
  padding-top: 4em;
}

article.reform #reform .title_ja {
  position: absolute;
  top: 0;
  margin-top: -0.5em;
  line-height: 1;
}

article.reform#detail {
  margin-top: 3em;
}

article.reform#detail #slideshow .cont_wrapper {
  position: relative;
}

@media all and (orientation: portrait) {
  article.reform#detail #slideshow .cont_wrapper {
    width: 100%;
  }
}

article.reform#detail #slideshow .cont_wrapper .swiper-wrapper .swiper-slide,
article.reform#detail
  #slideshow
  .cont_wrapper
  .swiper-wrapper
  .swiper-slide
  img {
  height: 50vh;
}

@media (min-width: 600px) {
  article.reform#detail #slideshow .cont_wrapper .swiper-wrapper .swiper-slide,
  article.reform#detail
    #slideshow
    .cont_wrapper
    .swiper-wrapper
    .swiper-slide
    img {
    height: 70vh;
    min-height: 500px;
  }
}

article.reform#detail
  #slideshow
  .cont_wrapper
  .swiper-wrapper
  .swiper-slide
  img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

article.reform#detail #slideshow .cont_wrapper .swiper-pagination,
article.reform#detail #slideshow .cont_wrapper .swiper-button-prev,
article.reform#detail #slideshow .cont_wrapper .swiper-button-next {
  display: block;
}

@media (min-width: 600px) {
  article.reform#detail #slideshow .cont_wrapper .swiper-pagination {
    /* display: none; */
  }

  article.reform#detail #slideshow .cont_wrapper .swiper-button-prev,
  article.reform#detail #slideshow .cont_wrapper .swiper-button-next {
    display: inline;
  }
}

article.reform#detail #slideshow .cont_wrapper:after {
  z-index: 9999;
  content: "Reform";
  position: absolute;
  top: 0;
  left: 1em;
  color: #ff8a41;
  font-family: "Caveat", cursive;
  font-size: 5em;
  margin-top: -0.4em;
}

article.reform#detail #intro {
  padding-top: 0;
}

@media (min-width: 600px) {
  article.reform#detail #intro .cont_wrapper,
  article.news#detail .cont_wrapper {
    max-width: 1080px;
    width: 100%;
  }
}

article.reform#detail #intro .cont_wrapper .title {
  color: #ff8a41;
  font-size: 3em;
  font-weight: bold;
  line-height: 1.4;
}

article.reform#detail #intro .cont_wrapper .area,
article.reform#detail #intro .cont_wrapper .tag {
  margin: 1em 0.75em 0 0;
  display: inline-block;
  color: #7b7b7b;
}

article.reform#detail #intro .cont_wrapper .area:before,
article.reform#detail #intro .cont_wrapper .tag:before {
  display: inline-block;
  width: 1.3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
}

article.reform#detail #intro .cont_wrapper .area:before {
  content: "";
}

article.reform#detail #intro .cont_wrapper .tag:before {
  content: "";
  font-size: 0.8em;
}

article.reform#detail #intro .cont_wrapper .tag li {
  display: inline;
  margin-right: 0.75em;
}

article.reform#detail #intro .cont_wrapper .read {
  margin: 2em 0;
  font-size: 1.2em;
  text-align: justify;
  line-height: 2;
}

article.reform#detail #intro .cont_wrapper .read li {
  list-style-position: inside;
  list-style-type: disc;
  text-indent: -1em;
  padding-left: 1em;
}

article.reform#detail #intro .cont_wrapper .overview {
  color: #7b7b7b;
}

article.reform#detail #intro .cont_wrapper .overview li {
  display: inline;
  margin-right: 0.75em;
}

article.reform#detail #point .room {
  padding-top: 0 !important;
}

article.reform#detail .content.room {
  position: relative;
  margin-top: 5em;
}

article.reform#detail .content.room:after {
  z-index: 8;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f1e5;
}

@media (min-width: 600px) {
  article.reform#detail .content.room:after {
    width: 95%;
    margin-left: 5%;
  }
}

article.reform#detail .content.room .cont_wrapper {
  z-index: 9;
  position: relative;
}

article.reform#detail .content.room .cont_wrapper .type {
  z-index: 10;
  position: relative;
}

article.reform#detail .content.room .cont_wrapper .type .title_jp {
  position: relative;
  z-index: 999;
  color: #ff8a41;
  font-size: 1.7em;
  font-weight: bold;
}

@media (min-width: 600px) {
  article.reform#detail .content.room .cont_wrapper .type .title_jp {
    font-size: 3em;
  }
}

article.reform#detail .content.room .cont_wrapper .type .title_en {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
  color: #fff;
  font-family: "Caveat", cursive;
  font-size: 6em;
  white-space: nowrap;
  margin: -0.75em 0 0 0.25em;
}

article.reform#detail .content.room .cont_wrapper .beforeafter_after {
  z-index: 11;
  position: relative;
  margin: 30px 0 1em;
}

@media (min-width: 900px) {
  article.reform#detail .content.room .cont_wrapper .beforeafter_after {
    margin-top: -5em;
  }
}

article.reform#detail
  .content.room
  .cont_wrapper
  .beforeafter_after
  .img_wrapper {
  background: #fff;
}

article.reform#detail .content.room .cont_wrapper .beforeafter_after img {
  width: 100%;
  height: 450px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

article.reform#detail .content.room .cont_wrapper .beforeafter_after:after {
  content: "After";
  display: block;
  width: 100%;
  color: #ff8a41;
  font-family: "Caveat", cursive;
  font-size: 3em;
  text-align: right;
  margin-top: -0.3em;
}

@media (min-width: 900px) {
  article.reform#detail .content.room .cont_wrapper .beforeafter_after {
    float: right;
    width: 60%;
  }
}

article.reform#detail .content.room .cont_wrapper .beforeafter_before {
  display: block;
  width: 50%;
  margin: 0 0 2em;
}

@media (min-width: 900px) {
  article.reform#detail .content.room .cont_wrapper .beforeafter_before {
    float: left;
    width: 40%;
    margin-top: 50px;
    padding-right: 5%;
  }
}

article.reform#detail
  .content.room
  .cont_wrapper
  .beforeafter_before
  .img_wrapper {
  background: #fff;
}

article.reform#detail .content.room .cont_wrapper .beforeafter_before img {
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

article.reform#detail .content.room .cont_wrapper .beforeafter_before:after {
  content: "Before";
  display: block;
  width: 100%;
  color: #7b7b7b;
  font-family: "Caveat", cursive;
  font-size: 2em;
}

article.reform#detail .content.room .cont_wrapper .txt_wrapper {
  clear: both;
  margin: 0 0 4em;
}

@media (min-width: 900px) {
  article.reform#detail .content.room .cont_wrapper .txt_wrapper {
    width: 70%;
  }
}

article.reform#detail .content.room .cont_wrapper .txt_wrapper .read {
  font-size: 1.2em;
  text-align: justify;
  line-height: 1.8;
}

article.reform#detail .content.room .cont_wrapper .txt_wrapper .manufacturer {
  margin-top: 1em;
  color: #7b7b7b;
}

article.reform#detail
  .content.room
  .cont_wrapper
  .txt_wrapper
  .manufacturer:before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
}

article.reform#detail
  .content.room
  .cont_wrapper
  .txt_wrapper
  .manufacturer
  li {
  display: inline;
  margin-right: 0.75em;
}

article.reform#detail .content.room .cont_wrapper #detail .tile {
  border-right: #fff solid 2px;
}

article.reform#detail .content.room .cont_wrapper #detail .tile:first-child {
  border-left: #fff solid 2px;
}

article.reform#detail .content.room .cont_wrapper #detail .detail_photo {
  width: 90%;
  margin: 0 auto;
}

article.reform#detail .content.room .cont_wrapper #detail .detail_photo img {
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

article.reform#detail .content.room .cont_wrapper #detail .detail_caption {
  display: block;
  width: 90%;
  margin: 1em auto 0.5em;
  text-align: center;
  line-height: 1.6em;
}

article.reform#detail .content.room .cont_wrapper .more {
  margin-bottom: -1em;
  font-size: 0.8em;
}

article#index #hero,
article.news #hero {
  background-position: bottom center;
}

article#index .main_content#news .tag .category,
article#index#detail .tag .category,
article.news .main_content#news .tag .category,
article.news#detail .tag .category {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 0.6em;
  border: 1px solid #ff8a41;
  background: #ff8a41;
  color: #fff;
  border-radius: 3px;
  font-size: 0.9em;
  line-height: 1;
}

article#index .main_content#news .tag .category.useful,
article#index#detail .tag .category.useful,
article.news .main_content#news .tag .category.useful,
article.news#detail .tag .category.useful {
  background: #449c84;
  border: 1px solid #449c84;
}

article#index .main_content#news .tag .category.staffblog,
article#index#detail .tag .category.staffblog,
article.news .main_content#news .tag .category.staffblog,
article.news#detail .tag .category.staffblog {
  background: #e8b53f;
  border: 1px solid #e8b53f;
}

article#index .main_content#news .tag .category.wakuwakurepo,
article#index#detail .tag .category.wakuwakurepo,
article.news .main_content#news .tag .category.wakuwakurepo,
article.news#detail .tag .category.wakuwakurepo {
  background: #4e6f99;
  border: 1px solid #4e6f99;
}

article#index .main_content#news .tag .category.newsletter,
article#index#detail .tag .category.newsletter,
article.news .main_content#news .tag .category.newsletter,
article.news#detail .tag .category.newsletter {
  background: #257585;
  border: 1px solid #257585;
}

article#index .main_content#news .tag .category.whatsnew,
article#index#detail .tag .category.whatsnew,
article.news .main_content#news .tag .category.whatsnew,
article.news#detail .tag .category.whatsnew {
  background: #b30609;
  border: 1px solid #b30609;
}

article#index .main_content#news .tag .date,
article#index#detail .tag .date,
article.news .main_content#news .tag .date,
article.news#detail .tag .date {
  display: inline-block;
  padding-bottom: 0.5em;
}

@media (min-width: 600px) {
  article#index .main_content#news .tag .date,
  article#index#detail .tag .date,
  article.news .main_content#news .tag .date,
  article.news#detail .tag .date {
    font-size: 1rem;
  }
}

article#index .main_content#news,
article.news .main_content#news {
  background: #f2dfdf;
}

article#index .main_content#news .tile,
article.news .main_content#news .tile {
  margin-bottom: 5rem;
}

article#index .main_content#news .tile a.imgZoom,
article.news .main_content#news .tile a.imgZoom {
  display: block;
  width: 100%;
  height: 100%;
}

article#index .main_content#news .tile .txt_wrapper,
article.news .main_content#news .tile .txt_wrapper {
  padding-top: 1.5em;
}

article#index .main_content#news .tile .txt_wrapper .title,
article.news .main_content#news .tile .txt_wrapper .title {
  position: relative;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.5 !important;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

@media (max-width: 599px) {
  article#index .main_content#news .tile .txt_wrapper .title,
  article.news .main_content#news .tile .txt_wrapper .title {
    font-size: 1.3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

article#index .main_content#news .more,
article.news .main_content#news .more {
  clear: both;
  text-align: center;
}

article#index section#news:before {
  height: 330px;
}

article.news {
  margin-bottom: 6em;
  /* News Detail page */
}

article.news #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/news/hero.jpg);
}

article.news #intro {
  margin-bottom: 0;
}

article.news #intro .catch {
  color: #c83f49;
}

article.news #news .cont_wrapper .tiles {
  margin-bottom: 6em !important;
}

article.news #news:before {
  height: 100%;
}

article.news #news:before {
  margin-left: -5.5%;
}

article.news#detail {
  border-top: 1px solid #ccc;
}

article.news#detail #intro .catch {
  margin: 0 0 -1em 8%;
}

@media (min-width: 600px) {
  article.news#detail #intro .catch {
    margin-bottom: -1.15em;
  }
}

article.news#detail .post_eyecatch {
  margin-bottom: 4em;
}

article.news#detail .post_eyecatch .rpsimg {
  border: 1px solid #ccc;
}

article.news#detail .txt_wrapper {
  width: 100%;
  margin: 0 auto;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

article.news#detail .txt_wrapper .post_title {
  color: #c83f49;
  margin-bottom: 1rem;
  font-size: 2.4em;
  font-weight: bold;
  line-height: 1.5;
  text-align: justify;
}

article.news#detail .txt_wrapper .tag {
  margin-bottom: 3em;
  /*
  &:after {
      content: "";
      display: block;
      width: 50px;
      height: 1px;
      margin: 2em 0 2.9em;
      background-color: #ccc;
  }
  */
}

article.news#detail .txt_wrapper .post_read {
  margin-bottom: 5rem;
}

article.news#detail .txt_wrapper .post_read p {
  margin-bottom: 2rem;
  color: #666;
  font-size: 1.3em;
  text-align: justify;
  line-height: 2;
}

article.news#detail .txt_wrapper .post_read img {
  max-width: 100%;
  margin: 0 auto;
}

article.news#detail .navi {
  background: #f2dfdf;
}

article.news#detail .navi .tiles {
  padding: 2em 10%;
}

article.news#detail .navi .tile {
  position: relative;
  margin-bottom: 0;
  padding: 2em 0;
  line-height: 1.5;
}

article.news#detail .navi .tile a {
  display: block;
}

article.news#detail .navi .tile a .rpsimg {
  display: none;
}

@media (min-width: 600px) {
  article.news#detail .navi .tile a .rpsimg {
    display: block;
    width: 70%;
  }
}

article.news#detail .navi .tile.prev a:after {
  content: "〈 前の記事";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  /*
      @include BP(overTB) {
          position: absolute;
          bottom: -.5em;
          left: 0;
      }
  */
}

article.news#detail .navi .tile.next {
  text-align: right;
}

article.news#detail .navi .tile.next a:after {
  content: "次の記事 〉";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  /*
      @include BP(overTB) {
          position: absolute;
          bottom: -.5em;
          right: 0;
      }
  */
}

article.news#detail .navi .tile.next .rpsimg {
  margin-left: 30%;
}

article.news#detail .navi .index {
  text-align: center;
  /*
  @include BP(overTB) {
      a {
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%); // Safari用
          transform: translateY(-50%);

          display: inline-block;
          padding: .8em 3em;
          border: 1px solid #222;
      }
  }
  */
}

article.warranty #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/warranty/hero.jpg);
}

article.warranty #intro .title_en {
  color: #9274e3;
}

article.warranty .main_content {
  text-align: center;
}

article.warranty .main_content .title_ja {
  margin-bottom: 0.2em;
  padding: 0;
  color: #9274e3;
}

article.warranty .main_content .read {
  font-size: 1.2em;
  line-height: 1.8;
}

article.warranty .main_content .year_icon {
  display: table-cell;
  width: 105px;
  height: 105px;
  margin: 4em 0 1em;
  padding-top: 0.5em;
  display: inline-block;
  color: #fff;
  background-color: #ae97ea;
  border-radius: 100%;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
  white-space: nowrap;
}

article.warranty .main_content .year_icon .year {
  margin-left: -0.2em;
  font-family: "Caveat", cursive;
  font-size: 6em;
  line-height: 0.9;
}

article.warranty .main_content .tiles {
  text-align: left;
}

@media (max-width: 599px) {
  article.warranty .main_content .tiles {
    padding-bottom: 1.6rem;
  }
}

@media (min-width: 600px) {
  article.warranty .main_content .tiles {
    border-bottom: 1px solid #ccc;
  }
}

article.warranty .main_content .tiles .tile {
  line-height: 1.8;
}

article.warranty .main_content .tiles .tile.taisho {
  font-size: 1.3rem;
  font-weight: bold;
}

article.warranty .main_content .tiles .tile.taisho.none {
  border: none;
  margin-top: 0;
  padding-top: 0;
}

article.warranty .main_content .tiles .tile.menseki {
  color: #666;
}

@media (max-width: 599px) {
  article.warranty .main_content .tiles .tile {
    text-align: center;
    margin: 0.2em 0;
  }

  article.warranty .main_content .tiles .tile.list_title {
    display: none;
  }

  article.warranty .main_content .tiles .tile.taisho {
    margin-top: 1em;
  }

  article.warranty .main_content .tiles .tile.hosho {
    font-size: 1.2rem;
  }

  article.warranty .main_content .tiles .tile.menseki:before {
    content: "特定免責事項：";
  }
}

@media (min-width: 600px) {
  article.warranty .main_content .tiles .tile {
    text-align: justify;
    margin: 0;
    padding: 1em;
    border-top: 1px solid #ccc;
    font-size: 1.1rem;
  }

  article.warranty .main_content .tiles .tile.list_title {
    border-top: none;
    color: #666;
    font-size: 0.9rem;
  }

  article.warranty .main_content .tiles .tile.none {
    border: none;
    padding-top: 0;
  }
}

article.warranty .main_content .attention {
  margin-top: 2em;
  color: #666;
  font-size: 0.9em;
  text-align: justify;
  line-height: 1.8;
}

article.warranty #after_mainte .cont_wrapper {
  padding: 3em 3em 1em;
  border: 2px solid #ae97ea;
  border-radius: 10px;
}

@media (min-width: 600px) {
  article.warranty #after_mainte .cont_wrapper {
    padding: 2em;
  }
}

article.warranty #after_mainte .cont_wrapper .title_ja {
  font-size: 1.6em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

@media (min-width: 600px) {
  article.warranty #after_mainte .cont_wrapper .title_ja {
    font-size: 2em;
  }
}

article.warranty #after_mainte .cont_wrapper .catch {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
}

article.warranty #after_mainte .cont_wrapper .read {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.2em;
  text-align: justify;
}

article.warranty #after_mainte .cont_wrapper .img_wrapper {
  margin-top: 2em;
}

article.warranty #after_mainte .cont_wrapper .img_wrapper .rpsimg {
  max-width: 360px;
}

article.faq #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/faq/hero.jpg);
}

article.faq #intro .title_en {
  color: #d1a07b;
}

article.faq .main_content .title_ja {
  border-bottom: 2px solid #ccc;
  color: #d1a07b;
  padding: 0 0.5em 0.3em;
  font-size: 1.4em;
}

article.faq .main_content .ac_menu {
  margin-bottom: 6em;
  border-bottom: 1px solid #ccc;
}

article.faq .main_content .ac_menu dt {
  position: relative;
  padding: 1em 3em 1em 0.75em;
  border-top: 1px solid #ccc;
  color: #d1a07b;
  font-weight: bold;
  line-height: 1.8;
  text-indent: -2.2em;
  padding-left: 3em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (min-width: 600px) {
  article.faq .main_content .ac_menu dt {
    font-size: 1.2em;
  }
}

article.faq .main_content .ac_menu dt:before {
  content: "Q";
  font-size: 1.6em;
  font-weight: normal;
  padding-top: 0.2em;
  padding-right: 0.5em;
}

article.faq .main_content .ac_menu dt:after {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 1.4em;
  font-weight: 900;
  color: #d1a07b;
  position: absolute;
  top: 1em;
  right: 1em;
  text-indent: 0;
  padding-left: 0;
}

article.faq .main_content .ac_menu dt.open:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

article.faq .main_content .ac_menu dt.open:hover {
  background-color: #fff;
}

article.faq .main_content .ac_menu dd {
  display: none;
  padding: 0 0.5em 1.2em 0;
  font-weight: normal;
  line-height: 1.8;
  text-indent: -2.2em;
  padding-left: 3em;
}

article.faq .main_content .ac_menu dd.open {
  display: inherit;
}

@media (min-width: 600px) {
  article.faq .main_content .ac_menu dd {
    font-size: 1.2em;
  }
}

article.faq .main_content .ac_menu dd:before {
  content: "A";
  font-size: 1.6em;
  font-weight: normal;
  padding-right: 0.5em;
}

article.faq .main_content .ac_menu dd a {
  text-decoration: underline;
}

article.company #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/company/hero.jpg?ud220315);
}

article.company#staff #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/company/staff.jpg?ud220315);
}

article.company #intro {
  margin-bottom: 4em;
}

article.company #intro .catch {
  color: #1760bc;
}

article.company #intro .philosophy {
  font-size: 1.2em;
  text-align: justify;
  line-height: 2;
}

@media (min-width: 600px) {
  article.company #intro .philosophy {
    font-size: 1.4em;
    text-align: center;
  }
}

article.company #intro .philosophy p {
  font-weight: bold;
  line-height: 2;
}

article.company #intro .philosophy .list {
  margin: 2em 0;
  color: #1760bc;
  font-weight: bold;
}

article.company #intro .philosophy .list li {
  list-style-position: inside;
  list-style-type: decimal;
}

article.company #message {
  position: relative;
  padding-top: 5em;
}

article.company #message:after {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-color: #cce2e8;
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  article.company #message:after {
    margin-left: 5%;
    width: 95%;
  }
}

article.company #message .cont_wrapper {
  z-index: 100;
  position: relative;
  max-width: 540px;
}

article.company #message .title_jp {
  color: #1760bc;
  font-size: 1.8em;
  font-weight: bold;
}

article.company #message .read {
  margin-top: 2em;
}

article.company #message .read p {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2;
  margin-top: 1em;
}

article.company #message .read p:first-child {
  margin-top: 0;
}

article.company #message .sign {
  text-align: right;
}

article.company #message .sign .rpsimg {
  max-width: 270px;
}

article.company #staff {
  padding-top: 0;
  position: relative;
}

article.company #staff .cont_wrapper {
  z-index: 99;
  padding: 3em;
  background-color: rgba(204, 226, 232, 0.9);
}

@media (min-width: 600px) {
  article.company #staff .cont_wrapper {
    margin-left: 5%;
    width: 95%;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -1em;
  }
}

@media (min-width: 1280px) {
  article.company #staff .cont_wrapper {
    width: 50%;
  }
}

article.company #staff .cont_wrapper .title_ja {
  color: #1760bc;
  font-size: 1.8em;
  font-weight: bold;
}

article.company #staff .cont_wrapper .read {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.5em;
}

article.company #staff .cont_wrapper .more .btn {
  width: 100%;
  margin-top: 1em;
}

article.company #overview .title_ja {
  color: #1760bc;
  font-size: 1.8em;
  font-weight: bold;
}

@media (min-width: 600px) {
  article.company #overview dl {
    font-size: 0;
  }
}

article.company #overview dt,
article.company #overview dd {
  display: block;
  width: 100%;
  line-height: 2;
}

@media (min-width: 600px) {
  article.company #overview dt,
  article.company #overview dd {
    font-size: 1.2rem;
    display: inline-block;
    width: 50%;
    margin: 0.5em 0;
    padding: 0.5em 0;
    border-top: 1px solid #eee;
    vertical-align: top;
  }
}

article.company #overview dt {
  color: #1760bc;
  border-top: 1px solid #eee;
}

@media (max-width: 599px) {
  article.company #overview dt {
    margin-top: 1em;
    padding-top: 0.5em;
  }
}

article.company #recruit {
  display: none;
}

article.company#staff #intro {
  margin-bottom: 0;
  padding-bottom: 0;
}

article.company#staff .main_content .staff {
  display: block;
  background-color: #cce2e8;
  width: 100%;
}

article.company#staff .main_content .staff:after {
  display: block;
  content: "";
  width: 100%;
  height: 30px;
  background: #fff;
}

@media (min-width: 600px) {
  article.company#staff .main_content .staff {
    max-width: 280px;
  }
}

article.company#staff .main_content .staff .img {
  padding: 0 5em 0 1.5em;
}

article.company#staff .main_content .staff .img .rpsimg {
  margin-top: -1.5em;
}

article.company#staff .main_content .staff .txt {
  padding: 1.5em;
  font-size: 1.2em;
}

article.company#staff .main_content .staff .txt .position {
  color: #666;
  font-weight: bold;
  letter-spacing: 0.1em;
}

article.company#staff .main_content .staff .txt .name {
  padding-top: 0.6rem;
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: 0.1em;
}

article.company#staff .main_content .staff .txt .kana {
  padding-top: 0.3rem;
  color: #666;
}

article.company#staff .main_content .staff .txt .list {
  padding-top: 0.6rem;
  font-size: 0;
}

article.company#staff .main_content .staff .txt .list li {
  display: inline-block;
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

article.company#staff .main_content .staff .txt .list li:before {
  content: "／";
}

article.company#staff .main_content .staff .txt .list li:first-child:before {
  content: "";
}

article.company#staff .main_content .staff .txt .read {
  margin-top: 0.8em;
  color: #333;
  text-align: justify;
  line-height: 1.8;
}

article.company#staff .main_content .staff .txt .read p {
  margin-bottom: 0.8em;
}

article.company#staff .main_content .more {
  margin-top: 5em;
  text-align: center;
}

article.contact #hero,
article.thankyou #hero {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/contact/hero.jpg);
}

article.contact #hero::after,
article.thankyou #hero::after {
  background-color: rgba(255, 255, 255, 0.6);
}

article.contact #intro .title_en,
article.thankyou #intro .title_en {
  color: #d1a07b;
}

article.contact .main_content .cont_wrapper,
article.thankyou .main_content .cont_wrapper {
  max-width: 540px;
}

article.contact .main_content dl.mailform,
article.thankyou .main_content dl.mailform {
  margin-top: 2.5em;
}

article.contact .main_content dt,
article.thankyou .main_content dt {
  display: block;
  padding: 0 0 0.5em;
  font-size: 1.2em;
}

article.contact .main_content dd,
article.thankyou .main_content dd {
  display: block;
  padding: 0 0 1.5em;
}
article.contact .main_content dd .wpcf7-text,
article.contact .main_content dd .wpcf7-date,
article.thankyou .main_content dd .wpcf7-text,
article.thankyou .main_content dd .wpcf7-date {
  width: 100% !important;
  margin-bottom: 1em;
  padding: 0.75em !important;
  border: 1px solid #ccc;
  background: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

article.contact .main_content dd .wpcf7-select.text-half,
article.thankyou .main_content dd .wpcf7-select.text-half,
article.contact .main_content dd .wpcf7-text.text-half,
article.contact .main_content dd .wpcf7-date.text-half,
article.thankyou .main_content dd .wpcf7-text.text-half,
article.thankyou .main_content dd .wpcf7-date.text-half {
  width: 48% !important;
  margin-right: 2%;
}

article.contact .main_content dd .wpcf7-list-item,
article.thankyou .main_content dd .wpcf7-list-item {
  margin: 0 0.5em 0 0 !important;
}

article.contact .main_content dd textarea {
  height: 150px;
}

article.thankyou .main_content dd textarea {
  height: 300px !important;
}

article.contact .main_content dd textarea,
article.thankyou .main_content dd textarea {
  width: 100% !important;
  padding: 0.75em;
  border: 1px solid #ccc;
  background: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

article.contact .main_content dd label,
article.contact .main_content dd select,
article.contact .main_content dd input[type="checkbox"],
article.contact .main_content dd input[type="radio"],
article.thankyou .main_content dd label,
article.thankyou .main_content dd select,
article.thankyou .main_content dd input[type="checkbox"],
article.thankyou .main_content dd input[type="radio"] {
  cursor: pointer;
}

article.contact .main_content dd label,
article.thankyou .main_content dd label {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0.3em 0.8em;
  border: 1px solid #eee;
  border-radius: 0.3em;
}

article.contact .main_content dd.chance label {
  border: none;
}

article.contact .main_content dd a,
article.thankyou .main_content dd a {
  border-bottom: 1px solid #ddd;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

article.contact .main_content dd a:hover,
article.thankyou .main_content dd a:hover {
  border-color: #999;
}

article.contact .main_content hr,
article.thankyou .main_content hr {
  border: none;
  height: 1px;
  background: #ccc;
}

article.contact .main_content .must,
article.thankyou .main_content .must {
  margin-left: 0.25em;
  padding: 0.1em;
  border: 1px solid #ff6666;
  border-radius: 2px;
  color: #ff6666;
  font-size: 0.7em;
}

article.contact .main_content .btn,
article.thankyou .main_content .btn {
  width: 100% !important;
  padding: 0.75em;
  border: none;
  color: #fff;
  background: #eea320;
  cursor: pointer !important;
  letter-spacing: 0.1em;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

article.contact .main_content .btn:hover,
article.thankyou .main_content .btn:hover {
  background: #666;
}

article.contact .main_content select,
article.thankyou .main_content select {
  position: relative;
  width: 100%;
  padding: 0.75em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #eee;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
}

article.contact .main_content select::-ms-expand,
article.thankyou .main_content select::-ms-expand {
  display: none;
}

article.contact .main_content select.half,
article.thankyou .main_content select.half {
  width: 48% !important;
}

article.contact .main_content .selecter,
article.thankyou .main_content .selecter {
  position: relative;
  /*
  &:after {
      position: absolute;
      right: 1em;
      padding-top: .65em;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f107";
      color: #666;
  }
  */
}

article.contact .main_content #readme,
article.thankyou .main_content #readme {
  margin-bottom: 2em;
  padding: 2em;
  border: 1px solid #eee;
  border-radius: 0.5em;
  font-size: 0.9em;
}

article.contact .main_content #readme .title,
article.thankyou .main_content #readme .title {
  font-size: 1.2em;
}

article.contact .main_content #readme .right,
article.thankyou .main_content #readme .right {
  text-align: right;
}

article.contact .main_content .frame,
article.thankyou .main_content .frame {
  margin: 2em 0;
  padding: 2em;
  border: 1px solid #eea320;
  border-radius: 0.5em;
}

article.contact .main_content .frame dd:last-child,
article.thankyou .main_content .frame dd:last-child {
  padding-bottom: 0;
}

article.contact .main_content #acceptance label,
article.thankyou .main_content #acceptance label {
  padding: 0;
  border: 0;
}

article.contact .main_content #attention,
article.thankyou .main_content #attention {
  margin-top: 3em;
  padding: 2em;
  border: 1px solid #eee;
  border-radius: 0.5em;
  color: #666;
  font-size: 0.9em;
}

article.contact .main_content #attention .read,
article.thankyou .main_content #attention .read {
  margin-bottom: 0.5em;
}

article.contact .main_content #attention .read a,
article.thankyou .main_content #attention .read a {
  text-decoration: underline;
}

article.contact .main_content .wpcf7c-conf,
article.thankyou .main_content .wpcf7c-conf {
  border: none !important;
  border-radius: 0 !important;
  color: #000 !important;
  background: #fff !important;
  font-weight: bold !important;
}

article.contact .main_content .wpcf7c-conf label,
article.contact .main_content .wpcf7c-conf select,
article.contact .main_content .wpcf7c-conf input[type="checkbox"],
article.contact .main_content .wpcf7c-conf input[type="radio"],
article.thankyou .main_content .wpcf7c-conf label,
article.thankyou .main_content .wpcf7c-conf select,
article.thankyou .main_content .wpcf7c-conf input[type="checkbox"],
article.thankyou .main_content .wpcf7c-conf input[type="radio"] {
  cursor: default !important;
}

article.contact .main_content .wpcf7c-conf label,
article.thankyou .main_content .wpcf7c-conf label {
  border: none !important;
}

article.contact .main_content .wpcf7c-conf label input[type="radio"],
article.contact .main_content .wpcf7c-conf label input[type="checkbox"],
article.thankyou .main_content .wpcf7c-conf label input[type="radio"],
article.thankyou .main_content .wpcf7c-conf label input[type="checkbox"] {
  color: #eee !important;
}

article.contact .main_content .wpcf7c-conf label input[type="radio"]:checked,
article.contact .main_content .wpcf7c-conf label input[type="checkbox"]:checked,
article.thankyou .main_content .wpcf7c-conf label input[type="radio"]:checked,
article.thankyou
  .main_content
  .wpcf7c-conf
  label
  input[type="checkbox"]:checked {
  color: #000 !important;
  font-weight: bold !important;
}

article.privacypolicy #hero {
  background-color: #eee;
}

article.privacypolicy .main_content .title_ja {
  margin: 2em 0 0.2em;
  padding: 0;
}

article.privacypolicy .main_content h3 {
  font-size: 1.6em;
}

article.privacypolicy .main_content h4 {
  padding-top: 0.5em;
  border-top: #ccc solid 1px;
  font-size: 1.4em;
}

article.privacypolicy .main_content .read {
  margin: 1em 0;
  font-size: 1.2em;
  line-height: 1.8;
}

@media (min-width: 600px) {
  .newsList {
    display: flex;
  }

  article.news .main_content#news .newsList {
    flex-wrap: wrap;
  }

  article.news .main_content#news .tile {
    width: calc(100% / 3);
  }
}

.newsList .img_wrapper .tag {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  display: flex;
  align-items: center;
}

article#index .main_content#news .tag .category,
article.news .main_content#news .tag .category {
  margin: 0 0 0.5em 0.5em;
}

@media screen and (min-width: 600px) and (max-width: 999px) {
  article#index .main_content#news .tag .category,
  article.news .main_content#news .tag .category {
    padding: 0.5em;
  }
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .newsList .img_wrapper .tag {
    display: block;
    text-align: right;
  }
}

@media screen and (max-width: 850px) {
  .newsList {
    flex-wrap: wrap;
  }

  article#index .main_content#news .newsList .tile,
  article.news .main_content#news .newsList .tile {
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  article#index .main_content#news .tag .category,
  article.news .main_content#news .tag .category {
    margin: 0 0 0.5em 0.5em;
    padding: 0.5em 0.2em;
  }
}

@media screen and (min-width: 320px) and (max-width: 400px) {
  article#index .main_content#news .tag .category,
  article.news .main_content#news .tag .category {
    padding: 0.5em 0.1em;
  }

  .newsList .img_wrapper .tag {
    display: block;
    text-align: right;
  }
}

article.news .main_content#news {
  padding-bottom: 3em;
}

article.news .main_content#news .navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

article.news .main_content#news .navigation .nav-links .page-numbers {
  margin-left: 15px;
  padding: 10px 15px;
  color: #666;
  background: #fff;
  border: 1px solid #666;
}

article.news .main_content#news .navigation .nav-links .page-numbers.current {
  color: #fff;
  background: #333;
}

@media screen and (max-width: 599px) {
  article.news .main_content#news .navigation .nav-links .page-numbers {
    padding: 8px 10px;
  }
}

@media screen and (max-width: 799px) {
  footer .floating .floating-pc {
    display: none;
  }

  footer .floating .floating-sp {
    display: flex;
    justify-content: space-between;
  }

  footer .floating {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100vw;
    z-index: 9999;
  }

  footer .floating .floating_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    width: 33%;
    background: #e8e3cc;
    color: #555;
    font-size: 1em;
    font-weight: bold;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
  }

  footer .floating .floating_contact img {
    margin-right: 2vw;
    max-width: 15px;
    width: 100%;
    height: 20px;
  }

  footer .floating .floating_text {
    width: 72%;
    color: #666;
    line-height: 1.1 !important;
    padding: 10px 0px 10px 8px;
    border: 1px solid #999;
    text-align: center;
  }

  footer .floating .floating_text .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 3px; */
    color: #000;
    font-size: 2em;
    font-weight: bold;
    line-height: 1 !important;
    position: relative;
    margin-top: 0.8em;
  }
  footer .floating .floating_text .tel::before {
    content: "お客様専用ダイヤル";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, calc(-100% - 5px));
    font-size: 0.4em;
    font-weight: normal;
    letter-spacing: 0.1em;
  }

  footer .floating .floating_text p {
    font-size: 0.9em;
  }

  footer .floating .floating_text .tel img {
    vertical-align: baseline;
    margin-right: 0.2em;
  }
}

@media screen and (min-width: 800px) {
  footer .floating .floating-sp {
    display: none;
  }

  footer .floating .floating-pc {
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 999;
  }

  footer .floating .floating_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 10px;
    background: #e8e3cc;
    width: 110px;
    height: 100px;
    color: #555;
    font-size: 1.2em;
    border-radius: 10px 0 0 10px;
    transition: all 0.5s ease-in-out;
  }

  footer .floating .floating_contact:hover {
    opacity: 0.8;
  }

  footer .floating .floating_contact img {
    display: block;
    margin: 0 auto;
    max-width: 25px;
    width: 100%;
    height: 25px;
  }

  footer .floating .floating_contact span {
    position: relative;
    top: -4px;
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  header #gnav #side_nav li.contact .cotact_btn {
    padding: 0.7em 1em;
  }

  header #gnav #side_nav li.tel-sp a {
    width: 30px;
    height: 30px;
  }

  section#company.main_content {
    overflow-x: hidden;
  }

  footer .floating .floating_text,
  footer .floating .floating_contact {
    padding: 10px 0;
  }

  footer .floating .floating_text .tel {
    font-size: 1.7em;
  }
}

.cv-content {
  background-color: #e8e3cc;
  padding: 20px 30px 1em;
  border-radius: 8px;
  margin-bottom: 3em;
}

.cv-content > p {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 0.9em;
}

.cv-content .sp {
  display: none;
}

.cv-content .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.cv-content .flex > div {
  padding: 0 5px;
}

.cv-content .cv-left a {
  font-size: clamp(2.3em, 3.3vw, 3.5em);
  font-weight: bold;
  display: flex;
  align-items: center;
  display: block;
  pointer-events: none;
  color: #333;
  position: relative;
}
@media screen and (min-width: 800px) {
  .cv-content .cv-left a {
    margin-top: 0.5em;
  }
}
.cv-content .cv-left a::before {
  content: "お客様専用ダイヤル";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, calc(-100% - 0px));
  font-size: 0.3em;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.cv-content .cv-left img {
  width: 38px;
}

.cv-content .cv-right {
  max-width: 360px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.cv-content .btn-foot {
  max-width: 300px;
  width: 100%;
  text-align: center;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 15px 20px;
  border-radius: 100px;
  font-size: 1.4em;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease-out;
  border: solid 2px #333;
}

.cv-content .btn-foot::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #999;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cv-content .btn-foot:hover {
  background-color: #fff;
  color: #333;
}

.cv-content .btn-foot:hover::before {
  right: 10px;
}

.cv-content .btn::after {
  position: absolute;
}

@media screen and (max-width: 799px) {
  .cv-content {
    padding: 15px;
  }

  .cv-content .sp {
    display: block;
  }

  .cv-content .cv-left {
    text-align: center;
  }

  .cv-content .flex {
    display: block;
  }

  .cv-content .flex > div {
    padding: 0 0 10px;
  }

  .cv-content .cv-left a {
    pointer-events: all;
  }

  .cv-content .cv-left a::before {
    font-size: 0.4em;
  }
}

.footer-bg {
  background-color: #f7f7f7;
  padding: 2em 0;
}

.footer-bg .footer-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bg .footer-logo div:first-of-type {
  margin-right: 15px;
}

@media screen and (max-width: 799px) {
  .footer-bg .footer-logo div:first-of-type {
    margin-bottom: 1em;
    width: 160px;
  }

  .footer-bg .footer-logo div:first-of-type img {
    width: 100%;
    height: auto;
  }
}

/* 3つの補助金を上手に活用してお得にリフォーム */

@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

.hojyokin_page.hojo2024 {
  font-family: 'Zen Maru Gothic', "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO" !important;
  line-height: 1.6;
  font-weight: 500;
}

.hojyokin_page.hojo2024 .bread{
  padding: 30px 0 0;
}
@media screen and (max-width: 600px) {
  .hojyokin_page.hojo2024 .bread{
    padding: 50px 0 0;
  }
}


.hojyokin_page.hojo2024 .bread a{
    font-weight: bold;
  }

.h_content_wrapper {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: block;
}

.hojyokin_page {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  line-height: 1.6;
  margin-bottom: 50px;
}

.hojyokin_page .container {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}

.hojyokin_page .cont_wrapper.mini {
  font-family: sans-serif;
  line-height: 1;
  max-width: 800px;
  width: 100%;
}

.hojyokin_page .cv-content {
  background-color: #e8e3cc;
  padding: 10px 30px 1px;
  border-radius: 8px;
  margin-bottom: 3em;
}

.hojyokin_page a {
  text-decoration: none;
}

.hojyokin_page .center {
  text-align: center;
}

.hojyokin_page .img-fit {
  width: 100%;
}

.hojyokin_page .mv {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 50px;
  background-image: none;
}

.hojyokin_page .mv .btn_h {
  position: absolute;
  right: 0;
  bottom: 20px;
  max-width: 290px;
  width: 290px;
  display: flex;
  font-weight: 700;
}

.hojyokin_page .btn_h_contact {
  margin-left: 80px;
}

.h-btn {
  border: 2px solid #589791;
  background: #fff;
  color: #589791;
  padding: 10px 40px;
  border-radius: 30px;
  width: 100%;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

.h-btn:hover {
  border: 2px solid #589791;
  background: #589791;
  color: #fff;
}

.hojyokin_page .btn_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hojyokin_page .btn_flex a {
  width: 32%;
}

.hojyokin_page .p_btn {
  border: 2px solid #c36f78;
  background: #c36f78;
  color: #fff;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.hojyokin_page .p_btn:hover {
  border: 2px solid #c36f78;
  background: #fff;
  color: #c36f78;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
}
.hojyokin_page.hojo2024 .p_btn {
  border: 2px solid #e66f78;
  background: #e66f78;
}
.hojyokin_page.hojo2024 .p_btn:hover {
  border: 2px solid #e66f78;
  background: #fff;
  color: #e66f78;
}
.hojyokin_page .b_btn {
  border: 2px solid #65a1da;
  background: #65a1da;
  color: #fff;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.hojyokin_page .b_btn:hover {
  border: 2px solid #65a1da;
  background: #fff;
  color: #65a1da;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
}
.hojyokin_page.hojo2024 .b_btn {
  border: 2px solid #6580b7;
  background: #6580b7;
}
.hojyokin_page.hojo2024 .b_btn:hover {
  border: 2px solid #6580b7;
  background: #fff;
  color: #6580b7;
}
.hojyokin_page .o_btn {
  border: 2px solid #cd8029;
  background: #cd8029;
  color: #fff;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.hojyokin_page .o_btn:hover {
  border: 2px solid #cd8029;
  background: #fff;
  color: #cd8029;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
}
.hojyokin_page.hojo2024 .o_btn {
  border: 2px solid #f09229;
  background: #f09229;
}
.hojyokin_page.hojo2024 .o_btn:hover {
  border: 2px solid #f09229;
  background: #fff;
  color: #f09229;
}
.hojyokin_page.hojo2024 .btn_flex a{
  border-radius: 15px !important;
}

.hojyokin_page .lg_bg {
  background: #eef4f4;
  padding: 50px 0;
  background-image: url(https://www.lifestylecreate.com/_/img/3hojyokin/bg_house.png);
  background-position: bottom 0 right 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.hojyokin_page.hojo2024 .lg_bg {
  background-image: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/hojyokin/bg_house.png);
  background-color: rgba(0, 165, 154, 0.1);
}
.hojyokin_page .g_tit {
  color: #589791;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
}
.hojyokin_page.hojo2024 .g_tit{
  color: var(--colorg);
}

.hojyokin_page .c_flex {
  display: flex;
  justify-content: space-between;
}

.hojyokin_page .c_flex picture,
.hojyokin_page .c_flex img {
  width: 49%;
}
.hojyokin_page .c_flex picture img{
  width: 100%;
}

.hojyokin_page .fsz14 {
  font-size: 14px;
}
.hojyokin_page .fsz2 {
  font-size: 20px;
}

.hojyokin_page .fsz3 {
  font-size: 30px;
}

.hojyokin_page .fsz4 {
  font-size: 40px;
}
.hojyokin_page .fwm {
  font-weight: 500 !important;
}
.hojyokin_page .fw7 {
  font-weight: 700;
}

.hojyokin_page h3 {
  line-height: 1.2;
}

:root{
  --colorp:#E66F78;
  --colorb: #65A1DA;
  --coloro: #F09229;
  --colorg: #00A599;
}

.hojyokin_page .fcp {
  color: #c36f78;
}
.hojyokin_page.hojo2024 .fcp {
  color: #E66F78;
}
.hojyokin_page .fcb {
  color: #6580b7;
}
.hojyokin_page.hojo2024 .fcb {
  color: #65A1DA;
}

.hojyokin_page .fco {
  color: #cd8029;
}
.hojyokin_page.hojo2024 .fco {
  color: #F09229;
}
.hojyokin_page .fcg {
  color: #589791;
}
.hojyokin_page.hojo2024 .fcg {
  color: #00A599;
}
.hojyokin_page .title_hukidashi_p {
  position: relative;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid #c36f78;
  background: #fff;
}
.hojyokin_page.hojo2024 .title_hukidashi_p {
  border-bottom: 3px solid var(--colorp);
}

.hojyokin_page .title_hukidashi_p:before {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-width: 28px 24px 0 24px;
  border-style: solid;
  border-color: #c36f78 transparent transparent transparent;
  transform: translateX(-50%);
}
.hojyokin_page.hojo2024 .title_hukidashi_p:before {
  border-color: var(--colorp) transparent transparent transparent;
}

.hojyokin_page .title_hukidashi_p:after {
  position: absolute;
  bottom: -24px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-width: 28px 24px 0 24px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: translateX(-50%);
}

.hojyokin_page .title_hukidashi_b {
  position: relative;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid #6580b7;
  background: #fff;
}
.hojyokin_page.hojo2024 .title_hukidashi_b {
  border-bottom: 3px solid var(--colorb);
}

.hojyokin_page .title_hukidashi_b:before {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-width: 28px 24px 0 24px;
  border-style: solid;
  border-color: #6580b7 transparent transparent transparent;
  transform: translateX(-50%);

}
.hojyokin_page.hojo2024 .title_hukidashi_b:before {
  border-color: var(--colorb) transparent transparent transparent;
}
.hojyokin_page .title_hukidashi_b:after {
  position: absolute;
  bottom: -24px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-width: 28px 24px 0 24px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: translateX(-50%);
}

.hojyokin_page .title_hukidashi_o {
  position: relative;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid #cd8029;
  background: #fff;
}
.hojyokin_page.hojo2024 .title_hukidashi_o {
  border-bottom: 3px solid var(--coloro);
}
.hojyokin_page .title_hukidashi_o:before {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-width: 28px 24px 0 24px;
  border-style: solid;
  border-color: #cd8029 transparent transparent transparent;
  transform: translateX(-50%);
}
.hojyokin_page.hojo2024 .title_hukidashi_o:before {
  border-color:var(--coloro) transparent transparent transparent;
}

.hojyokin_page .title_hukidashi_o:after {
  position: absolute;
  bottom: -24px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-width: 28px 24px 0 24px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: translateX(-50%);
}

.hojyokin_page .table_box {
  display: flex;
}

.hojyokin_page .kagi_box {
  --x-gradient: linear-gradient(
    90deg,
    #333 0 30px,
    transparent 0 calc(100% - 30px),
    #333 calc(100% - 30px)
  );
  --y-gradient: linear-gradient(
    #333 0 30px,
    transparent 0 calc(100% - 30px),
    #333 calc(100% - 30px)
  );
  padding: 3rem;
  background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient),
    var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 5px, 5px 100%, 100% 5px, 5px 100%;
  background-position: top, right, bottom, left;
  border: 1px solid #ccc;
  text-align: left;
}

.hojyokin_page .kagi_box .tit01 {
  background: #589791;
  border: 2px solid #589791;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  margin: 0 auto 20px;
  color: #fff;
  width: 300px;
}
.hojyokin_page.hojo2024 .kagi_box .tit01 {
  background: #00A599;
  border: 2px solid #00A599;
  border-radius: 50px;
}
.hojyokin_page .kagi_box .tit02 {
  background: #fff;
  border: 2px solid #589791;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  margin: 0 auto 20px;
  color: #589791;
  width: 300px;
}
.hojyokin_page.hojo2024 .kagi_box .tit02 {
  background: #fff;
  border: 2px solid #00A599;
  border-radius: 50px;
}
.hojyokin_page .kagi_box .tit03 {
  background: #6580b7;
  border: 2px solid #6580b7;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  margin: 0 auto 20px;
  color: #fff;
  width: 300px;
}
.hojyokin_page.hojo2024 .kagi_box .tit03{
  background: var(--colorb);
  border: 2px solid var(--colorb);
  border-radius: 50px;
}

.hojyokin_page .kagi_box .tit04 {
  background: #fff;
  border: 2px solid #6580b7;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  margin: 0 auto 20px;
  color: #6580b7;
  width: 300px;
}
.hojyokin_page.hojo2024 .kagi_box .tit04 {
  border: 2px solid var(--colorb);
  border-radius: 50px;
  color: var(--colorb);
}
@media screen and (min-width: 601px){
.hojyokin_page.hojo2024 .hojo01-wrap {
  display: flex;
}
.hojyokin_page.hojo2024 .hojo01-wrap-01 {
  width: 26%;
}
.hojyokin_page.hojo2024 .hojo01-wrap-02 {
  margin-left: 3%;
  width: 71%;
}
}


.hojyokin_page .lp_bg {
  background: #f9f0f1;
  padding: 50px 0;
}

.hojyokin_page .seko_jirei_box {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  width: 100%;
}

.hojyokin_page .seko_jirei_box .tit {
  background: #c36f78;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 30px;
  font-weight: 700;
  position: relative;
}
.hojyokin_page.hojo2024 .seko_jirei_box .tit {
  background: var(--colorp);
}

.hojyokin_page .seko_jirei_box .tit .hissu {
  background: #fff;
  border-radius: 20px;
  color: #c36f78;
  text-align: center;
  padding: 0.5rem 2rem;
  font-size: 20px;
  font-weight: 700;
  top: 15px;
  right: 10px;
  position: absolute;
}
.hojyokin_page.hojo2024 .seko_jirei_box .tit .hissu {
  color: var(--colorp);
}
.hojyokin_page .seko_jirei_box .tit .nini  {
  background: #fff;
  border-radius: 20px;
  color: #808080;
  text-align: center;
  padding: 0.5rem 2rem;
  font-size: 20px;
  font-weight: 700;
  top: 15px;
  right: 10px;
  position: absolute;
}

.hojyokin_page .seko_jirei_box .jirei {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
}

.hojyokin_page .seko_jirei_box .jirei .box {
  width: 31%;
  margin: 0 1% 20px;
  text-align: center;
  font-size: 18px;
}
.hojyokin_page.hojo2024 .seko_jirei_box .jirei .box .fw7{
  font-size: 94%;
}

.hojyokin_page .seko_jirei_box .jirei .box img {
  width: 100%;
  margin-bottom: 8px;
}

.hojyokin_page .mado_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.hojyokin_page .mado_flex .m_box {
  width: 48%;
  margin: 1%;
  text-align: center;
}

.hojyokin_page .mado_flex .m_box img {
  width: 100%;
  margin-bottom: 8px;
}

.hojyokin_page .lo_bg {
  background: #f9f8ef;
  padding: 50px 0;
}

.hojyokin_page .mb20 {
  margin-bottom: 20px;
}

.hojyokin_page .mb30 {
  margin-bottom: 30px;
}
.hojyokin_page .mb40 {
  margin-bottom: 40px;
}
.hojyokin_page .mb50 {
  margin-bottom: 50px;
}

.hojyokin_page .mb80 {
  margin-bottom: 80px;
}

.hojyokin_page .g_link {
  color: #666;
  transition: 0.3s;
  text-decoration: underline;
}
.hojyokin_page.hojo2024 .g_link {
  color: var(--colorg);
  text-decoration: none;
}


.hojyokin_page .h_hr {
  display: none;
}

.hojyokin_page .pc {
}

.hojyokin_page .sp {
  display: none !important;
}

.hojyokin_page .main_content .cont_wrapper {
  max-width: 540px;
  font-family: sans-serif;
}

.hojyokin_page .main_content dl.mailform {
  margin-top: 2.5em;
}

.hojyokin_page .main_content dt {
  display: block;
  padding: 0 0 0.5em;
  font-size: 1.2em;
}

.hojyokin_page .main_content dd {
  display: block;
  padding: 0 0 1.5em;
}

.hojyokin_page .main_content dd .wpcf7-text,
.hojyokin_page .main_content dd .wpcf7-date {
  width: 100% !important;
  margin-bottom: 1em;
  padding: 0.75em !important;
  border: 1px solid #ccc;
  background: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

.hojyokin_page .main_content dd .wpcf7-select.text-half,
.hojyokin_page .main_content dd .wpcf7-text.text-half,
.hojyokin_page .main_content dd .wpcf7-date.text-half {
  width: 48% !important;
  margin-right: 2%;
}
article.contact .main_content dd .wpcf7-select {
  margin-bottom: 1em;
}
.main_content dd .line {
  display: flex;
  align-items: center;
  width: 100%;
}
.main_content dd .line p {
  display: flex;
  align-items: center;
  width: 100%;
}
.main_content dd input[type="date"] {
    -webkit-appearance: none;
}

.main_content dd input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}
.main_content dd .line span {
  margin-right: 1em;
  white-space: nowrap !important;
}
.main_content dd .line span:first-child {
  margin-bottom: 1em;
}
.main_content dd .line span:last-child {
  margin-right: 0;
}

.main_content dd .line span.wpcf7-form-control-wrap {
  flex-grow: 3 !important;
  width: 100% !important;
  display: block;
}
.main_content dd .line br{
  display: none;
}
.main_content dd .wpcf7-date{
  display: block;
  height: 39px;
  box-sizing: border-box !important;
  width: 100%;
}
@media screen and (max-width: 450px) {
  .main_content dd .line br{
    display: block;
  }
  }

.hojyokin_page .main_content dd .wpcf7-list-item {
  margin: 0 0.5em 0 0 !important;
}

.hojyokin_page .main_content dd textarea {
  width: 100% !important;
  height: 300px !important;
  padding: 0.75em;
  border: 1px solid #ccc;
  background: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

.hojyokin_page .main_content dd label,
.hojyokin_page .main_content dd select,
.hojyokin_page .main_content dd input[type="checkbox"],
.hojyokin_page .main_content dd input[type="radio"] {
  cursor: pointer;
}

.hojyokin_page .main_content dd label {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0.3em 0.8em;
  border: 1px solid #eee;
  border-radius: 0.3em;
}

.hojyokin_page .main_content dd a {
  border-bottom: 1px solid #ddd;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.hojyokin_page .main_content dd a:hover {
  border-color: #999;
}

.hojyokin_page .main_content hr {
  border: none;
  height: 1px;
  background: #ccc;
}

.hojyokin_page .main_content .must {
  margin-left: 1em;
  padding: 0.1em 0.6em;
  border: 1px solid #ff6666;
  border-radius: 2px;
  color: #ff6666;
  font-size: 0.7em;
}

.hojyokin_page .main_content .btn {
  width: 100% !important;
  padding: 0.75em;
  border: none;
  color: #fff;
  background: #eea320;
  cursor: pointer !important;
  letter-spacing: 0.1em;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.hojyokin_page .main_content .btn:hover {
  background: #666;
}

.hojyokin_page .main_content select {
  position: relative;
  width: 100%;
  padding: 0.75em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #eee;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
}

.hojyokin_page .main_content select::-ms-expand {
  display: none;
}

.hojyokin_page .main_content select.half {
  width: 48% !important;
}

.hojyokin_page .main_content .selecter {
  position: relative;
}

.hojyokin_page .main_content #readme {
  margin-bottom: 2em;
  padding: 2em;
  border: 1px solid #eee;
  border-radius: 0.5em;
  font-size: 0.9em;
}

.hojyokin_page .main_content #readme .title {
  font-size: 1.2em;
}

.hojyokin_page .main_content #readme .right {
  text-align: right;
}

.hojyokin_page .main_content .frame {
  margin: 2em 0;
  padding: 2em;
  border: 1px solid #eea320;
  border-radius: 0.5em;
}

.hojyokin_page .main_content .frame dd:last-child {
  padding-bottom: 0;
}

.hojyokin_page .main_content #acceptance label {
  padding: 0;
  border: 0;
}

.hojyokin_page .main_content #attention {
  margin-top: 3em;
  padding: 2em;
  border: 1px solid #eee;
  border-radius: 0.5em;
  color: #666;
  font-size: 0.9em;
}

.hojyokin_page .main_content #attention .read {
  margin-bottom: 0.5em;
}

.hojyokin_page .main_content #attention .read a {
  text-decoration: underline;
}

.hojyokin_page .main_content .wpcf7c-conf {
  border: none !important;
  border-radius: 0 !important;
  color: #000 !important;
  background: #fff !important;
  font-weight: bold !important;
}

.hojyokin_page .main_content .wpcf7c-conf label,
.hojyokin_page .main_content .wpcf7c-conf select,
.hojyokin_page .main_content .wpcf7c-conf input[type="checkbox"],
.hojyokin_page .main_content .wpcf7c-conf input[type="radio"] {
  cursor: default !important;
}

.hojyokin_page .main_content .wpcf7c-conf label {
  border: none !important;
}

.hojyokin_page .main_content .wpcf7c-conf label input[type="radio"],
.hojyokin_page .main_content .wpcf7c-conf label input[type="checkbox"] {
  color: #eee !important;
}

.hojyokin_page .main_content .wpcf7c-conf label input[type="radio"]:checked,
.hojyokin_page .main_content .wpcf7c-conf label input[type="checkbox"]:checked {
  color: #000 !important;
  font-weight: bold !important;
}

/* お知らせ */
.hojyokin_page .endbox {
  border: 2px solid #b71c1c;
  padding: 20px;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 50px;
}
.hojyokin_page .endbox * {
  text-align: center;
}
.hojyokin_page .endbox .end_tit {
  background-color: #b71c1c;
  padding: 10px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
}
.hojyokin_page .endbox p {
  line-height: 1.6;
  font-weight: 600;
}
.hojyokin_page .endbox .mb10 {
  padding-bottom: 1em;
}
.hojyokin_page .endbox .red {
  font-size: 20px;
  font-weight: 700;
  color: #b71c1c;
  border-bottom: 1px solid #b71c1c;
}
.hojyokin_page .endbox .mk_y {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

@media screen and (min-width: 601px) and (max-width: 1000px) {
  .hojyokin_page .mv .btn_h {
    position: absolute;
    right: 0;
    bottom: 1vw;
    max-width: 29vw;
    width: 29vw;
    display: flex;
    font-weight: 700;
  }

  .h-btn {
    border: 2px solid #589791;
    background: #fff;
    color: #589791;
    padding: 1vw 2vw;
    border-radius: 20px;
    width: 100%;
    font-size: 2vw;
    text-align: center;
    font-weight: 700;
  }

  .hojyokin_page .p_btn,
  .hojyokin_page .b_btn,
  .hojyokin_page .o_btn {
    padding: 2vw 0;
    font-size: 2vw;
  }
}

@media screen and (min-width: 601px) {
  .hojyokin_page .table_box img {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .hojyokin_page {
    margin-bottom: 5rem;
  }
  .hojyokin_page .mv {
    margin-top: 0px;
  }
  .hojyokin_page .container {
    display: block;
    margin: 0 auto;
    width: 96%;
    max-width: 96%;
  }

  .hojyokin_page .new_contact_tel {
    width: auto;
    margin: 0 auto 30px;
  }

  .hojyokin_page .mv .btn_h {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    display: flex;
  }

  .hojyokin_page .btn_flex {
    display: block;
  }

  .hojyokin_page .btn_flex a {
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }

  .hojyokin_page .btn_flex img {
    width: 100%;
  }

  .hojyokin_page .lg_bg {
    background: #eef4f4;
    padding: 50px 0;
    background-image: url(https://www.lifestylecreate.com/_/img/3hojyokin/bg_house_sp.png);
    background-position: bottom 0 right 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .hojyokin_page.hojo2924 .lg_bg {
    background-image: url(https://www.lifestylecreate.com/_/img/hojyokin/bg_house_sp.png);
  }


  .hojyokin_page .g_tit {
    font-size: 7vw;
  }

  .hojyokin_page .fsz2 {
    font-size: 3vw;
  }

  .hojyokin_page .fsz3 {
    font-size: 5vw;
  }

  .hojyokin_page .fsz4 {
    font-size: 7vw;
  }

  .hojyokin_page .c_flex {
    display: block;
  }

  .hojyokin_page .c_flex img {
    margin-bottom: 20px;
    width: 100%;
  }

  .hojyokin_page .title_hukidashi_p:before {
    left: 45%;
  }

  .hojyokin_page .title_hukidashi_p:after {
    left: 45%;
  }

  .hojyokin_page .title_hukidashi_b:before {
    left: 45%;
  }

  .hojyokin_page .title_hukidashi_b:after {
    left: 45%;
  }

  .hojyokin_page .title_hukidashi_o:before {
    left: 45%;
  }

  .hojyokin_page .title_hukidashi_o:after {
    left: 45%;
  }

  .hojyokin_page .seko_jirei_box .jirei {
    padding: 1rem;
  }

  .hojyokin_page .seko_jirei_box .tit {
    font-size: 7vw;
    display: grid;
  }

  .hojyokin_page .seko_jirei_box .tit .nini,
    .hojyokin_page .seko_jirei_box .tit .hissu {
    font-size: 7vw;
    top: 0;
    right: 0;
    position: relative;
    margin: 0 auto;
    width: 50%;
    padding: 1vw 4vw;
  }

  .hojyokin_page .seko_jirei_box .jirei .box {
    width: 48%;
    text-align: center;
    font-size: 4vw;
  }

  .hojyokin_page .title_hukidashi_p,
  .hojyokin_page .title_hukidashi_b,
  .hojyokin_page .title_hukidashi_o {
    padding: 2vw 0;
  }

  .hojyokin_page .title_hukidashi_p:before {
    left: 45%;
  }

  .hojyokin_page .title_hukidashi_p:after {
    left: 45%;
  }

  .hojyokin_page .kagi_box {
    padding: 7vw;
  }

  .hojyokin_page .kagi_box .tit01,
  .hojyokin_page .kagi_box .tit02 {
    padding: 3vw;
    width: auto;
    font-size: 4vw;
  }

  .hojyokin_page .kagi_box .tit03,
  .hojyokin_page .kagi_box .tit04 {
    padding: 3vw;
    width: auto;
    font-size: 4vw;
  }

  .hojyokin_page .table_box {
    display: flex;
    overflow-x: scroll;
  }

  .hojyokin_page .table_box img {
    width: 160%;
    max-width: 160%;
  }

  .hojyokin_page .btn_h {
    width: 90%;
    display: flex;
    margin: 1em auto 3em;
  }

  .hojyokin_page .h_hr {
    border: 2px solid #ccc;
    margin: 10vw 0;
    display: block;
  }

  .hojyokin_page .mb20 {
    margin-bottom: 4vw;
  }

  .hojyokin_page .mb30 {
    margin-bottom: 6vw;
  }

  .hojyokin_page .mb50 {
    margin-bottom: 10vw;
  }

  .hojyokin_page .mb80 {
    margin-bottom: 16vw;
  }

  .hojyokin_page .pc {
    display: none !important;
  }

  .hojyokin_page .sp {
    display: block !important;
  }

  .hojyokin_page .main_content .cont_wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .hojyokin_page .endbox {
    margin-left: auto;
    margin-right: auto;
  }
  .hojyokin_page .endbox p:not(.end_tit) {
    text-align: left;
  }
}

header #gnav #side_nav li.contact-sp {
  display: none;
}

.gopagetop {
  display: none;
}

@media screen and (max-width: 799px) {
  header #gnav #side_nav li.contact {
    display: none;
  }

  header #gnav #side_nav li.contact-sp {
    display: block;
    position: relative;
    z-index: 999999;
  }

  header #gnav #side_nav li.contact-sp a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e3cc;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 2px 2px #ccc;
    margin-left: 0.5em;
    margin-right: 0.25em;
  }

  header #gnav #side_nav li.contact-sp a img {
    width: 18px;
    height: 18px;
  }

  header #gnav #side_nav {
    right: 48px;
  }

  .mean-container a.meanmenu-reveal {
    position: fixed;
    width: 20px;
    height: 20px;
  }

  .mean-container a.meanmenu-reveal::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 35px;
    height: 35px;
    background: #e8e3cc;
    border-radius: 50%;
    box-shadow: 0px 2px 2px #ccc;
    z-index: -1;
  }

  .mean-container .mean-nav {
    position: fixed;
    top: 48px;
    left: 0;
    margin-top: 0;
  }

  .gopagetop {
    position: fixed;
    right: 8px;
    bottom: 80px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #555;
    color: #fff;
    border-radius: 50%;
    z-index: 1000;
  }

  .gopagetop:hover {
    color: #fff;
  }

  .gopagetop .inner {
    text-align: center;
  }

  .gopagetop .inner i {
    font-weight: 900;
    font-size: 1.5rem;
  }

  .gopagetop .inner span {
    display: block;

    font-weight: 700;
  }
}

body#index .index .more .btn {
  color: #fff;
  background-color: #000;
}

body#index .index .more .btn:hover {
  color: #000;
  background-color: transparent;
}

body #menu:before {
  background: #fdecc4;
}

body #menu .menuList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

body #menu .menuList .tile .label {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 150px;
}

body #menu .menuList .tile .label-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 5px;
  padding: 1px 0;
  background: #141414;
  color: #fff;
  width: 100%;
  font-size: 1.1em;
  line-height: 1.7;
  border-radius: 20px;
}

body #menu .menuList .tile .price {
  position: relative;
  left: -5px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 3.4em;
  font-style: italic;
  line-height: 1;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff,
    -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff,
    0px -2px 1px #fff;
}

body #menu .menuList .tile .price .price-text {
  position: relative;
  top: -2px;
  left: 5px;
  font-size: 0.5em;
  font-weight: 700;
}

body #menu .menuList .tile .txt_wrapper .title {
  padding: 8px 0;
  background: #484848;
  color: #fff;
  font-size: 1.7em;
  text-align: center;
}

body #menu .menuList .tile .txt_wrapper .text {
  margin-top: 10px;
  color: #000;
  font-size: 1.2em;
  line-height: 1.71;
}

#top-content {
  margin-top: 50px;
}

@media screen and (max-width: 799px) {
  body #menu .menuList .tile .label-text {
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 800px) {
  .cv-content .flex {
    margin-top: 1em;
  }
  #top-content .cv-content .flex > div {
    padding: 0 0 0 10px;
  }
}

.page-contact {
  padding-top: 0;
}

.page-contact__wrap {
  padding-top: 0 !important;
}

article.contact .page-contact dl.mailform {
  margin-top: 0;
}

.bnr_bottom_link {
  margin-top: 0.6em;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5;
}
.bnr_bottom_link a.underline {
  text-decoration: underline;
}

article.news#detail .content .txt_wrapper,
article.reform#detail .content .cont_wrapper {
  letter-spacing: 0.05em;
}

article.news#detail .content .txt_wrapper h2,
article.reform#detail .content .cont_wrapper h2 {
  margin: 20px 0;
  padding: 15px 30px;
  color: #2b2d32;
  background-color: #d8e0e7;
  font-size: 1.8em;
  letter-spacing: 0.1em;
}

article.news#detail .content .txt_wrapper h3,
article.reform#detail .content .cont_wrapper h3 {
  margin: 20px 0;
  padding: 15px 30px;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #e8e3cc;
}

article.news#detail .content .txt_wrapper h4,
article.reform#detail .content .cont_wrapper h4 {
  margin: 20px 0;
  padding: 5px 20px;
  font-size: 1.6em;
  border-left: 6px solid #abb8c3;
  letter-spacing: 0.1em;
}

article.news#detail .content .txt_wrapper li {
  font-size: 1.2em;
  line-height: 2;
  list-style-position: inside;
  list-style-type: disc;
  text-indent: -1em;
  padding-left: 1em;
}

article.news#detail .content .txt_wrapper iframe,
article.reform#detail .content .cont_wrapper iframe {
  width: 100%;
}

article.reform#detail .reform-staff {
  margin: 50px auto 0;
  max-width: 1000px;
  width: 100%;
}

article.reform#detail .reform-staff .reform-staff-wrap {
  display: flex;
}

article.reform#detail .reform-staff .reform-staff-image > p {
  margin-top: 10px;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
}

article.reform#detail .reform-staff .reform-staff-comment {
  font-size: 1.4em;
  letter-spacing: 0.05em;
}

article.reform#detail .reform-staff .more a.btn {
  display: inline-block;
  min-width: 250px;
  width: 100%;
  margin-bottom: -8em;
  padding: 0.75em 2.5em;
  border: 3px solid black;
  color: #000;
  font-size: 1.4em;
  text-align: center;
}

article.reform#detail .reform-staff .more a.btn:hover {
  color: #fff;
}

@media (max-width: 599px) {
  article.reform#detail .content {
    overflow-x: hidden;
  }
  article.news#detail .content .txt_wrapper h2,
  article.reform#detail .content .cont_wrapper h2 {
    padding: 15px 20px;
    font-size: 1.7em;
  }
  article.news#detail .content .txt_wrapper h3,
  article.reform#detail .content .cont_wrapper h3 {
    padding: 15px 20px;
    font-size: 1.5em;
  }
  article.news#detail .content .txt_wrapper h4,
  article.reform#detail .content .cont_wrapper h4 {
    padding: 5px 20px;
    font-size: 1.5em;
  }
  article.reform#detail .reform-staff {
    margin: 30px auto 0;
    padding: 0 20px;
    width: 100%;
  }
  article.reform#detail .reform-staff .reform-staff-wrap {
    display: block;
  }
  article.reform#detail .reform-staff .reform-staff-image {
    text-align: center;
  }
  article.reform#detail .reform-staff .reform-staff-comment {
    margin-top: 15px;
  }
  article.reform#detail .reform-staff .more {
    margin-top: 20px;
  }
}

@media (min-width: 600px) {
  article.reform#detail .reform-staff .reform-staff-box {
    position: relative;
  }
  article.reform#detail .reform-staff .more {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  article.reform#detail .reform-staff .reform-staff-image {
    margin-right: 30px;
  }
  article.reform#detail #slideshow .cont_wrapper {
    width: 100%;
  }
}

/*フォームにファイル選択追加*/
.form-file,
.form-file * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.form-file .box {
  width: 48%;
  height: auto;
  padding: 10px;
  border: 1px dotted #231815;
  margin-bottom: 25px;
}

.form-file .box .file-child {
  width: 100%;
  height: 100%;
  position: relative;
  background-color:#eee;
}
.form-file .box .file-child>p {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-file .box .file-child label.up_link {
  padding-top: 100%;
  display: block;
  width: 100%;
  cursor: pointer;
  background: #eee;
  position: relative;
}
.form-file .box .file-child label.up_link br{
  display: none;
}

.form-file .box .file-child label.up_link::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/contact/icon-upload.png) center center no-repeat;
  background-size: cover;
  width: 109px;
  height: 129px;
}

.form-file .box .file-child .up_file {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.form-file .box .file-child label.up_link input {
  display: none;
}

a.del::after {
  position: absolute;
  top: 5px;
  right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f057";
  font-size: 2em;
  color: #000;
}

a.del::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 1.8em;
  height: 1.8em;
  background: #fff;
  border-radius: 50%;
}

.form-file .box#picture03,
.form-file .box#picture04,
.form-file .box#picture05,
.form-file .box#picture06 {
  display: none;
}

.form-file .box#picture03.active,
.form-file .box#picture04.active,
.form-file .box#picture05.active,
.form-file .box#picture06.active {
  display: block;
}

.form-file > p {
  display: block;
  width: 100%;
}

.add-box {
  display: block;
  width: 100%;
  background: #e2d7d1;
  text-align: center;
  line-height: 1;
  padding: 15px 0;
  cursor: pointer;
}

.add-box#show-picture04,
.add-box#show-picture05,
.add-box#show-picture06 {
  display: none;
}

.add-box.hide {
  display: none;
}

.add-box#show-picture04.active,
.add-box#show-picture05.active,
.add-box#show-picture06.active {
  display: block;
}

@media screen and (max-width: 799px) {
  .form-file,
  .form-file * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .form-file{
    flex-direction: column;
  }


  .form-file br {
    display: none;
  }

  .form-file {
    margin-bottom: 30px;
  }

  .form-file .box {
    width: 100%;
    height: auto;
    padding: 10px;
    border: 1px dotted #231815;
    margin-bottom: 15px;
  }

  .form-file .box .file-child {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .form-file .box .file-child label.up_link {
    display: block;
    cursor: pointer;
    background: #eee;
    height: auto;
    position: relative;
  }

  .form-file .box .file-child label.up_link::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    background: url(https://www.lifestylecreate.com/wp/wp-content/themes/lsc2022/_/img/contact/icon-upload.png) center center no-repeat;
    background-size: cover;
    width: 109px;
    height: 129px;
  }

  .form-file .box .file-child .up_file {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .form-file .box .file-child label.up_link input {
    display: none;
  }

  a.del::after {
    position: absolute;
    top: 5px;
    right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f057";
    font-size: 2em;
    color: #000;
  }

  a.del::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 7px;
    width: 1.8em;
    height: 1.8em;
    background: #fff;
    border-radius: 50%;
  }

  .form-file .box#picture03,
  .form-file .box#picture04,
  .form-file .box#picture05,
  .form-file .box#picture06 {
    display: none;
  }

  .form-file .box#picture03.active,
  .form-file .box#picture04.active,
  .form-file .box#picture05.active,
  .form-file .box#picture06.active {
    display: block;
  }

  .form-file > p {
    display: block;
    width: 100%;
  }

  .add-box {
    display: block;
    width: 100%;
    background: #e2d7d1;
    text-align: center;
    line-height: 1;
    padding: 15px 0;
  }

  .add-box#show-picture04,
  .add-box#show-picture05,
  .add-box#show-picture06 {
    display: none;
  }

  .add-box.hide {
    display: none;
  }

  .add-box#show-picture04.active,
  .add-box#show-picture05.active,
  .add-box#show-picture06.active {
    display: block;
  }

  #request_form_send {
    margin-bottom: 15px;
  }

  #request_form_send input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: transparent;

    background: #e2d7d1;
    padding: 20px 50px;
    font-weight: 700;
    font-size: 1em;
    margin: 0 5px;
  }
}