/*! sanitize.css v6.0.0 | 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 */
  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. Correct the line height in all browsers.
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 4. Breaks words to prevent prevent overflow in all browsers (opinionated).
 */

html {
  line-height: 1.15; /* 1 */
  cursor: default; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
  word-break: break-word; /* 4 */
  -webkit-overflow-scrolling: touch;
}

/* 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 box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  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. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

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

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

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge, 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. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

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

small {
  font-size: 80%;
}

/*
 * 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
 * ========================================================================== */

/**
 * Remove the margin in Firefox and Safari.
 */

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

/**
 * Inherit styling in all browsers (opinionated).
 */

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * 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;
}

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

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * 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.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  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 default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

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

/**
 * 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 */
}

/**
 * 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 */
}

/* 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 on clickable elements in all browsers (opinionated).
 * 2. Remove the tapping delay in IE 10.
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 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: disabled;
}

/*
 * 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;
}

:root {
  --fontMain: '繝偵Λ繧ｮ繝手ｧ偵ざ Pro', 'Hiragino Kaku Gothic Pro', '繝｡繧､繝ｪ繧ｪ', Meiryo, sans-serif;
  --fontCN: 'Microsoft YaHei', '蠕ｮ霆滓ｭ｣鮟鷹ｫ�', Arial, Helvetica, sans-serif;
  --contentWidth: 1160px;
  --contentPadding: 0 30px;
  --mainBg: #f8f7f3;
  --mainBlack: #424242;
  --mainOrange: #ffa000;
  --lightOrange: #fff5e5;
  --darkBlue-01: #1f2646;
  --darkBlue-02: #293357;
  --darkBlue-03: #404662;
  --lightBlue-01: #00b7e1;
  --lightBlue-02: #0aaadc;
  --lightBlue-03: #a9adbc;
  --lightBlue-04: #d9f4fb;
  --black-01: #333;
  --white: #fff;
  --gray-01: #797979;
  --gray-02: #999;
  --gray-03: #ddd;
  --gray-04: #a9a9a9;
  --gray-05: #f5f4ee;
  --gray-06: #666;
  --gray-07: #bcbcbc;
  --gray-08: #f6f6f6;
  --gray-09: #f1f0e8;
  --gray-10: #ebe6da;
  --red-01: #eb0f32;
  --orange-01: #e85210;
  --lineGray-01: #ccc;
  --lineGray-02: #e4e4e4;
  --gold-01: #706b4a;
  --lightBrown: #9a8379;
  --opacity: 0.7;
}

html {
  font-size: 62.5%;
}

html.is-locked {
    overflow-y: hidden;
  }

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

html.is-locked {
      position: fixed;
      left: 0;
      width: 100%
  }
    }

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: '繝偵Λ繧ｮ繝手ｧ偵ざ Pro', 'Hiragino Kaku Gothic Pro', '繝｡繧､繝ｪ繧ｪ', Meiryo, sans-serif;
  font-family: var(--fontMain);
  font-size: 1.6rem;
  color: #424242;
  color: var(--mainBlack);
  background-color: #fff;
  background-color: var(--white);
  line-height: 1.5;
}

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

body {
    font-size: 1.4rem
}
  }

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
button,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

/* doiuse-disable css-featurequeries */

/* fixed list bullet bug on Edge */

@supports (-ms-ime-align:auto) {
  @media print, screen and (min-width: 769px) {
    nav ul,
    .list-props-data {
      list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
    }

    nav li,
    .list-props-data__item {
      font-size: 0;
    }
  }
}

/* doiuse-enable css-featurequeries */

input[type='text'],
input[type='email'],
textarea,
select,
button {
  font-family: '繝偵Λ繧ｮ繝手ｧ偵ざ Pro', 'Hiragino Kaku Gothic Pro', '繝｡繧､繝ｪ繧ｪ', Meiryo, sans-serif;
  font-family: var(--fontMain);

  /* doiuse-disable css-appearance, outline */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;

  /* doiuse-enable css-appearance, outline */
}

a {
  color: #424242;
  color: var(--mainBlack);
  text-decoration: none;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.is-chinese {
  font-family: 'Microsoft YaHei', '蠕ｮ霆滓ｭ｣鮟鷹ｫ�', Arial, Helvetica, sans-serif;
  font-family: var(--fontCN);
}

@media only screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* doiuse-disable pointer, css-touch-action  */
  touch-action: pan-y;

  /* doiuse-enable pointer, css-touch-action */
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
    /* doiuse-disable outline */
    outline: none;

    /* doiuse-enable outline */
  }

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
  .slick-track::after {
    content: '';
    display: table;
  }

.slick-track::after {
    clear: both;
  }

.slick-loading .slick-track {
    visibility: hidden;
  }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;

  display: none;
}

[dir='rtl'] .slick-slide {
    float: right;
  }

.slick-slide img {
    display: block;
  }

.slick-slide.slick-loading img {
    display: none;
  }

.slick-slide.dragging img {
    pointer-events: none;
  }

.slick-initialized .slick-slide {
    display: block;
  }

.slick-loading .slick-slide {
    visibility: hidden;
  }

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-arrow {
  position: absolute;
  border: none;
  cursor: pointer;

  /* doiuse-disable outline */
  outline: none;
}

/* doiuse-enable outline */

.slick-arrow.slick-hidden {
    display: none;
  }

.slick-dots {
  text-align: center;
  font-size: 0;
  line-height: 1;
}

.slick-dots li {
    display: inline-block;
    padding: 0 5px;
  }

.slick-dots button {
    overflow: hidden;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 100%;
    background: #ccc;
    background: var(--lineGray-01);
    text-indent: -999px;
    vertical-align: top;
  }

@media print, screen and (min-width: 769px) {

.slick-dots button:hover {
        background: #1f2646;
        background: var(--darkBlue-01)
    }
      }

.slick-dots .slick-active button {
    background: #1f2646;
    background: var(--darkBlue-01);
  }

.alert {
  font-size: 1.4rem;
  color: #eb0f32;
  color: var(--red-01);
  border: 2px solid #eb0f32;
  border: 2px solid var(--red-01);
  padding: 10px 15px;
  position: relative;
  display: block;
}

@media print, screen and (min-width: 769px) {

.alert {
    font-size: 1.8rem;
    padding: 25px 30px
}
  }

.badge-02 {
  font-size: 1rem;
  height: 16px;
  line-height: 16px;
  text-align: center;
  display: inline-block;
  background-color: #1f2646;
  background-color: var(--darkBlue-01);
  padding: 0 5px;
  color: #fff;
  color: var(--white);
  margin-bottom: 5px;
}

@media print, screen and (min-width: 769px) {

.badge-02 {
    font-size: 1.4rem;
    height: 35px;
    line-height: 35px;
    padding: 0 34px;
    margin-bottom: 15px
}
  }

.badge {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  color: var(--white);
  padding: 10px;
  background-color: #ffa000;
  background-color: var(--mainOrange);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 8px;
  display: block;
}

.box-banner {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.box-banner {
    margin-bottom: 50px
}
  }

.box-banner__image {
    height: 75px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

@media print, screen and (min-width: 769px) {

.box-banner__image {
      height: 220px
  }
    }

.box-area-02 {
  margin: 0 -15px;
}

@media print, screen and (min-width: 769px) {

.box-area-02 {
    margin: 0
}
  }

.box-area-02__in {
    padding: 12px 15px;
  }

.box-area-02__town-change {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: wrap;
            flex: wrap;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
  }

.box-area-02__btn {
    font-size: 1.3rem;
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    text-align: center;
    padding: 7px;
    display: inline-block;
    margin-right: 12px;
    transition: opacity 0.2s ease-in-out;
  }

.box-area-02__btn:last-child {
      margin-right: 0;
    }

@media print, screen and (min-width: 769px) {

.box-area-02__btn {
      font-size: 1.4rem;
      padding: 6px 35px
  }

      .box-area-02__btn:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.box-area {
  background-color: #ebe6da;
  background-color: var(--gray-10);
  margin: 0 -15px;
}

@media print, screen and (min-width: 769px) {

.box-area {
    background-color: #f1f0e8;
    background-color: var(--gray-09);
    margin: 0
}
  }

.box-area__in {
    padding: 12px 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: wrap;
            flex: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
  }

.box-area__town-name {
    font-size: 1.4rem;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-area__town-name {
      font-size: 1.8rem
  }
    }

.box-area__town-change {
    position: relative;
  }

.box-area__btn {
    font-size: 1.3rem;
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    text-align: center;
    padding: 7px;
    display: inline-block;
    transition: opacity 0.2s ease-in-out;
  }

@media print, screen and (min-width: 769px) {

.box-area__btn {
      font-size: 1.4rem;
      padding: 6px 35px
  }

      .box-area__btn:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.box-attach {
  text-align: right;
  margin: 20px -15px 0;
  position: relative;
}

.box-attach::before,
  .box-attach::after {
    content: '';
    display: table;
  }

.box-attach::after {
    clear: both;
  }

@media print, screen and (min-width: 769px) {

.box-attach {
    margin: 20px 0 0
}
  }

.box-attach__link {
    font-size: 1.4rem;
    color: #0aaadc;
    color: var(--lightBlue-02);
    text-decoration: underline;
    transition: opacity 0.2s ease-in-out;
    padding: 0 15px;
  }

@media print, screen and (min-width: 769px) {

.box-attach__link {
      font-size: 1.8rem;
      padding: 0
  }
    }

.box-attach__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.box-card-standard {
  width: 100%;
  border: 1px solid #00b7e1;
  border: 1px solid var(--lightBlue-01);
  border-radius: 6px;
  margin-bottom: 15px;
  position: relative;
}

.box-card-standard__header {
    padding: 15px 15px 25px;
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-card-standard__header {
      padding: 20px 30px 25px
  }
    }

.box-card-standard__header::after {
      content: '';
      width: 10px;
      height: 18px;
      position: absolute;
      bottom: 6px;
      left: 50%;
      background-image: url('/images/ico_arrow_right_01.svg');
      background-position: center center;
      background-size: 10px 18px;
      background-repeat: no-repeat;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      margin-left: -9px;
    }

.box-card-standard__header__badge {
      color: #00b7e1;
      color: var(--lightBlue-01);
      background-color: #fff;
      background-color: var(--white);
      padding: 0 7px;
      text-align: center;
      margin-bottom: 7px;
    }

.box-card-standard__header__title {
      color: #fff;
      color: var(--white);
      margin: 0;
      font-size: 2rem;
    }

@media print, screen and (min-width: 769px) {

.box-card-standard__header__title {
        font-size: 2.2rem
    }
      }

.box-card-standard__body {
    padding: 10px 15px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }

@media print, screen and (min-width: 769px) {

.box-card-standard__body {
      padding: 20px
  }
    }

.box-card-standard--orange {
    border: 1px solid #ffa000;
    border: 1px solid var(--mainOrange);
  }

.box-card-standard--orange .box-card-standard__header {
    background-color: #ffa000;
    background-color: var(--mainOrange);
  }

.box-card-standard--orange .box-card-standard__header .box-card-standard__header__badge {
    color: #ffa000;
    color: var(--mainOrange);
  }

.box-cashback-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 10px;
}

.box-cashback-01__client {
    display: block;
    width: 50px;
    height: 52px;
    margin-right: 20px;
    background: url('/images/static/owner/cashback/img_cashback_01.png') center no-repeat;
    background-size: contain;
  }

.box-cashback-01__logo {
    display: block;
    width: 92px;
    height: 40px;
    margin-bottom: 10px;
    margin-left: 15px;
    background: url('/images/static/owner/cashback/img_cashback_02.png') center no-repeat;
    background-size: contain;
  }

.box-cashback-01__direction {
    margin-right: 18px;
  }

.box-cashback-01__text {
    position: relative;
    display: block;
    min-width: 150px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 18px;
    background-color: #1f2746;
    color: #fff;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
  }

.box-cashback-01__text::after {
      position: absolute;
      top: 50%;
      right: -18px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 20px 0 20px 18px;
      border-color: transparent transparent transparent #1f2746;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

.box-cashback-01__direction--reverse {
    margin-right: 0;
    margin-left: 18px;
  }

.box-cashback-01__direction--reverse .box-cashback-01__text {
    padding: 3px 18px 3px 0;
  }

.box-cashback-01__direction--reverse .box-cashback-01__text::after {
      right: auto;
      left: -18px;
      border-width: 20px 18px 20px 0;
      border-color: transparent #1f2746 transparent transparent;
    }

@media print, screen and (min-width: 769px) {

.box-company .contents__container {
      padding: 45px 30px
  }
    }

.box-company-01 {
  display: block;
}

@media print, screen and (min-width: 769px) {

.box-company-01 {
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-flex;
    display: flex
}
  }

.box-company-01__logo {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-company-01__logo {
      padding: 0;
      margin-bottom: 0;
      -webkit-flex: 0 0 325px;
              flex: 0 0 325px
  }
    }

.box-company-01__logo__image {
      width: 100%;
      position: relative;
    }

.box-company-01__figure {
    width: 100%;
    max-width: 277px;
    margin: 0 auto 30px;
    display: block;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-company-01__figure {
      max-width: 100%;
      padding: 0;
      margin: 0;
      -webkit-flex: 0 0 325px;
              flex: 0 0 325px
  }
    }

.box-company-01__figure__image {
      width: 100%;
      position: relative;
    }

.box-company-01__group {
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-company-01__group {
      -webkit-flex: 0 0 730px;
              flex: 0 0 730px
  }
    }

.box-company-01__group--fixed {
      -webkit-flex: 0 0 580px;
              flex: 0 0 580px;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__group--center {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
                flex-direction: column;
        -webkit-justify-content: center;
                justify-content: center
    }
      }

.box-company-01__group__title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__group__title {
        font-size: 2.6rem
    }
      }

.box-company-01__group__text {
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__group__text {
        font-size: 1.8rem
    }
      }

.box-company-01__group__btn--group {
      margin: 0 -5px;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      display: -webkit-flex;
      display: flex;
    }

.box-company-01__group__btn--group__item {
        padding: 0 5px;
        -webkit-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 50%;
      }

.box-company-01__group__btn--group-column {
        -webkit-flex-direction: column;
                flex-direction: column;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__group__btn--group-column {
          -webkit-flex-direction: row;
                  flex-direction: row
      }
        }

.box-company-01__group__btn--group-column .box-company-01__group__btn--group__item {
        width: 100%;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__group__btn--group-column .box-company-01__group__btn--group__item {
          width: 50%
      }
        }

.box-company-01__group__btn--group-column .box-company-01__group__btn--group__item:first-child {
        margin-bottom: 10px;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__group__btn--group-column .box-company-01__group__btn--group__item:first-child {
          margin-bottom: 0
      }
        }

.box-company-01__card {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    background: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    box-shadow: inset 0 -3px 0 0 rgba(7, 0, 0, 0.15);
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    position: relative;
    display: block;
    cursor: pointer;
  }

.box-company-01__card:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

@media print, screen and (min-width: 769px) {

.box-company-01__card {
      padding: 30px;
      min-height: 515px;
      margin-bottom: 30px
  }
    }

.box-company-01__card__heading {
      margin-bottom: 10px;
      display: block;
    }

.box-company-01__card__heading__text {
        font-size: 1.8rem;
        font-weight: 700;
        position: relative;
      }

.box-company-01__card__heading__text::after {
          content: '';
          width: 8px;
          height: 12px;
          position: absolute;
          top: 7px;
          right: 15px;
          background-image: url('/images/ico_arrow_right_03.svg');
          background-size: 8px 12px;
          background-repeat: no-repeat;
        }

@media print, screen and (min-width: 769px) {

.box-company-01__card__heading__text {
          font-size: 2.2rem;
          padding-right: 30px
      }
        }

.box-company-01__card__body {
      width: 100%;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: space-between;
              justify-content: space-between;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__card__body {
        display: block
    }
      }

.box-company-01__card__body__text {
        -webkit-flex: 0 0 70.4%;
                flex: 0 0 70.4%;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__card__body__text {
          min-height: 145px;
          margin-bottom: 10px
      }
        }

.box-company-01__card__body__image {
        -webkit-flex: 0 0 28%;
                flex: 0 0 28%;
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center top;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__card__body__image {
          height: 220px;
          background-position: center center
      }
        }

.box-company-01__card__body__image img {
          width: 100%;
          display: block;
        }

.box-company-01__service--card {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    background: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    position: relative;
    display: block;
  }

.box-company-01__service--card__heading {
      margin-bottom: 15px;
      display: block;
    }

.box-company-01__service--card__heading__text {
        font-size: 1.8rem;
        font-weight: 700;
        position: relative;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__service--card__heading__text {
          font-size: 2.2rem
      }
        }

.box-company-01__service--card__list .box-company-01__service--card__item {
      margin-bottom: 10px;
    }

.box-company-01__service--card__list .box-company-01__service--card__item:last-child {
      margin-bottom: 0;
    }

.box-company-01__guide {
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-flex;
    display: flex;
  }

.box-company-01__guide__list {
      margin: 0 -5px;
    }

.box-company-01__guide__list .box-company-01__guide__item {
      width: 50%;
      float: left;
      margin-bottom: 10px;
      padding: 0 5px;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__guide__list .box-company-01__guide__item {
        width: 100%;
        float: none
    }
      }

.box-company-01__guide__list .box-company-01__guide__item:last-child {
      margin-bottom: 0;
    }

.box-company-01__guide--lists {
      -webkit-flex: 0 0 100%;
              flex: 0 0 100%;
      -webkit-order: 1;
              order: 1;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__guide--lists {
        -webkit-flex: 0 0 285px;
                flex: 0 0 285px;
        -webkit-order: 0;
                order: 0
    }
      }

.box-company-01__guide--image {
      -webkit-flex: 0 0 100%;
              flex: 0 0 100%;
      -webkit-order: 0;
              order: 0;
      margin-bottom: 15px;
    }

@media print, screen and (min-width: 769px) {

.box-company-01__guide--image {
        -webkit-flex: 0 0 780px;
                flex: 0 0 780px;
        -webkit-order: 1;
                order: 1;
        margin-bottom: 0
    }
      }

.box-company-01__guide--image img {
        width: 100%;
        display: block;
      }

@media print, screen and (min-width: 769px) {

.box-company-01__guide--image img {
          margin-top: -30px
      }
        }

@media print, screen and (min-width: 769px) {
      .box-company-01__news .list-news-03__text-01 {
        width: 890px;
      }
    }

.box-company-02 {
  margin-bottom: 50px;
}

.box-company-02:last-child {
    margin-bottom: 0;
  }

.box-company-02__box--group {
    position: relative;
  }

.box-company-02__box--group::before,
    .box-company-02__box--group::after {
      content: '';
      display: table;
    }

.box-company-02__box--group::after {
      clear: both;
    }

.box-company-02__box--group__text {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

.box-company-02__box--group__text:last-child {
        margin-bottom: 0;
      }

@media print, screen and (min-width: 769px) {

.box-company-02__box--group__text {
        font-size: 1.8rem
    }
      }

.box-company-02__box--group__text--hint {
        font-size: 1.2rem;
      }

@media print, screen and (min-width: 769px) {

.box-company-02__box--group__text--hint {
          font-size: 1.4rem
      }
        }

.box-company-02__ended--section {
    margin: 145px 0 100px;
  }

@media print, screen and (min-width: 769px) {

.box-company-02__ended--section {
      margin: 0
  }
    }

.box-company-02__ended--section__list {
      margin: 0;
      padding: 0;
    }

.box-company-02__ended--section__list::before,
      .box-company-02__ended--section__list::after {
        content: '';
        display: table;
      }

.box-company-02__ended--section__list::after {
        clear: both;
      }

@media print, screen and (min-width: 769px) {

.box-company-02__ended--section__list {
        margin-top: 10px
    }
      }

.box-company-02__ended--section__item {
      width: 100%;
      display: block;
    }

@media print, screen and (min-width: 769px) {

.box-company-02__ended--section__item {
        width: 280px;
        float: left
    }
      }

.box-company-msg__box-image {
    float: right;
    width: 180px;
    margin-left: 30px;
  }

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

.box-company-msg__box-image {
      width: 110px;
      margin-bottom: 20px;
      margin-left: 20px
  }
    }

.box-company-msg__content {
    overflow: hidden;
    margin-bottom: 50px;
    font-size: 1.8rem;
    line-height: 1.6;
  }

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

.box-company-msg__content {
      font-size: 1.6rem
  }
    }

.box-company-msg__image {
    width: 100%;
  }

.box-company-msg__box-message {
    overflow: hidden;
  }

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

.box-company-msg__box-message {
      overflow: visible
  }
    }

.box-company-msg__title {
    margin-bottom: 20px;
    font-weight: 700;
  }

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

.box-company-msg__title {
      margin-bottom: 10px
  }
    }

.box-company-msg__text {
    margin-bottom: 30px;
    text-indent: 15px;
  }

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

.box-company-msg__text {
      margin-bottom: 20px;
      text-indent: 10px
  }
    }

.box-company-msg__text:last-child {
      margin-bottom: 0;
    }

.box-company-msg__txt-intro {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

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

.box-company-msg__txt-intro {
      font-size: 1.6rem
  }
    }

.box-company-msg__txt-name {
    margin-bottom: 50px;
    text-align: right;
  }

.box-company-size {
  display: -webkit-flex;
  display: flex;
  margin-right: -10px;
  margin-left: -10px;
}

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

.box-company-size {
    display: block;
    margin: 0
}
  }

.box-company-size__item {
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
  }

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

.box-company-size__item {
      width: auto;
      margin-bottom: 10px;
      padding-right: 0;
      padding-left: 0
  }

      .box-company-size__item:last-child {
        margin-bottom: 0;
      }
    }

.box-company-size__card {
    width: 100%;
    height: 100%;
    padding: 25px 10px;
    border-radius: 8px;
    border: 3px solid #ffa000;
    border: 3px solid var(--mainOrange);
    background-color: #fff;
    text-align: center;
  }

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

.box-company-size__card {
      height: auto;
      padding: 10px
  }
    }

.box-company-size__text-title {
    display: inline-block;
    padding: 0 5px;
    color: #ffa000;
    color: var(--mainOrange);
    font-size: 1.8rem;
  }

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

.box-company-size__text-title {
      display: block;
      padding: 0;
      font-size: 1.4rem
  }
    }

.box-company-size__text-title--small {
      font-size: 1.4rem;
    }

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

.box-company-size__text-title--small {
        font-size: 1.2rem
    }
      }

.box-company-size__text-title--large {
      font-size: 3rem;
      font-weight: 700;
    }

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

.box-company-size__text-title--large {
        font-size: 1.8rem
    }
      }

.box-company-size__text-note {
    color: #797979;
    color: var(--gray-01);
    font-size: 1.4rem;
  }

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

.box-company-size__text-note {
      font-size: 1.2rem
  }
    }

.box-company-step {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -30px;
  margin-right: -15px;
  margin-left: -15px;
}

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

.box-company-step {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    display: block
}
  }

.box-company-step__item {
    width: 50%;
    padding-top: 30px;
    padding-right: 15px;
    padding-left: 15px;
  }

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

.box-company-step__item {
      width: 100%;
      margin-bottom: 15px;
      padding: 0
  }

      .box-company-step__item:last-child {
        margin-bottom: 0;
      }
    }

.box-company-step__card {
    height: 100%;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    font-size: 1.8rem;
  }

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

.box-company-step__card {
      height: auto;
      padding: 10px 15px;
      border-radius: 6px;
      font-size: 1.6rem
  }
    }

.box-company-step__title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.box-company-step__title {
      margin-bottom: 5px;
      font-size: 1.8rem
  }
    }

.box-company-text {
  display: -webkit-flex;
  display: flex;
  font-size: 1.8rem;
}

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

.box-company-text {
    font-size: 1.6rem
}
  }

.box-company-text__box-detail {
    -webkit-flex: 1;
            flex: 1;
  }

.box-company-text__box-image {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 322px;
    margin-left: 45px;
  }

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

.box-company-text__box-image {
      width: 120px;
      margin-left: 15px
  }
    }

.box-company-text__image {
    width: 100%;
  }

.box-company-text__title {
    margin-bottom: 10px;
    font-weight: 700;
  }

.box-company-text__text-note {
    margin-top: 30px;
    font-size: 1.4rem;
  }

.box-company-text--img-reverse .box-company-text__box-image {
    -webkit-order: 1;
            order: 1;
    margin-right: 50px;
    margin-left: 0;
  }

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

.box-company-text--img-reverse .box-company-text__box-image {
      margin-right: 15px;
      margin-left: 0
  }
    }

.box-company-text--img-reverse .box-company-text__box-detail {
    -webkit-order: 2;
            order: 2;
  }

.box-company-text--type-border {
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
  }

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

.box-company-text--type-border {
      display: block;
      padding: 15px;
      border-radius: 6px
  }
    }

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

.box-company-text--type-border .box-company-text__box-image {
      width: 226px;
      margin-top: 15px;
      margin-right: auto;
      margin-left: auto;
      text-align: center
  }
    }

.box-company-text--type-border .box-company-text__image {
    max-width: 100%;
  }

.box-complete {
  margin-bottom: 30px;
  position: relative;
}

.box-complete--mod-01 {
    margin-bottom: 15px;
  }

@media print, screen and (min-width: 769px) {

.box-complete--mod-01 {
      margin-bottom: 40px
  }
    }

.box-contact-01 {
  margin-bottom: 60px;
  text-align: center;
}

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

.box-contact-01 {
    margin-bottom: 35px
}
  }

.box-contact-01:last-child {
    margin-bottom: 0;
  }

.box-contact-01__intro {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

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

.box-contact-01__intro {
      margin-bottom: 15px;
      font-size: 1.6rem
  }
    }

.box-contact-01__container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 900px;
    margin-right: auto;
    margin-left: auto;
  }

.box-contact-01__container--extended {
      width: 1008px;
    }

.box-contact-01__container--full {
      width: 100%;
    }

.box-contact-01__container--center {
      -webkit-justify-content: center;
              justify-content: center;
    }

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

.box-contact-01__container {
      display: block;
      width: auto
  }
    }

.box-contact-01__info {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 560px;
    padding: 22px 10px;
    border-radius: 8px;
    border: 3px solid #ffa000;
    border: 3px solid var(--mainOrange);
    background-color: #fff;
    background-color: var(--white);
    line-height: 1.4;
  }

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

.box-contact-01__info {
      width: auto;
      padding: 0;
      border: none;
      background: none;
      border-radius: 0
  }
    }

.box-contact-01__info--orange {
      width: 426px;
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      border: none;
      background-color: #ffa000;
      background-color: var(--mainOrange);
      box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
      transition: opacity 0.2s ease-in-out;
      cursor: pointer;
    }

.box-contact-01__info--orange:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

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

.box-contact-01__info--orange {
        background-color: transparent;
        box-shadow: none;
        width: 100%
    }
      }

.box-contact-01__info--small-01 {
      width: 425px;
      padding: 10px 0;
    }

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

.box-contact-01__info--small-01 {
        width: 100%;
        padding: 0
    }
      }

.box-contact-01__info-number {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    color: #ffa000;
    color: var(--mainOrange);
  }

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

.box-contact-01__info-number {
      display: block;
      margin-bottom: 8px
  }
    }

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

.box-contact-01__tel-text {
      display: none
  }
    }

.box-contact-01__tel-link {
    margin-left: 15px;
    font-size: 3rem;
    color: #ffa000;
    color: var(--mainOrange);
    font-weight: 700;
  }

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

.box-contact-01__tel-link {
      display: block;
      margin-left: 0;
      padding: 12px 15px;
      border-radius: 6px;
      background-color: #ffa000;
      background-color: var(--mainOrange);
      box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
      font-size: 1.6rem;
      color: #fff;
      color: var(--white)
  }
    }

.box-contact-01__tel-link--orange {
      color: #fff;
      color: var(--white);
      font-size: 2.6rem;
      margin-left: 0;
      margin-top: 6px;
    }

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

.box-contact-01__tel-link--orange {
        font-size: 1.6rem;
        margin-top: 0
    }
      }

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

.box-contact-01__tel-link-icon {
      position: relative;
      display: inline-block;
      padding-left: 30px
  }

      .box-contact-01__tel-link-icon::before {
        top: 50%;
        left: 0;
        position: absolute;
        width: 20px;
        height: 20px;
        background: url('/images/ico_phone_02.svg') no-repeat;
        background-size: 20px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }
    }

.box-contact-01__tel-link-text {
    display: none;
  }

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

.box-contact-01__tel-link-text {
      display: inline-block;
      font-size: 1.1rem;
      font-weight: 400
  }
    }

.box-contact-01__contact-time {
    font-size: 1.4rem;
    color: #797979;
    color: var(--gray-01);
  }

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

.box-contact-01__contact-time {
      margin-bottom: 12px;
      font-size: 1.2rem
  }
    }

.box-contact-01__contact-time--orange {
      color: #fff;
      color: var(--white);
    }

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

.box-contact-01__contact-time--orange {
        color: #797979;
        color: var(--gray-01)
    }
      }

.box-contact-01__info--small-01 .box-contact-01__info-number {
    -webkit-flex-direction: column;
            flex-direction: column;
  }

.box-contact-01__info--small-01 .box-contact-01__tel-link {
    margin-left: 0;
  }

.box-contact-01__btn-contact {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    border-radius: 8px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 320px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    font-size: 2.6rem;
    color: #fff;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
  }

.box-contact-01__btn-contact--extended {
      width: 426px;
    }

.box-contact-01__btn-contact--small-01 {
      width: 285px;
    }

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

.box-contact-01__btn-contact {
      width: auto;
      padding: 15px;
      border-radius: 6px;
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.box-contact-01__btn-contact:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-contact-01__btn-contact::after {
      top: 50%;
      right: 20px;
      position: absolute;
      width: 12px;
      height: 22px;
      background: url('/images/ico_arrow_right_01.svg') no-repeat;
      background-size: 12px 22px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.box-contact-01__btn-contact::after {
        display: none
    }
      }

.box-contact-01__btn-contact--no-arrow::after {
      display: none;
    }

.box-contact-01__btn-icon {
    position: relative;
    display: inline-block;
    padding-left: 40px;
  }

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

.box-contact-01__btn-icon {
      padding-left: 26px
  }
    }

.box-contact-01__btn-icon::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 32px;
      height: 36px;
      background: url('/images/ico_question_01.svg') no-repeat;
      background-size: 32px 36px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.box-contact-01__btn-icon::before {
        width: 19px;
        height: 21px;
        background-size: 19px 21px
    }
      }

.box-contact-02 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 11px 0 13px;
  border: 3px solid #ffa000;
  border: 3px solid var(--mainOrange);
  border-radius: 8px;
}

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

.box-contact-02 {
    display: block;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0
}
  }

.box-contact-02__info-number {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
  }

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

.box-contact-02__info-number {
      display: block
  }
    }

.box-contact-02__tel-link {
    color: #ffa000;
    color: var(--mainOrange);
    font-weight: 700;
    line-height: 1.2;
  }

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

.box-contact-02__tel-link {
      display: block;
      padding: 14px 0 15px;
      background-color: #ffa000;
      background-color: var(--mainOrange);
      box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
      border-radius: 6px;
      text-align: center;
      color: #fff;
      color: var(--white)
  }
    }

.box-contact-02__tel-text {
    display: none;
  }

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

.box-contact-02__tel-text {
      display: inline;
      position: relative;
      padding-left: 30px;
      font-size: 1.6rem
  }

      .box-contact-02__tel-text::before {
        content: '';
        position: absolute;
        top: 1px;
        left: 0;
        width: 20px;
        height: 20px;
        background: url('/images/ico_phone_02.svg') no-repeat;
        background-size: 20px;
      }
    }

.box-contact-02__tel-number {
    font-size: 3rem;
  }

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

.box-contact-02__tel-number {
      font-size: 1.6rem
  }
    }

.box-contact-02__contact-time-01 {
    margin-top: 7px;
    color: #797979;
    color: var(--gray-01);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.29;
  }

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

.box-contact-02__contact-time-01 {
      display: none
  }
    }

.box-contact-02__contact-time-02 {
    display: none;
  }

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

.box-contact-02__contact-time-02 {
      display: block;
      margin-top: 8px;
      text-align: center;
      color: #797979;
      color: var(--gray-01);
      font-size: 1.2rem;
      line-height: 1.3
  }
    }

.box-contact-03 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
}

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

.box-contact-03 {
    display: block;
    height: auto
}
  }

.box-contact-03__button {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
    padding: 25px 0 28px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
    border-radius: 8px;
    text-align: center;
    color: #fff;
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
  }

@media print, screen and (min-width: 769px) {

.box-contact-03__button:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

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

.box-contact-03__button {
      display: block;
      padding: 14px 0 15px;
      border-radius: 6px;
      font-size: 1.6rem
  }
    }

.box-contact-03__text-01 {
    margin-top: 10px;
    font-size: 1.4rem;
  }

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

.box-contact-03__text-01 {
      display: none
  }
    }

.box-contact-03__text-02 {
    display: none;
  }

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

.box-contact-03__text-02 {
      display: block;
      margin-top: 8px;
      text-align: center;
      color: #797979;
      color: var(--gray-01);
      font-size: 1.2rem;
      line-height: 1.3
  }
    }

.box-contact-city-01__title-city-01 {
    margin-bottom: 30px;
    padding-bottom: 8px;
    border-bottom: 3px solid #ddd;
    border-bottom: 3px solid var(--gray-03);
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.box-contact-city-01__title-city-01 {
      position: relative;
      margin-bottom: 0;
      padding: 12px 30px 12px 15px;
      background: #f0ebe2;
      border-bottom: 1px solid #f7f5ef;
      font-size: 1.6rem;
      font-weight: 400;
      cursor: pointer
  }

      .box-contact-city-01__title-city-01::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        width: 12px;
        height: 12px;
        background: url('/images/ico_plus_02.svg') no-repeat;
        background-size: 12px 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
      }
    }

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

.box-contact-city-01__title-city-01.accordion--is-active {
        border-bottom: 1px solid #ddd;
        border-bottom: 1px solid var(--gray-03)
    }
      }

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

.box-contact-city-01__title-city-01.accordion--is-active::before {
          background: url('/images/ico_minus_02.svg') no-repeat;
          background-size: 12px 12px
      }
        }

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

.box-contact-city-01__title-city-01--not-accordion {
        margin-bottom: 14px;
        padding: 0;
        background: none;
        border-bottom: 2px solid #ddd;
        border-bottom: 2px solid var(--gray-03);
        font-size: 2rem;
        font-weight: 700;
        cursor: default
    }

        .box-contact-city-01__title-city-01--not-accordion::before {
          top: 0;
          right: 0;
          width: 0;
          height: 0;
          background: none;
          background-size: 0;
        }
      }

.box-contact-city-01__info {
    overflow: hidden;
  }

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

.box-contact-city-01__info {
      display: none;
      padding: 12px 15px 0;
      background: #f5f4ee;
      border-bottom: 2px solid #ddd;
      border-bottom: 2px solid var(--gray-03)
  }
    }

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

.box-contact-city-01__info--not-accordion {
        display: block;
        padding: 12px 0 0;
        background: #fff;
        background: var(--white);
        border-bottom: none
    }
      }

.box-contact-city-01__text-01 {
    margin-bottom: 34px;
    font-size: 1.6rem;
    line-height: 1.81;
  }

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

.box-contact-city-01__text-01 {
      margin-bottom: 3px;
      font-size: 1.4rem;
      line-height: 1.82
  }
    }

.box-contact-print-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  margin-top: 40px;
  border: 3px solid #ffa000;
  border: 3px solid var(--mainOrange);
  border-radius: 8px;
}

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

.box-contact-print-01 {
    display: block;
    border: 2px solid #ffa000;
    border: 2px solid var(--mainOrange)
}
  }

.box-contact-print-01__title {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 237px;
    -webkit-flex: 0 0 237px;
            flex: 0 0 237px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #ffa000;
    background: var(--mainOrange);
    text-align: center;
    color: #fff;
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.box-contact-print-01__title {
      display: block;
      width: 100%;
      font-size: 1.6rem
  }
    }

.box-contact-print-01__info {
    overflow: hidden;
    -webkit-flex: 1;
            flex: 1;
    padding-top: 11px;
    padding-bottom: 11px;
    background: #fff;
    background: var(--white);
    text-align: center;
  }

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

.box-contact-print-01__info {
      padding: 10px
  }
    }

.box-contact-print-01__info-number {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    margin-bottom: 5px;
    text-align: center;
    color: #ffa000;
    color: var(--mainOrange);
    line-height: 1.2;
  }

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

.box-contact-print-01__info-number {
      -webkit-flex-direction: column;
              flex-direction: column;
      margin-bottom: 10px
  }
    }

.box-contact-print-01__tel-text {
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.box-contact-print-01__tel-text {
      -webkit-order: 2;
              order: 2;
      font-size: 1.2rem
  }
    }

.box-contact-print-01__tel-text--black {
      color: #333;
      color: var(--black-01);
    }

.box-contact-print-01__tel-link {
    margin-left: 15px;
    color: #ffa000;
    color: var(--mainOrange);
    font-size: 3rem;
    font-weight: 700;
  }

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

.box-contact-print-01__tel-link {
      -webkit-order: 1;
              order: 1;
      margin: 0 0 5px 0;
      font-size: 1.6rem
  }
    }

.box-contact-print-01__contact-time {
    color: #797979;
    color: var(--gray-01);
    font-size: 1.4rem;
  }

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

.box-contact-print-01__contact-time {
      font-size: 1.2rem
  }
    }

.box-contact-print-01__contact-time-small {
    margin-left: 15px;
    font-size: 1.2rem;
  }

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

.box-contact-print-01__contact-time-small {
      display: block;
      margin-left: 0;
      font-size: 1rem
  }
    }

.box-container-01 {
  margin-bottom: 50px;
  position: relative;
}

.box-container-01:last-child {
    margin-bottom: 0;
  }

.box-content-01 {
  font-size: 1.6rem;
}

.box-content-01__title {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

@media print, screen and (min-width: 769px) {

.box-content-01__title {
      font-size: 1.8rem;
      margin-bottom: 10px
  }
    }

@media print, screen and (min-width: 769px) {

.box-content-01 {
    font-size: 1.8rem
}
  }

.box-content-01 .box-contact-01 {
    margin-top: 12px;
  }

@media print, screen and (min-width: 769px) {

.box-content-01 .box-contact-01 {
      margin-top: 20px
  }
    }

.box-content-01 .box-contact-01__container--extended {
    -webkit-justify-content: center;
            justify-content: center;
  }

.box-content-01 .box-contact-01__info--orange {
    position: relative;
  }

@media print, screen and (min-width: 769px) {
      .box-content-01 .box-contact-01__info--orange::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 12px;
        height: 22px;
        background-image: url('/images/ico_arrow_right_01.svg');
        background-repeat: no-repeat;
        background-size: 12px 22px;
        margin-top: -11px;
      }
    }

.box-content-02 {
  margin-bottom: 30px;
  padding: 15px 20px;
  background: #f5f4ee;
  background: var(--gray-05);
}

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

.box-content-02 {
    margin-bottom: 20px;
    padding: 11px 15px
}
  }

.box-content-02--bg-white {
    background-color: #fff;
    background-color: var(--white);
  }

.box-content-03 {
  margin-bottom: 30px;
  padding: 15px 18px 20px;
  background: #fff;
  background: var(--white);
  border: 3px solid #fda007;
  border-radius: 8px;
}

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

.box-content-03 {
    margin-bottom: 20px;
    padding: 15px 20px 25px;
    border: 2px solid #fda007;
    border-radius: 6px
}
  }

.box-content-04 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
}

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

.box-content-04 {
    margin-bottom: 20px
}
  }

.box-content-04__box-image {
    min-width: 127px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.box-content-04__box-image {
      width: 120px
  }
    }

.box-content-04__box-image--large-01 {
      width: 240px;
    }

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

.box-content-04__box-image--large-01 {
        width: 100%
    }
      }

.box-content-04__box-image--large-02 {
      width: 240px;
    }

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

.box-content-04__box-image--large-02 {
        width: 120px
    }
      }

.box-content-04__box-image--auto {
      width: auto;
    }

.box-content-04__image {
    display: block;
    width: 100%;
  }

.box-content-04__image img {
      width: 100%;
    }

.box-content-04__detail {
    overflow: hidden;
    -webkit-flex: 1;
            flex: 1;
    padding-left: 20px;
  }

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

.box-content-04__detail {
      padding-left: 15px
  }
    }

.box-content-04__title-01 {
    margin-bottom: 7px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.28;
  }

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

.box-content-04__title-01 {
      margin-bottom: 4px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-content-04__text-01 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }

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

.box-content-04__text-01 {
      margin-bottom: 10px;
      font-size: 1.4rem
  }
    }

.box-content-04__text-01:last-child {
      margin-bottom: 0;
    }

.box-content-04__button-01 {
    width: 305px;
    margin-bottom: 15px;
  }

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

.box-content-04__button-01 {
      width: 100%;
      margin-bottom: 10px
  }
    }

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

.box-content-04--img-right {
      -webkit-flex-direction: column;
              flex-direction: column
  }
    }

.box-content-04--img-right .box-content-04__box-image {
    margin: 0;
   -webkit-order: 2;
   order: 2;
  }

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

.box-content-04--img-right .box-content-04__box-image {
      width: 100%;
      -webkit-justify-content: center;
              justify-content: center;
      -webkit-align-items: center;
              align-items: center;
      display: -webkit-flex;
      display: flex;
      margin: 10px 0
  }

      .box-content-04--img-right .box-content-04__box-image img {
        width: 100%;
      }
    }

.box-content-04--img-right .box-content-04__detail {
    -webkit-order: 1;
            order: 1;
    padding: 0 20px 0 0;
  }

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

.box-content-04--img-right .box-content-04__detail {
      padding: 0 15px 0 0;
      -webkit-order: 3;
              order: 3
  }
    }

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

.box-content-04--sp-full {
      -webkit-flex-direction: column;
              flex-direction: column
  }
    }

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

.box-content-04--sp-full .box-content-04__box-image {
      -webkit-order: 1;
              order: 1;
      margin-bottom: 10px
  }
    }

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

.box-content-04--sp-full .box-content-04__detail {
      -webkit-order: 2;
              order: 2;
      padding: 0
  }
    }

.box-content-05 {
  margin-bottom: 30px;
  padding: 15px 18px 20px;
  background: #f5f4ee;
  background: var(--gray-05);
  border: 3px solid #9a8379;
  border-radius: 8px;
}

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

.box-content-05 {
    margin-bottom: 20px;
    padding: 15px 20px 25px;
    border: 2px solid #9a8379;
    border-radius: 6px
}
  }


.box-content-tab-01 {
  overflow: hidden;
}

.box-content-tab-01__content {
    overflow: hidden;
  }

.box-content-tab-01__content-in {
    overflow: hidden;
    display: none;
  }

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

.box-content-tab-01__content-in {
      display: block;
      margin-bottom: 15px
  }

      .box-content-tab-01__content-in:last-child {
        margin-bottom: 0;
      }
    }

.box-faq-01 {
  overflow: hidden;
}

.box-faq-01__info {
    overflow: hidden;
    margin-bottom: 20px;
  }

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

.box-faq-01__info {
      margin-bottom: 15px
  }
    }

.box-faq-01__info:last-child {
      margin-bottom: 0;
    }

.box-faq-01__text-question {
    overflow: hidden;
    position: relative;
    padding: 15px 45px;
    background: #293357;
    background: var(--darkBlue-02);
    border-bottom: 1px solid #515874;
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
    cursor: pointer;
  }

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

.box-faq-01__text-question {
      padding: 13px 35px;
      font-size: 1.6rem;
      line-height: 1.44
  }
    }

.box-faq-01__text-question::before {
      content: 'Q';
      top: 15px;
      left: 19px;
      position: absolute;
      color: #fff;
      color: var(--white);
      font-size: 1.8rem;
      font-weight: 700;
    }

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

.box-faq-01__text-question::before {
        top: 13px;
        left: 14px;
        position: absolute;
        font-size: 1.6rem;
        line-height: 1.44
    }
      }

.box-faq-01__text-question::after {
      content: '';
      top: 50%;
      right: 20px;
      position: absolute;
      width: 19px;
      height: 19px;
      background: url('/images/ico_plus_02.svg') no-repeat;
      background-size: 19px 19px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.box-faq-01__text-question::after {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 12px;
        height: 12px;
        background-size: 12px 12px
    }
      }

.box-faq-01__text-question.accordion--is-active::after {
      background: url('/images/ico_minus_02.svg') no-repeat;
      background-size: 19px 19px;
    }

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

.box-faq-01__text-question.accordion--is-active::after {
        background-size: 12px 12px
    }
      }

.box-faq-01__box-answer {
    overflow: hidden;
    display: none;
    position: relative;
    padding: 15px 20px 15px 45px;
    background: #f8f7f3;
    background: var(--mainBg);
  }

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

.box-faq-01__box-answer {
      padding: 11px 20px 11px 35px
  }
    }

.box-faq-01__box-answer::before {
      content: 'A';
      top: 15px;
      left: 19px;
      position: absolute;
      color: #333;
      color: var(--black-01);
      font-size: 1.8rem;
      line-height: 1.61;
      font-weight: 700;
    }

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

.box-faq-01__box-answer::before {
        top: 10px;
        left: 14px;
        position: absolute;
        font-size: 1.6rem;
        line-height: 1.69
    }
      }

.box-faq-01__text-answer {
    margin-bottom: 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.box-faq-01__text-answer {
      font-size: 1.6rem;
      line-height: 1.69
  }
    }

.box-faq-01__text-answer:last-child {
      margin-bottom: 0;
    }

.box-faq-01--no-icon .box-faq-01__text-question::before,
  .box-faq-01--no-icon .box-faq-01__box-answer::before {
    display: none;
  }

.box-faq-01--no-icon .box-faq-01__text-question,
  .box-faq-01--no-icon .box-faq-01__box-answer {
    padding-left: 20px;
  }

.box-faq-01--no-accordion .box-faq-01__text-question::after {
    display: none;
  }

.box-faq-01--no-accordion .box-faq-01__text-question {
    padding-right: 20px;
    cursor: default;
  }

.box-faq-01--no-accordion .box-faq-01__box-answer {
    display: block;
  }

.box-flow-01 {
  overflow: hidden;
}

.box-flow-01__box-flow {
    overflow: hidden;
    background: #f5f4ee;
    background: var(--gray-05);
    padding: 20px;
  }

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

.box-flow-01__box-flow {
      padding: 15px
  }
    }

.box-flow-01__text-flow {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0;
  }

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

.box-flow-01__text-flow {
      margin-bottom: 10px
  }
    }

.box-flow-01__text-flow--center {
      -webkit-justify-content: center;
              justify-content: center;
    }

.box-flow-01__text-flow--right {
      -webkit-justify-content: flex-end;
              justify-content: flex-end;
    }

.box-flow-01__text-flow:last-child {
      margin-bottom: 0;
    }

.box-flow-01__text {
    display: inline-block;
    min-width: 343px;
    padding: 5px 10px;
    background: #3cb8b7;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.box-flow-01__text {
      min-width: 0;
      padding: 8px 15px;
      font-size: 1.2rem
  }
    }

.box-flow-01__box-text {
    overflow: hidden;
    margin-top: 1px;
    padding: 15px 10px;
    background: #e9e7dd;
    text-align: center;
  }

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

.box-flow-01__box-text {
      padding: 11px 10px
  }
    }

.box-flow-01__text-01 {
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.box-flow-01__text-01 {
      font-size: 1.4rem
  }
    }

.box-flow-02 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}

.flowline{
   background: linear-gradient(to top, #9a8379, #9a8379) repeat-y center/3px;
}

.box-flow-02__flow01-o {
    display: block;
    position: relative;
    width: 400px;
    margin-bottom: 30px;
    padding: 15px;
    background: #e85210;
    background: var(--orange-01);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
  }

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

.box-flow-02__flow01-o {
    border-radius: 8px;
  }
  }

  .box-flow-02__flow01-line {
   width: 3px;
   height: 30px;
   color: #fda007;
   text-align: center;
  }

  .box-flow-02__flow01-p {
    display: block;
    position: relative;
    width: 520px;
    margin-bottom: 40px;
    padding: 15px;
    background: #9a8379;
    background: var(--lightBrown);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
  }

.box-flow-02__flow {
    display: block;
    position: relative;
    width: 458px;
    margin-bottom: 50px;
    padding: 18px 15px 8px;
    background: #f5f4ee;
    background: var(--gray-05);
    text-align: center;
  }

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

.box-flow-02__flow {
      width: 100%;
      margin-bottom: 40px;
      padding: 10px 10px 4px
  }
    }

.box-flow-02__flow::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -32px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 32px 229px 0 229px;
      border-color: #f5f4ee transparent transparent transparent;
      border-color: var(--gray-05) transparent transparent transparent;
    }

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

.box-flow-02__flow::after {
        bottom: -21px;
        border-width: 21px calc(50vw - 15px) 0 calc(50vw - 15px)
    }
      }

.box-flow-02__text-01 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

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

.box-flow-02__text-01 {
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-form-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

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

.box-form-01 {
    -webkit-justify-content: space-between;
            justify-content: space-between
}
  }

.box-form-01__box-input {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

.box-form-01__input {
    overflow: hidden;
    width: 300px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.box-form-01__input {
      width: 170px
  }
    }

.box-form-01__text {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-left: 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.box-form-01__text {
      padding-left: 7px;
      font-size: 1.6rem
  }
    }

.box-form-01__button {
    overflow: hidden;
    width: 98px;
    margin-left: 20px;
  }

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

.box-form-01__button {
      width: 114px;
      margin-left: 0
  }
    }

.box-form-02 {
  overflow: hidden;
}

.box-form-02__form-01 {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
  }

.box-form-02__list-input {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

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

.box-form-02__list-input {
      width: 59.4%;
      padding-right: 5px
  }
    }

.box-form-02__box-input-01 {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

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

.box-form-02__box-input-01 {
      width: 50%
  }
    }

.box-form-02__input {
    overflow: hidden;
    width: 120px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.box-form-02__input {
      width: calc(100% - 35px)
  }
    }

.box-form-02__input-text {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0 20px 0 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.box-form-02__input-text {
      width: 35px;
      padding: 0 0 0 7px;
      font-size: 1.6rem
  }
    }

.box-form-02__box-select-01 {
    display: -webkit-flex;
    display: flex;
  }

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

.box-form-02__box-select-01 {
      width: 40.6%
  }
    }

.box-form-02 .box-form-02__select-01 {
    width: 200px;
  }

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

.box-form-02 .box-form-02__select-01 {
      width: 100%;
      height: 48px
  }
    }

.box-form-02__form-02 {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    margin-top: 15px;
  }

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

.box-form-02__form-02 {
      display: block;
      margin-top: 10px
  }
    }

.box-form-02__box-input-02 {
    overflow: hidden;
    width: 120px;
  }

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

.box-form-02__box-input-02 {
      width: 100%
  }
    }

.box-form-02__box-input-03 {
    overflow: hidden;
    width: 150px;
  }

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

.box-form-02__box-input-03 {
      width: 100%
  }
    }

.box-form-02__box-select-02 {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    padding-left: 20px;
  }

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

.box-form-02__box-select-02 {
      margin-top: 10px;
      padding-left: 0
  }
    }

.box-form-02__select-02 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

.box-form-02__select-02 .box-form-02__select-02--select {
      width: 200px;
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
    }

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

.box-form-02__select-02 .box-form-02__select-02--select {
        width: 100px;
        height: 48px
    }
      }

.box-form-02__select-text {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0 20px 0 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.box-form-02__select-text {
      padding: 0 14px 0 7px;
      font-size: 1.6rem
  }
    }

.box-fullwidth {
  margin: 0 -15px;
}

@media print, screen and (min-width: 769px) {

.box-fullwidth {
    margin: 0
}
  }

.box-fullwidth__in {
    padding: 0;
  }

.box-image-01 {
  margin-bottom: 30px;
  text-align: center;
}

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

.box-image-01 {
    margin-bottom: 20px
}
  }

.box-image-01__image {
    max-width: 100%;
  }

@media print, screen and (min-width: 769px) {

.box-image-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-image-02 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -5px 30px;
}

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

.box-image-02 {
    margin: -10px 0 20px
}
  }

.box-image-02__box-image {
    width: 50%;
    padding: 0 5px;
    text-align: center;
  }

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

.box-image-02__box-image {
      width: 100%;
      margin-top: 10px;
      padding: 0
  }
    }

.box-image-02__image {
    max-width: 100%;
  }

@media print, screen and (min-width: 769px) {

.box-image-02__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-image-property-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: 40px;
  margin-left: -15px;
}

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

.box-image-property-01 {
    display: block;
    margin: -15px 0 30px
}
  }

.box-image-property-01__inner {
    overflow: hidden;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }

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

.box-image-property-01__inner {
      width: 100%;
      margin-top: 15px;
      padding: 0
  }
    }

.box-image-property-01__item {
    overflow: hidden;
    height: 100%;
    padding: 13px 20px 17px;
    background: #fff;
    background: var(--white);
    border: 1px solid #d6d6d6;
  }

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

.box-image-property-01__item {
      height: auto;
      padding: 15px 10px
  }
    }

.box-image-property-01__title {
    margin-bottom: 16px;
    color: #333;
    color: var(--black-01);
    font-size: 1.4rem;
  }

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

.box-image-property-01__title {
      margin-bottom: 10px;
      font-size: 1.2rem
  }
    }

.box-image-property-01__image-container {
    text-align: center;
  }

.box-image-property-01__image {
    max-width: 100%;
    max-height: 100%;
  }

.box-image-property-01__text {
    margin-top: 16px;
    text-align: center;
    color: #666;
    color: var(--gray-06);
    font-size: 1.4rem;
  }

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

.box-image-property-01__text {
      margin-top: 10px;
      font-size: 1.2rem
  }
    }

.box-input-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.box-input-01__input {
    overflow: hidden;
    width: 120px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.box-input-01__input {
      width: 100px
  }
    }

.box-input-01__text-01 {
    -webkit-flex: 1;
            flex: 1;
    padding-left: 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.box-input-01__text-01 {
      padding-left: 7px;
      font-size: 1.6rem
  }
    }

.box-input-01__text-02 {
    padding-right: 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.box-input-01__text-02 {
      padding-right: 7px;
      font-size: 1.6rem
  }
    }

.box-input-01 .box-input-01__selectbox {
    width: 100px;
    margin-left: 10px;
  }

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

.box-input-01 .box-input-01__selectbox {
      width: 78px;
      margin-left: 8px
  }
    }

.box-line-01 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid var(--gray-03);
}

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

.box-line-01 {
    margin-bottom: 20px;
    padding-bottom: 20px
}
  }

.box-loansimulate {
  margin-bottom: 30px;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.box-loansimulate {
    margin-bottom: 60px
}
  }

.box-loansimulate__repayment--property {
    position: relative;
  }

.box-loansimulate__repayment--property__anchor {
      position: relative;
      display: block;
      width: 100%;
      padding-right: 30px;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__anchor {
        width: 240px;
        margin: 0 auto;
        display: block !important
    }
      }

.box-loansimulate__repayment--property__anchor::after {
        top: 50%;
        right: 14px;
        position: absolute;
        width: 10px;
        height: 18px;
        background: url('/images/ico_arrow_right_01.svg') no-repeat;
        background-size: 10px 18px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }

.box-loansimulate__repayment--property__anchor span {
        padding-left: 35px;
        display: inline-block;
        position: relative;
      }

.box-loansimulate__repayment--property__anchor span::before {
          top: 50%;
          left: 0;
          position: absolute;
          width: 25px;
          height: 30px;
          background: url('/images/ico_question_01.svg') no-repeat;
          background-size: 25px 30px;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
          content: '';
        }

.box-loansimulate__repayment--property__label {
      font-size: 1.6rem;
      font-weight: 700;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__label {
        font-size: 1.8rem
    }
      }

.box-loansimulate__repayment--property__list {
      padding: 0;
      margin-bottom: 5px;
    }

.box-loansimulate__repayment--property__item {
      display: block;
    }

.box-loansimulate__repayment--property__card {
      font-size: 1.4rem;
      height: 100%;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__card {
        font-size: 1.6rem
    }
      }

.box-loansimulate__repayment--property__card__link {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: flex-start;
                align-items: flex-start;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
      }

.box-loansimulate__repayment--property__card__image {
        position: relative;
        -webkit-flex: 0 0 120px;
                flex: 0 0 120px;
        width: 100%;
        height: 90px;
        margin-bottom: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__card__image {
          -webkit-flex: 0 0 110px;
                  flex: 0 0 110px;
          height: 85px
      }
        }

.box-loansimulate__repayment--property__card__detail {
        padding-left: 20px;
        -webkit-flex: 1;
                flex: 1;
        color: #333;
        color: var(--black-01);
      }

.box-loansimulate__repayment--property__card__detail__title {
          font-size: 1.4rem;
          font-weight: 700;
        }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__card__detail__title {
            font-size: 1.6rem
        }
          }

.box-loansimulate__repayment--property__card__detail__price {
          color: #eb0f32;
          color: var(--red-01);
          margin-bottom: 3px;
          font-size: 1.4rem;
        }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__card__detail__price {
            font-size: 1.6rem
        }
          }

.box-loansimulate__repayment--property__card__detail__price span {
            color: #333;
            color: var(--black-01);
            font-size: 1.2rem;
          }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__card__detail__price span {
              font-size: 1.4rem
          }
            }

.box-loansimulate__repayment--property__card__detail__info {
          font-size: 1.2rem;
          position: relative;
        }

@media print, screen and (min-width: 769px) {

.box-loansimulate__repayment--property__card__detail__info {
            font-size: 1.4rem
        }
          }

.box-loansimulate__repayment--property__card__detail__info__row {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap;
                    flex-wrap: wrap;
          }

.box-loansimulate__heading {
    font-size: 2rem;
    padding-left: 36px;
    position: relative;
  }

.box-loansimulate__heading::before {
      content: '';
      width: 30px;
      height: 30px;
      position: absolute;
      top: 0;
      left: 0;
      background-image: url('/images/ico_search_02.svg');
      background-repeat: no-repeat;
      background-size: 30px 30px;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__heading {
      font-size: 2.6rem;
      padding-left: 60px
  }

      .box-loansimulate__heading::before {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
      }
    }

.box-loansimulate__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0;
  }

@media print, screen and (min-width: 769px) {

.box-loansimulate__row {
      margin: 0 -25px
  }
    }

.box-loansimulate__col {
    width: 100%;
    display: block;
    padding: 0;
  }

@media print, screen and (min-width: 769px) {

.box-loansimulate__col {
      -webkit-flex-basis: 0;
              flex-basis: 0;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      max-width: 100%;
      padding: 0 25px
  }
    }

.box-loansimulate__col--01 {
      display: block;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__col--01 {
        -webkit-flex: 0 0 580px;
                flex: 0 0 580px
    }
      }

.box-loansimulate__slider {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
  }

.box-loansimulate__slider__text--group {
      -webkit-flex: 0 0 162px;
              flex: 0 0 162px;
      max-width: 100%;
      font-size: 1.6rem;
      font-weight: 700;
      padding-top: 14px;
      padding-right: 15px;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__slider__text--group {
        -webkit-flex: 0 0 285px;
                flex: 0 0 285px;
        font-size: 1.8rem;
        padding-right: 0
    }
      }

.box-loansimulate__slider__text--group__hint {
        font-size: 1.4rem;
        font-weight: 400;
        margin-left: 8px;
        display: inline-block;
      }

.box-loansimulate__slider__text--group__link {
        color: #00b7e1;
        color: var(--lightBlue-01);
        font-size: 1.4rem;
        font-weight: 400;
        text-decoration: underline;
        display: block;
      }

.box-loansimulate__slider__text--group__link:hover {
          opacity: 0.7;
          opacity: var(--opacity);
        }

@media print, screen and (min-width: 769px) {

.box-loansimulate__slider__text--group__link {
          font-size: 1.6rem
      }
        }

.box-loansimulate__slider__controller {
      -webkit-flex-basis: 0;
              flex-basis: 0;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      max-width: 100%;
    }

.box-loansimulate__slider__display {
      margin-bottom: 15px;
      position: relative;
    }

.box-loansimulate__slider__display__label {
        font-size: 1.2rem;
        margin-left: 3px;
      }

@media print, screen and (min-width: 769px) {

.box-loansimulate__slider__display__label {
          font-size: 1.6rem
      }
        }

.box-loansimulate__slider__input {
      width: 90px;
      height: 48px;
      line-height: 48px;
      padding: 0 20px;
      text-align: right;
      border: 1px solid #999;
      border: 1px solid var(--gray-02);
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__slider__input {
        width: 140px
    }
      }

.box-loansimulate__sim {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    margin-bottom: 32px;
  }

.box-loansimulate__sim__btn {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: center;
              justify-content: center;
      width: 100%;
      height: 65px;
      background: #fff;
      background: var(--white);
      border: 1px solid #999;
      border: 1px solid var(--gray-02);
      border-radius: 8px;
      box-shadow: inset 0 -3px 0 0 rgba(7, 0, 0, 0.15);
      text-align: center;
      color: #333;
      color: var(--black-01);
      font-size: 1.3rem;
      line-height: 1.4;
      transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
      cursor: pointer;
      margin-bottom: 45px;
    }

.box-loansimulate__sim__btn:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

@media print, screen and (min-width: 769px) {

.box-loansimulate__sim__btn {
        width: 440px;
        height: 36px;
        font-size: 1.3rem;
        margin-bottom: 0
    }
      }

.box-loansimulate__other--property {
    position: relative;
  }

.box-loansimulate__other--property__label {
      font-size: 1.8rem;
      font-weight: 700;
    }

.box-loansimulate__other--property__link--group {
      padding: 15px 0;
    }

.box-loansimulate__other--property__link--group__list::before,
        .box-loansimulate__other--property__link--group__list::after {
          content: '';
          display: table;
        }

.box-loansimulate__other--property__link--group__list::after {
          clear: both;
        }

.box-loansimulate__other--property__link--group__item {
        width: 33.33%;
        float: left;
      }

.box-loansimulate__other--property__link--group__item a {
          font-size: 1.5rem;
          border-radius: 0;
        }

.box-loansimulate__other--property__link--group__item a:hover {
            opacity: 0.7;
            opacity: var(--opacity);
          }

.box-loansimulate__other--property__link--group__item:first-child a {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            border-right: 0;
          }

.box-loansimulate__other--property__link--group__item:last-child a {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            border-left: 0;
          }

@media print, screen and (min-width: 769px) {

.box-loansimulate__other--property__link--group__item {
          width: 120px;
          margin-right: 20px
      }

          .box-loansimulate__other--property__link--group__item a {
            font-size: 1.8rem;
            height: 56px;
            border: 1px solid #999 !important;
            border: 1px solid var(--gray-02) !important;
            border-radius: 8px !important;
          }

          .box-loansimulate__other--property__link--group__item:last-child {
            margin-right: 0;
          }
        }

.box-loansimulate__other--property__link--group__link {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
                align-items: center;
        -webkit-justify-content: center;
                justify-content: center;
        width: 100%;
        height: 36px;
        background: #fff;
        background: var(--white);
        border: 1px solid #999;
        border: 1px solid var(--gray-02);
        border-radius: 8px;
        box-shadow: inset 0 -3px 0 0 rgba(7, 0, 0, 0.15);
        text-align: center;
        color: #333;
        color: var(--black-01);
        font-size: 1.4rem;
        line-height: 1.4;
        transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
        cursor: pointer;
      }

.box-loansimulate__result {
    margin: 0 -15px 25px;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result {
      margin: 0 0 50px
  }
    }

.box-loansimulate__result__heading {
      min-height: 40px;
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
      font-size: 1.7rem;
      color: #fff;
      color: var(--white);
      font-weight: 700;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
              justify-content: center;
      -webkit-align-items: center;
              align-items: center;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__heading {
        font-size: 2.4rem;
        min-height: 55px;
        line-height: 55px
    }
      }

.box-loansimulate__result__body {
      background-color: #f8f7f3;
      background-color: var(--mainBg);
      padding: 5px 15px 15px;
    }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__body {
        padding: 10px 30px 30px
    }
      }

.box-loansimulate__result__body__item {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
                flex-direction: column;
        -webkit-align-items: start;
                align-items: start;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        border-bottom: 1px solid var(--gray-03);
        font-size: 2rem;
        font-weight: 700;
      }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__body__item {
          -webkit-flex-direction: row;
                  flex-direction: row;
          -webkit-justify-content: space-between;
                  justify-content: space-between;
          -webkit-align-items: center;
                  align-items: center
      }
        }

.box-loansimulate__result__body__item__title {
          font-size: 1.2rem;
        }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__body__item__title {
            font-size: 2rem
        }
          }

.box-loansimulate__result__body__item__title span {
            font-size: 1.4rem;
          }

.box-loansimulate__result__body__item__price {
          font-size: 1.6rem;
        }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__body__item__price {
            font-size: 2rem
        }
          }

.box-loansimulate__result__body__item__price span {
            color: #eb0f32;
            color: var(--red-01);
          }

.box-loansimulate__result__body__item--sub {
          font-size: 1.2rem;
          -webkit-flex-direction: row;
                  flex-direction: row;
          -webkit-align-items: center;
                  align-items: center;
        }

.box-loansimulate__result__body__item--sub .box-loansimulate__result__body__item__price {
            margin-left: 14px;
            display: inline-block;
          }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__body__item--sub {
            font-size: 1.6rem;
            -webkit-flex-direction: row;
                    flex-direction: row;
            -webkit-justify-content: space-between;
                    justify-content: space-between;
            -webkit-align-items: center;
                    align-items: center
        }
          }

.box-loansimulate__result__body__item--group {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
      }

@media print, screen and (min-width: 769px) {

.box-loansimulate__result__body__item--group {
          display: block
      }
        }

.box-loansimulate__result__body__item--group .box-loansimulate__result__body__item {
          -webkit-flex: 0 0 50%;
                  flex: 0 0 50%;
        }

.box-mail-condition {
  position: relative;
}

.box-mail-condition__card {
    background-color: #fff;
    background-color: var(--white);
    margin: 0 -15px 10px;
    padding: 25px 15px;
  }

.box-mail-condition__card:last-child {
      margin-bottom: 0 !important;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card {
      margin: 0 0 10px
  }
    }

.box-mail-condition__card__heading {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-align-items: flex-end;
              align-items: flex-end;
      -webkit-justify-content: space-between;
              justify-content: space-between;
      -webkit-flex-direction: row;
              flex-direction: row;
      border-bottom: 2px solid #e4e4e4;
      border-bottom: 2px solid var(--lineGray-02);
      padding-bottom: 6px;
    }

.box-mail-condition__card__body {
      padding: 15px 0;
      margin-bottom: 20px;
      border-bottom: 1px solid #e4e4e4;
      border-bottom: 1px solid var(--lineGray-02);
    }

.box-mail-condition__card__footer {
      position: relative;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__footer {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-flex-direction: row;
                flex-direction: row;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        -webkit-align-items: center;
                align-items: center
    }
      }

.box-mail-condition__card__title {
      font-size: 2rem;
      font-weight: 700;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__title {
        font-size: 2.2rem
    }
      }

.box-mail-condition__card__date {
      color: #e4e4e4;
      color: var(--lineGray-02);
      font-size: 1.2rem;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__date {
        font-size: 1.6rem
    }
      }

.box-mail-condition__card__list {
      position: relative;
    }

.box-mail-condition__card__list::before,
      .box-mail-condition__card__list::after {
        content: '';
        display: table;
      }

.box-mail-condition__card__list::after {
        clear: both;
      }

.box-mail-condition__card__item {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: row;
              flex-direction: row;
      -webkit-flex-wrap: nowrap;
              flex-wrap: nowrap;
      font-size: 1.6rem;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__item {
        font-size: 1.8rem;
        margin-bottom: 15px
    }

        .box-mail-condition__card__item:last-child {
          margin-bottom: 0;
        }
      }

.box-mail-condition__card__item__objective {
        font-weight: 700;
        margin-right: 15px;
      }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__item__objective {
          -webkit-flex: 0 0 130px;
                  flex: 0 0 130px
      }
        }

.box-mail-condition__card__item__objective--fixed-width {
          width: 165px;
        }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__item__objective--fixed-width {
            width: auto
        }
          }

.box-mail-condition__card__utils {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: space-between;
              justify-content: space-between;
      -webkit-flex-direction: row;
              flex-direction: row;
      margin-bottom: 20px;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__utils {
        -webkit-flex: 0 0 358px;
                flex: 0 0 358px;
        -webkit-justify-content: flex-start;
                justify-content: flex-start;
        margin-bottom: 0
    }
      }

.box-mail-condition__card__utils__link {
        -webkit-flex: 0 0 136px;
                flex: 0 0 136px;
      }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__utils__link {
          -webkit-flex: 0 0 200px;
                  flex: 0 0 200px;
          margin-right: 20px
      }
        }

.box-mail-condition__card__utils__link--delete {
          padding-left: 16px;
          transition: opacity 0.2s ease-in-out;
          position: relative;
        }

.box-mail-condition__card__utils__link--delete::before {
            position: absolute;
            top: 50%;
            left: 0;
            content: '';
            width: 11px;
            height: 11px;
            background-image: url('/images/ico_plus_01.svg');
            background-repeat: no-repeat;
            background-size: 11px 11px;
            margin-top: -5px;
            -webkit-transform: rotateZ(45deg);
                    transform: rotateZ(45deg);
          }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__utils__link--delete {
            font-size: 1.8rem;
            padding-left: 20px
        }

            .box-mail-condition__card__utils__link--delete::before {
              width: 14px;
              height: 14px;
              background-size: 14px 14px;
              margin-top: -7px;
            }

            .box-mail-condition__card__utils__link--delete:hover {
              opacity: 0.7;
              opacity: var(--opacity);
            }
          }

.box-mail-condition__card__utils__list--email {
        position: relative;
      }

.box-mail-condition__card__utils__list--email::before,
        .box-mail-condition__card__utils__list--email::after {
          content: '';
          display: table;
        }

.box-mail-condition__card__utils__list--email::after {
          clear: both;
        }

.box-mail-condition__card__utils__list--email__item {
          display: block;
        }

.box-mail-condition__card__utils__list--email__link {
          padding-left: 14px;
          transition: opacity 0.2s ease-in-out;
          display: block;
        }

.box-mail-condition__card__utils__list--email__link::before {
            position: absolute;
            top: 50%;
            left: 0;
            content: '';
            width: 8px;
            height: 14px;
            background-image: url('/images/ico_arrow_right_03.svg');
            background-repeat: no-repeat;
            background-size: 8px 14px;
            margin-top: -8px;
          }

@media print, screen and (min-width: 769px) {

.box-mail-condition__card__utils__list--email__link {
            font-size: 1.8rem;
            padding-left: 22px
        }

            .box-mail-condition__card__utils__list--email__link::before {
              width: 10px;
              height: 18px;
              background-size: 10px 18px;
              margin-top: -9px;
            }

            .box-mail-condition__card__utils__list--email__link:hover {
              opacity: 0.7;
              opacity: var(--opacity);
            }
          }

.box-mail-condition__contact {
    padding: 15px 0 25px;
  }

.box-mail-condition__contact .box-contact-01 {
      margin-bottom: 0;
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__contact {
      padding: 45px 0 0
  }

      .box-mail-condition__contact .box-contact-01__container {
        width: 560px;
        display: block;
      }
    }

@media print, screen and (min-width: 769px) {

.box-mail-condition__contact__desc {
        font-size: 1.8rem
    }
      }

.box-mail-condition__contact__text--hint {
      font-size: 1.2rem;
    }

.box-mail-condition__contact__text--hint.text--hint-01 {
        margin-bottom: 15px;
      }

@media print, screen and (min-width: 769px) {

.box-mail-condition__contact__text--hint.text--hint-01 {
          margin: 10px 0 15px
      }
        }

@media print, screen and (min-width: 769px) {

.box-mail-condition__contact__text--hint.text--hint-02 {
          display: block;
          text-align: center;
          margin-top: 8px
      }
        }

@media print, screen and (min-width: 769px) {

.box-mail-condition__contact__text--hint {
        font-size: 1.4rem
    }
      }

.box-news-utilities {
  margin-top: 60px;
  position: relative;
}

.box-news-utilities__list {
    padding: 0;
    margin: 0 -15px;
  }

.box-news-utilities__list::before,
    .box-news-utilities__list::after {
      content: '';
      display: table;
    }

.box-news-utilities__list::after {
      clear: both;
    }

@media print, screen and (min-width: 769px) {

.box-news-utilities__list {
      margin: 0
  }
    }

.box-news-utilities__item {
    width: 50%;
    float: left;
    box-sizing: border-box;
  }

@media print, screen and (min-width: 769px) {

.box-news-utilities__item {
      width: 25%
  }
    }

.box-news-utilities__link {
    font-size: 1.6rem;
    padding: 15px;
    color: #fff;
    color: var(--white);
    background-color: #293357;
    background-color: var(--darkBlue-02);
    border-bottom: 1px solid #404662;
    border-bottom: 1px solid var(--darkBlue-03);
    transition: opacity 0.2s ease-in-out;
    display: block;
    position: relative;
  }

.box-news-utilities__link::after {
      content: '';
      position: absolute;
      right: 15px;
      top: 50%;
      width: 7px;
      height: 12px;
      background-image: url('/images/ico_arrow_right_05.svg');
      background-size: 7px 12px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

@media print, screen and (min-width: 769px) {

.box-news-utilities__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

@media print, screen and (min-width: 769px) {

.box-news-utilities__link {
      font-size: 1.8rem;
      padding: 15px 15px 15px 20px;
      color: #333;
      color: var(--black-01);
      background-color: #fff;
      background-color: var(--white);
      border-bottom: 1px solid #ddd;
      border-bottom: 1px solid var(--gray-03)
  }

      .box-news-utilities__link::after {
        width: 10px;
        height: 18px;
        left: 0;
        right: auto;
        background-image: url('/images/ico_arrow_right_03.svg');
        background-size: 10px 18px;
      }
    }

.box-news-utilities__item:nth-child(odd) .box-news-utilities__link {
    border-right: 1px solid #404662;
    border-right: 1px solid var(--darkBlue-03);
  }

@media print, screen and (min-width: 769px) {

.box-news-utilities__item:nth-child(odd) .box-news-utilities__link {
      border-right: none
  }
    }

.box-news-utilities--col-03 .box-news-utilities__item {
    width: 100%;
  }

@media print, screen and (min-width: 769px) {

.box-news-utilities--col-03 .box-news-utilities__item {
      width: 33.33%
  }
    }

.box-notice-02 {
  font-size: 1.2rem;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.box-notice-02 {
    font-size: 1.4rem
}
  }

.box-notice-02__list {
    margin: 0;
    position: relative;
  }

.box-notice-02__item-01 {
    font-size: 1.2rem;
    padding-left: 15px;
    position: relative;
  }

.box-notice-02__item-01::before {
      content: '繝ｻ';
      text-align: center;
      position: absolute;
      left: 0;
    }

@media print, screen and (min-width: 769px) {

.box-notice-02__item-01 {
      font-size: 1.4rem
  }
    }

.box-notice-02__list--order {
    margin-left: 0;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-notice-02__list--order {
      margin-left: 30px
  }
    }

.box-notice-02__item-02 {
    font-size: 1.2rem;
    padding-left: 30px;
    position: relative;
  }

.box-notice-02__item-02::before {
      content: attr(data-order);
      text-align: center;
      position: absolute;
      left: 0;
    }

@media print, screen and (min-width: 769px) {

.box-notice-02__item-02 {
      font-size: 1.4rem;
      padding-left: 35px
  }
    }

.box-notice {
  background-color: #f8f7f3;
  background-color: var(--mainBg);
  padding: 25px 30px;
  position: relative;
}

.box-notice__title {
    color: #666;
    color: var(--gray-06);
    font-weight: 600;
    font-size: 1.2rem;
  }

@media print, screen and (min-width: 769px) {

.box-notice__title {
      font-size: 1.4rem
  }
    }

.box-notice__desc {
    font-weight: 400;
    font-size: 1.2rem;
  }

@media print, screen and (min-width: 769px) {

.box-notice__desc {
      font-size: 1.4rem
  }
    }

.box-owner-slider {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 80px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.box-owner-slider {
    padding-left: 40px
}
  }

.box-owner-slider__text {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

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

.box-owner-slider__text {
      font-size: 1rem
  }
    }

.box-owner-slider__title {
    font-size: 2.6rem;
  }

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

.box-owner-slider__title {
      font-size: 2rem
  }
    }

.box-owner-text-01 {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 25px;
}

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

.box-owner-text-01 {
    display: block;
    margin-bottom: 15px
}
  }

.box-owner-text-01__box-image {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 167px;
    margin-right: 30px;
  }

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

.box-owner-text-01__box-image {
      margin-right: 0;
      margin-bottom: 10px
  }
    }

.box-owner-text-01__image {
    width: 100%;
  }

.box-owner-text-01__box-detail {
    -webkit-flex: 1;
            flex: 1;
  }

.box-owner-voice__item {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 15px;
  }

.box-owner-voice__item:last-child {
      margin-bottom: 0;
    }

.box-owner-voice__image {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50px;
    height: 52px;
    margin-right: 25px;
    background: url('/images/static/owner/cashback/img_cashback_01.png') center no-repeat;
    background-size: contain;
  }

.box-owner-voice__info {
    position: relative;
    -webkit-flex: 1;
            flex: 1;
    padding: 15px;
    border-radius: 8px;
    background-color: #f5f4ee;
    background-color: var(--gray-05);
  }

.box-owner-voice__info::before {
      top: 12px;
      left: -14px;
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 14px 7px 0;
      border-color: transparent #f5f4ee transparent transparent;
      border-color: transparent var(--gray-05) transparent transparent;
      content: '';
    }

.box-owner-voice__item--right .box-owner-voice__image {
    -webkit-order: 2;
            order: 2;
    margin-left: 25px;
    margin-right: 0;
  }

.box-owner-voice__item--right .box-owner-voice__info {
    -webkit-order: 1;
            order: 1;
  }

.box-owner-voice__item--right .box-owner-voice__info::before {
      right: -14px;
      left: auto;
      border-width: 7px 0 7px 14px;
      border-color: transparent transparent transparent #f5f4ee;
      border-color: transparent transparent transparent var(--gray-05);
    }

.box-pagetop {
  text-align: right;
  margin: 20px -15px 0;
  position: relative;
}

.box-pagetop::before,
  .box-pagetop::after {
    content: '';
    display: table;
  }

.box-pagetop::after {
    clear: both;
  }

@media print, screen and (min-width: 769px) {

.box-pagetop {
    margin: 20px 0 0
}
  }

.box-pagetop__link {
    font-size: 1.4rem;
    transition: opacity 0.2s ease-in-out;
    padding: 0 15px;
    position: relative;
  }

.box-pagetop__link::before {
      content: '';
      position: absolute;
      left: 0;
      width: 8px;
      height: 12px;
      background-image: url('/images/ico_arrow_right_03.svg');
      background-size: 8px 12px;
      top: 50%;
      margin-top: -6px;
    }

@media print, screen and (min-width: 769px) {

.box-pagetop__link {
      font-size: 1.8rem;
      padding: 0 0 0 20px
  }

      .box-pagetop__link::before {
        width: 10px;
        height: 18px;
        background-size: 10px 18px;
        margin-top: -9px;
      }
    }

.box-pagetop__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.box-pdf-01 {
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border: 1px solid var(--gray-03);
}

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

.box-pdf-01 {
    margin-bottom: 20px
}
  }

.box-pdf-01:last-child {
    margin-bottom: 0;
  }

.box-pdf-01__link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    position: relative;
    min-height: 70px;
    padding: 15px 80px 15px 20px;
  }

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

.box-pdf-01__link {
      min-height: 54px;
      padding: 11px 60px 11px 15px
  }
    }

.box-pdf-01__link::before {
      content: '';
      top: 50%;
      right: 20px;
      position: absolute;
      width: 40px;
      height: 49px;
      background: url('/images/ico_pdf_01.png') no-repeat;
      background-size: 40px 49px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.box-pdf-01__link::before {
        right: 15px;
        width: 30px;
        height: 37px;
        background-size: 30px 37px
    }
      }

@media print, screen and (min-width: 769px) {

.box-pdf-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-pdf-01__title-01 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

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

.box-pdf-01__title-01 {
      margin-bottom: 2px;
      font-size: 1.6rem;
      line-height: 1.44
  }
    }

.box-pdf-01__text-01 {
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.box-pdf-01__text-01 {
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-pr-01 {
  margin-bottom: 20px;
}

.list-pr-01 {
  margin: 0 -15px;
}

@media print, screen and (min-width: 769px) {

.list-pr-01 {
    margin: 0 -20px
}
  }

.list-pr-01::before,
  .list-pr-01::after {
    content: '';
    display: table;
  }

.list-pr-01::after {
    clear: both;
  }

.list-pr-01__item {
    width: 33%;
    padding: 0 15px;
    float: left;
  }

@media print, screen and (min-width: 769px) {

.list-pr-01__item {
      padding: 0 20px
  }
    }

.box-price-rate {
  margin-bottom: 60px;
  position: relative;
}

.box-price-rate__heading {
    margin-bottom: 20px;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.box-price-rate__heading {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: space-between;
              justify-content: space-between;
      -webkit-align-items: center;
              align-items: center;
      margin-bottom: 30px
  }
    }

.box-price-rate__text {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

@media print, screen and (min-width: 769px) {

.box-price-rate__text {
      font-size: 1.8rem;
      margin-bottom: 0
  }
    }

.box-price-rate__tabs {
    position: relative;
  }

.box-price-rate__tabs::before,
    .box-price-rate__tabs::after {
      content: '';
      display: table;
    }

.box-price-rate__tabs::after {
      clear: both;
    }

.box-price-rate__tabs__list {
      width: 100%;
      padding: 0;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__tabs__list {
        width: 930px
    }
      }

.box-price-rate__tabs__list::before,
      .box-price-rate__tabs__list::after {
        content: '';
        display: table;
      }

.box-price-rate__tabs__list::after {
        clear: both;
      }

.box-price-rate__tabs__list__item {
        max-width: 100%;
        -webkit-flex-basis: 0;
                flex-basis: 0;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
                justify-content: center;
        -webkit-align-items: center;
                align-items: center;
        font-size: 1.5rem;
        background-color: #fff;
        background-color: var(--white);
        box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
        border: 1px solid rgba(7, 0, 0, 0.15);
        padding: 13px 7px 16px;
        transition: opacity 0.2s ease-in-out;
        cursor: pointer;
      }

.box-price-rate__tabs__list__item:first-child {
          border-radius: 6px;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0;
          border-right: 0;
        }

.box-price-rate__tabs__list__item:last-child {
          border-radius: 6px;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0;
          border-left: 0;
        }

@media print, screen and (min-width: 769px) {

.box-price-rate__tabs__list__item {
          font-size: 1.8rem
      }

          .box-price-rate__tabs__list__item:hover {
            opacity: 0.7;
            opacity: var(--opacity);
          }
        }

.box-price-rate__tabs__list__item.is-active {
          color: #fff;
          color: var(--white);
          background-color: #00b7e1;
          background-color: var(--lightBlue-01);
          border: 1px solid #00b7e1;
          border: 1px solid var(--lightBlue-01);
          border-bottom: 1px solid #0aaadc;
          border-bottom: 1px solid var(--lightBlue-02);
        }

.box-price-rate__tabs__contents {
      position: relative;
    }

.box-price-rate__tabs__contents::before,
      .box-price-rate__tabs__contents::after {
        content: '';
        display: table;
      }

.box-price-rate__tabs__contents::after {
        clear: both;
      }

.box-price-rate__tabs__contents__item {
        display: none;
      }

.box-price-rate__table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

.box-price-rate__table-01 {
    width: 100%;
  }

.box-price-rate__table-01 th {
      background-color: #f8f7f3;
      background-color: var(--mainBg);
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
    }

.box-price-rate__table-01 td {
      text-align: center;
      vertical-align: middle;
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      height: 38px;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-01 td {
        height: 58px
    }
      }

.box-price-rate__table-01__head--main-title {
        min-width: 124px;
        height: 55px;
        font-size: 1.2rem;
        font-weight: 700;
        background-image: linear-gradient(to top right, transparent calc(50% - 1px), #ccc, transparent calc(50% + 1px));
        background-image: linear-gradient(to top right, transparent calc(50% - 1px), var(--lineGray-01), transparent calc(50% + 1px));
        position: relative;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-01__head--main-title {
          font-size: 1.4rem;
          min-width: 187px
      }
        }

.box-price-rate__table-01__head--main-title__before {
          position: absolute;
          left: 8px;
          bottom: 5px;
        }

.box-price-rate__table-01__head--main-title__after {
          position: absolute;
          right: 8px;
          top: 5px;
        }

.box-price-rate__table-01__head--title {
        min-width: 68px;
        height: 55px;
        font-size: 1.2rem;
        font-weight: 400;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-01__head--title {
          font-size: 1.4rem
      }
        }

.box-price-rate__table-01__body--head {
      font-size: 1.2rem;
      font-weight: 400;
      vertical-align: middle;
      text-align: left;
      padding: 0 20px;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-01__body--head {
        font-size: 1.8rem
    }
      }

.box-price-rate__table-01__link__in {
        height: 38px;
        color: #00b7e1;
        color: var(--lightBlue-01);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: underline;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
                justify-content: center;
        -webkit-align-items: center;
                align-items: center;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-01__link__in {
          height: 58px;
          font-size: 1.8rem
      }
        }

.box-price-rate__table-01__link__in:hover {
          background-color: #d9f4fb;
          background-color: var(--lightBlue-04);
        }

.box-price-rate__table-02 {
    width: 100%;
  }

.box-price-rate__table-02 th {
      background-color: #f8f7f3;
      background-color: var(--mainBg);
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
    }

.box-price-rate__table-02 td {
      text-align: center;
      vertical-align: middle;
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      height: 38px;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-02 td {
        height: 58px
    }
      }

.box-price-rate__table-02__head--main-title {
        min-width: 124px;
        height: 55px;
        font-size: 1.2rem;
        font-weight: 700;
        background-image: linear-gradient(to top right, transparent calc(50% - 1px), #ccc, transparent calc(50% + 1px));
        background-image: linear-gradient(to top right, transparent calc(50% - 1px), var(--lineGray-01), transparent calc(50% + 1px));
        position: relative;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-02__head--main-title {
          font-size: 1.4rem;
          min-width: 187px
      }
        }

.box-price-rate__table-02__head--main-title__before {
          position: absolute;
          left: 8px;
          bottom: 5px;
        }

.box-price-rate__table-02__head--main-title__after {
          position: absolute;
          right: 8px;
          top: 5px;
        }

.box-price-rate__table-02__head--title {
        min-width: 68px;
        height: 55px;
        font-size: 1.2rem;
        font-weight: 400;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-02__head--title {
          font-size: 1.4rem;
          min-width: 117px
      }
        }

.box-price-rate__table-02__body--head {
      font-size: 1.2rem;
      font-weight: 400;
      vertical-align: middle;
      text-align: left;
      padding: 0 20px;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-02__body--head {
        font-size: 1.8rem
    }
      }

.box-price-rate__table-02__link__in {
        height: 38px;
        color: #00b7e1;
        color: var(--lightBlue-01);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: underline;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
                justify-content: center;
        -webkit-align-items: center;
                align-items: center;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-02__link__in {
          height: 58px;
          font-size: 1.8rem
      }
        }

.box-price-rate__table-02__link__in:hover {
          background-color: #d9f4fb;
          background-color: var(--lightBlue-04);
        }

.box-price-rate__table-03 {
    width: 100%;
  }

.box-price-rate__table-03 th {
      background-color: #f8f7f3;
      background-color: var(--mainBg);
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
    }

.box-price-rate__table-03 td {
      text-align: center;
      vertical-align: middle;
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      height: 38px;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-03 td {
        height: 58px
    }
      }

.box-price-rate__table-03__head--main-title {
        min-width: 124px;
        height: 55px;
        font-size: 1.2rem;
        font-weight: 700;
        background-image: linear-gradient(to top right, transparent calc(50% - 1px), #ccc, transparent calc(50% + 1px));
        background-image: linear-gradient(to top right, transparent calc(50% - 1px), var(--lineGray-01), transparent calc(50% + 1px));
        position: relative;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-03__head--main-title {
          font-size: 1.4rem;
          min-width: 187px
      }
        }

.box-price-rate__table-03__head--main-title__before {
          position: absolute;
          left: 8px;
          bottom: 5px;
        }

.box-price-rate__table-03__head--main-title__after {
          position: absolute;
          right: 8px;
          top: 5px;
        }

.box-price-rate__table-03__head--title {
        min-width: 80px;
        height: 55px;
        font-size: 1.2rem;
        font-weight: 400;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-03__head--title {
          font-size: 1.4rem;
          min-width: 136px
      }
        }

.box-price-rate__table-03__body--head {
      font-size: 1.2rem;
      font-weight: 400;
      vertical-align: middle;
      text-align: left;
      padding: 0 20px;
    }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-03__body--head {
        font-size: 1.8rem
    }
      }

.box-price-rate__table-03__link__in {
        height: 38px;
        color: #00b7e1;
        color: var(--lightBlue-01);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: underline;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
                justify-content: center;
        -webkit-align-items: center;
                align-items: center;
      }

@media print, screen and (min-width: 769px) {

.box-price-rate__table-03__link__in {
          height: 58px;
          font-size: 1.8rem
      }
        }

.box-price-rate__table-03__link__in:hover {
          background-color: #d9f4fb;
          background-color: var(--lightBlue-04);
        }

.box-profile-01 {
  margin-top: 27px;
}

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

.box-profile-01 {
    margin-top: 50px
}
  }

.box-profile-01__title {
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.box-profile-01__title {
      margin-bottom: 16px;
      padding-bottom: 5px;
      font-size: 1.6rem
  }
    }

.box-profile-01__text {
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.78;
  }

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

.box-profile-01__text {
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.box-profile-01__list {
    overflow: hidden;
  }

.box-profile-01__list-text {
    overflow: hidden;
    position: relative;
    padding-left: 17px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.box-profile-01__list-text {
      padding-left: 15px;
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.box-profile-01__list-text::before {
      content: '繝ｻ';
      position: absolute;
      top: 0;
      left: 0;
    }

.box-property-01 {
  overflow: hidden;
  margin-bottom: 50px;
}

.box-property-01__title {
    margin-bottom: 4px;
    color: #333;
    color: var(--black-01);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
  }

.box-property-01__text {
    margin-bottom: 10px;
    color: #333;
    color: var(--black-01);
    font-size: 1.6rem;
    line-height: 1.5;
  }

.box-property-01__list-links {
    overflow: hidden;
  }

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

.box-property-01__list-links {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      margin: -10px -5px 0
  }
    }

.box-property-01__item {
    float: left;
    position: relative;
    padding: 0 8px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

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

.box-property-01__item {
      float: none;
      width: 50%;
      margin-top: 10px;
      padding: 0 5px
  }
    }

.box-property-01__item::before {
      content: '';
      position: absolute;
      top: 5px;
      right: 0;
      width: 1px;
      height: 16px;
      background: #333;
      background: var(--black-01);
    }

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

.box-property-01__item::before {
        top: 0;
        width: 0;
        height: 0;
        background: none
    }
      }

.box-property-01__item:first-child {
      padding: 0 8px 0 0;
    }

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

.box-property-01__item:first-child {
        width: 100%;
        padding: 0 5px
    }
      }

.box-property-01__item:last-child {
      padding: 0 0 0 8px;
    }

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

.box-property-01__item:last-child {
        padding: 0 5px
    }
      }

.box-property-01__item:last-child::before {
        top: 0;
        width: 0;
        height: 0;
        background: none;
      }

.box-property-01__link {
    color: #00b7e1;
    color: var(--lightBlue-01);
    text-decoration: underline;
  }

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

.box-property-01__link {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
              justify-content: center;
      -webkit-align-items: center;
              align-items: center;
      width: 100%;
      height: 100%;
      padding: 12px 10px;
      background: #fff;
      background: var(--white);
      border: 1px solid #999;
      border: 1px solid var(--gray-02);
      box-shadow: inset 0 -3px 0 0 rgba(7, 0, 0, 0.15);
      border-radius: 4px;
      color: #333;
      color: var(--black-01);
      text-align: center;
      text-decoration: none;
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.box-property-01__link:hover {
        text-decoration: none
    }
      }

.box-property-confirm {
  position: relative;
}

.box-property-confirm::before,
  .box-property-confirm::after {
    content: '';
    display: table;
  }

.box-property-confirm::after {
    clear: both;
  }

.box-property-confirm__image {
    width: 120px;
    height: 90px;
    margin-right: 15px;
/*     background-color: #1f2646;
    background-color: var(--darkBlue-01);
 */    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
  }

@media print, screen and (min-width: 769px) {

.box-property-confirm__image {
      width: 220px;
      height: 165px;
      margin-right: 30px
  }
    }

.box-property-confirm__info {
    width: calc(100% - 135px);
    float: left;
  }

@media print, screen and (min-width: 769px) {

.box-property-confirm__info {
      width: calc(100% - 250px)
  }
    }

.box-property-confirm__info__title {
      font-size: 1.4rem;
      color: #333;
      color: var(--black-01);
      font-weight: 700;
      margin-bottom: 5px;
    }

@media print, screen and (min-width: 769px) {

.box-property-confirm__info__title {
        font-size: 1.8rem;
        margin-bottom: 10px
    }
      }

.box-property-confirm__info__price {
      font-size: 1.4rem;
      color: #eb0f32;
      color: var(--red-01);
      font-weight: 700;
    }

@media print, screen and (min-width: 769px) {

.box-property-confirm__info__price {
        font-size: 1.6rem;
        margin-bottom: 10px
    }
      }

.box-property-confirm__info__desc {
      font-size: 1.4rem;
      color: #333;
      color: var(--black-01);
      letter-spacing: 0.02em;
    }

@media print, screen and (min-width: 769px) {

.box-property-confirm__info__desc {
        font-size: 1.6rem
    }
      }

.box-property-list-01 {
  overflow: hidden;
  margin-bottom: 68px;
}

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

.box-property-list-01 {
    margin-bottom: 54px
}
  }

.box-property-list-01:last-of-type {
    margin-bottom: 0;
  }

.box-property-list-01 .list-article__item {
      padding-top: 15px;
      padding-bottom: 15px;
    }

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

.box-property-list-01 .list-article__item {
        padding: 0
    }
      }

.box-property-list-01 .list-article__image {
      width: 127px;
      height: 90px;
      -webkit-flex: 0 0 127px;
              flex: 0 0 127px;
    }

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

.box-property-list-01 .list-article__image {
        width: 112px;
        height: 80px;
        -webkit-flex: 0 0 112px;
                flex: 0 0 112px
    }
      }

.box-purchase-info-01 {
  overflow: hidden;
}

.box-purchase-info-01__text {
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

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

.box-purchase-info-01__text {
      margin-bottom: 8px;
      line-height: 1.82
  }
    }

.box-purchase-info-01__text:last-child {
      margin-bottom: 0;
    }

.box-purchase-info-01__text--fwb {
      font-weight: 700;
    }

.box-purchase-info-01 .title-side {
    margin-bottom: 16px;
  }

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

.box-purchase-info-01 .title-side {
      margin-bottom: 13px;
      padding-bottom: 10px
  }
    }

.box-reason-price-01 {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 20px;
}

.box-reason-price-01:last-child {
    margin-bottom: 0;
  }

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

.box-reason-price-01 {
    display: block
}
  }

.box-reason-price-01__main {
    -webkit-flex: 1;
            flex: 1;
  }

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

.box-reason-price-01__main {
      margin-bottom: 10px
  }
    }

.box-reason-price-01__side {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

.box-reason-price-01__box-price {
    margin-left: 20px;
    padding: 5px 30px;
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    border: 2px solid #ffa000;
    border: 2px solid var(--mainOrange);
    text-align: center;
    line-height: 1.4;
  }

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

.box-reason-price-01__box-price {
      margin-left: 0;
      border-radius: 6px
  }
    }

.box-reason-price-01__text-title {
    font-size: 1.6rem;
    font-weight: 700;
  }

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

.box-reason-price-01__text-title {
      display: inline-block;
      font-size: 1.4rem
  }
    }

.box-reason-price-01__text-price {
    padding-left: 15px;
    font-size: 2.4rem;
    color: #ffa000;
    color: var(--mainOrange);
  }

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

.box-reason-price-01__text-price {
      padding-right: 10px;
      padding-left: 10px;
      font-size: 2rem
  }
    }

.box-reason-price-01__text-date {
    color: #a9a9a9;
    color: var(--gray-04);
  }

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

.box-reason-price-01__text-date {
      display: inline-block;
      font-size: 1.2rem
  }
    }

.box-recommended-01 {
  overflow: hidden;
  margin-bottom: 16px;
}

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

.box-recommended-01 {
    margin-bottom: 55px
}
  }

.box-recommended-01__list-property {
    overflow: hidden;
  }

.box-recommended-01__item {
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.box-recommended-01__link {
    display: block;
    padding: 16px 0;
  }

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

.box-recommended-01__link {
      padding: 11px 0
  }
    }

@media print, screen and (min-width: 769px) {

.box-recommended-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-recommended-01__item:first-child .box-recommended-01__link {
    padding: 0 0 16px;
  }

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

.box-recommended-01__item:first-child .box-recommended-01__link {
      padding: 0 0 11px
  }
    }

.box-recommended-01__image {
    overflow: hidden;
    float: left;
    width: 80px;
    height: 60px;
    margin: 4px 20px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.box-recommended-01__image {
      display: none
  }
    }

.box-recommended-01__info {
    overflow: hidden;
  }

.box-recommended-01__building {
    color: #333;
    color: var(--black-01);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
  }

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

.box-recommended-01__building {
      margin-bottom: 3px;
      font-size: 1.4rem
  }
    }

.box-recommended-01__detail {
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 1.5;
  }

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

.box-recommended-01__detail {
      margin-bottom: 6px;
      font-size: 1.4rem
  }
    }

.box-recommended-01__price {
    color: #eb0f32;
    color: var(--red-01);
  }

.box-recommended-01__price--fwb {
      font-weight: 700;
    }

.box-recommended-01__size {
    color: #333;
    color: var(--black-01);
  }

.box-recommended-01__text {
    color: #333;
    color: var(--black-01);
    font-size: 1.4rem;
    line-height: 1.5;
  }

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

.box-recommended-01__text {
      font-size: 1.4rem
  }
    }

.box-region-01 {
  overflow: hidden;
}

.box-region-01__prefecture {
    overflow: hidden;
  }

.box-region-01__title {
    overflow: hidden;
    position: relative;
    padding: 16px 45px 15px 20px;
    background: #293357;
    background: var(--darkBlue-02);
    border-bottom: 1px solid #515874;
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
  }

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

.box-region-01__title {
      padding: 12px 30px 12px 15px;
      font-size: 1.6rem
  }
    }

.box-region-01__title::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 20px;
      width: 19px;
      height: 19px;
      background: url('/images/ico_plus_02.svg') no-repeat;
      background-size: 19px 19px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.box-region-01__title::after {
        right: 15px;
        width: 12px;
        height: 12px;
        background-size: 12px 12px
    }
      }

.box-region-01__title.accordion--is-active::after {
      background: url('/images/ico_minus_02.svg') no-repeat;
      background-size: 19px 19px;
    }

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

.box-region-01__title.accordion--is-active::after {
        background-size: 12px 12px
    }
      }

.box-region-01__city {
    overflow: hidden;
    display: none;
    padding: 30px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
  }

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

.box-region-01__city {
      padding: 0
  }
    }

.box-region-01__table {
    overflow: hidden;
    display: none;
    padding: 30px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
  }

.box-release {
  position: relative;
}

.box-release__filter--section {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

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

.box-release__filter--section {
      display: block
  }
    }

.box-release__filter--section__select {
      -webkit-flex: 0 0 215px;
              flex: 0 0 215px;
    }

.box-release__filter--section__search {
      -webkit-flex: 0 0 550px;
              flex: 0 0 550px;
    }

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

.box-release__filter--section__search {
        margin: 15px 0
    }
      }

.box-release__filter--section__search::before,
      .box-release__filter--section__search::after {
        content: '';
        display: table;
      }

.box-release__filter--section__search::after {
        clear: both;
      }

.box-release__filter--section__search__input {
        width: calc(100% - 64px) !important;
        height: 54px !important;
        border-right: 0 !important;
        border-top-left-radius: 27px;
        border-bottom-left-radius: 27px;
        float: left;
      }

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

.box-release__filter--section__search__input {
          height: 44px !important
      }
        }

.box-release__filter--section__search__btn {
        width: 64px;
        height: 54px;
        border: 1px solid #999;
        border: 1px solid var(--gray-02);
        border-top-right-radius: 27px;
        border-bottom-right-radius: 27px;
        text-align: center;
        overflow: hidden;
        background-color: #0aaadc;
        background-color: var(--lightBlue-02);
        border-left: none;
        cursor: pointer !important;
        transition: opacity 0.2s ease-in-out;
        float: left;
        position: relative;
      }

.box-release__filter--section__search__btn::after {
          content: '';
          width: 25px;
          height: 25px;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          background-image: url('/images/ico_search_01.svg');
          background-repeat: no-repeat;
          background-size: 25px 25px;
          background-position: center center;
        }

.box-release__filter--section__search__btn:hover {
          opacity: 0.7;
          opacity: var(--opacity);
        }

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

.box-release__filter--section__search__btn {
          width: 55px;
          height: 44px
      }

          .box-release__filter--section__search__btn::after {
            width: 21px;
            height: 21px;
            background-size: 21px 21px;
          }
        }

.box-search-by-01 {
  overflow: hidden;
}

.box-search-by-01__inner {
    overflow: hidden;
    display: none;
  }

.box-search-by-01 #tab-01 {
    display: block;
  }

.box-search-by-01__title {
    overflow: hidden;
    position: relative;
    padding: 16px 45px 15px 20px;
    background: #293357;
    background: var(--darkBlue-02);
    border-bottom: 1px solid #515874;
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
  }

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

.box-search-by-01__title {
      padding: 12px 30px 12px 15px;
      font-size: 1.6rem
  }
    }

.box-search-by-01__title::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 20px;
      width: 19px;
      height: 19px;
      background: url('/images/ico_plus_02.svg') no-repeat;
      background-size: 19px 19px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.box-search-by-01__title::after {
        right: 15px;
        width: 12px;
        height: 12px;
        background-size: 12px 12px
    }
      }

.box-search-by-01__title--is-active::after {
      background: url('/images/ico_minus_02.svg') no-repeat;
      background-size: 19px 19px;
    }

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

.box-search-by-01__title--is-active::after {
        background-size: 12px 12px
    }
      }

.box-search-by-01__content {
    overflow: hidden;
    display: none;
  }

.box-search-by-01--terms-01 {
    margin-bottom: 40px;
  }

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

.box-search-by-01--terms-01 {
      margin: 0 -15px 15px
  }
    }

.box-search-terms {
  margin-bottom: 50px;
}

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

.box-search-terms {
    margin-bottom: 20px
}
  }

.box-search-terms:last-child {
    margin-bottom: 0;
  }

.box-search-terms__in {
    padding: 25px 30px 35px;
    background-color: #fff;
    background-color: var(--white);
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
  }

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

.box-search-terms__in {
      margin-right: -15px;
      margin-left: -15px;
      padding: 10px 15px 16px;
      font-size: 1.4rem
  }
    }

.box-search-terms__list {
    margin-bottom: 15px;
  }

.box-search-terms__list:last-child {
      margin-bottom: 0;
    }

.box-search-terms__list-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

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

.box-search-terms__list-item {
      padding-top: 10px;
      padding-bottom: 10px
  }
    }

.box-search-terms__title {
    -webkit-flex: 0 0 105px;
            flex: 0 0 105px;
    font-weight: 700;
  }

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

.box-search-terms__title {
      -webkit-flex: 0 0 75px;
              flex: 0 0 75px
  }
    }

.box-search-terms__value {
    -webkit-flex: 1;
            flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.box-search-terms__button {
    -webkit-flex: 0 0 100px;
            flex: 0 0 100px;
    text-align: right;
  }

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

.box-search-terms__button {
      -webkit-flex: 0 0 48px;
              flex: 0 0 48px;
      margin-left: 15px;
      text-align: center
  }
    }

.box-search-terms__link-edit {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: #333;
    color: var(--black-01);
    cursor: pointer;
  }

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

.box-search-terms__link-edit {
      display: block;
      padding: 8px 0;
      border-radius: 6px;
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
      font-size: 1.3rem;
      text-align: center
  }
    }

.box-search-terms__link-edit::after {
      top: 50%;
      left: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.box-search-terms__link-edit::after {
        display: none
    }
      }

@media print, screen and (min-width: 769px) {

.box-search-terms__link-edit:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-search-terms__link-edit2 {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: #333;
    color: var(--black-01);
    cursor: pointer;
  }

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

.box-search-terms__link-edit2 {
      display: block;
      padding: 8px 0;
      border-radius: 6px;
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
      font-size: 1.3rem;
      text-align: center
  }
    }

.box-search-terms__link-edit2::after {
      top: 50%;
      left: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.box-search-terms__link-edit2::after {
        display: none
    }
      }

@media print, screen and (min-width: 769px) {

.box-search-terms__link-edit2:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-search-terms__link-arrow {
    text-align: right;
  }

.box-search-terms__link-arrow-text {
    position: relative;
    display: inline-block;
    padding-left: 18px;
  }

.box-search-terms__link-arrow-text::after {
      top: 50%;
      left: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

@media print, screen and (min-width: 769px) {

.box-search-terms__link-arrow-text:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-search-terms__bottom {
    text-align: center;
  }

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

.box-search-terms__bottom {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column-reverse;
              flex-direction: column-reverse
  }
    }

.box-search-terms__bottom-col {
    margin-bottom: 15px;
  }

@media print, screen and (min-width: 769px) {

.box-search-terms__bottom-col:last-child {
        margin-bottom: 0
    }
      }

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

.box-search-terms__bottom-col:first-child {
        margin-bottom: 0
    }
      }

.box-search-terms__button-white {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    text-align: center;
  }

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

.box-search-terms__button-white {
      display: block;
      max-width: 280px;
      margin-right: auto;
      margin-left: auto;
      padding: 12px 20px
  }
    }

@media print, screen and (min-width: 769px) {

.box-search-terms__button-white:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-searchcondition-email {
  width: 100%;
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid var(--gray-03);
  margin-bottom: 26px;
  padding: 0 0 26px;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.box-searchcondition-email {
    padding: 0 0 30px;
    margin-bottom: 30px
}
  }

.box-searchcondition-email__inner {
    width: 100%;
  }

@media print, screen and (min-width: 769px) {

.box-searchcondition-email__inner {
      width: 740px
  }
    }

.box-seminar-event {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 50px;
  position: relative;
}

.box-seminar-event__in {
    margin-right: -15px;
    margin-left: -15px;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.box-seminar-event__in {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-right: -30px;
      margin-left: -30px
  }
    }

.box-seminar-event__col {
    width: 100%;
    margin-bottom: 40px;
    display: block;
  }

.box-seminar-event__col:last-child {
      margin-bottom: 0;
    }

@media print, screen and (min-width: 769px) {

.box-seminar-event__col {
      -webkit-flex-basis: 0;
              flex-basis: 0;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      max-width: 100%;
      padding: 0 15px;
      margin: 0
  }
    }

.box-seminar-event__list {
    margin-bottom: 40px;
  }

.box-seminar-event__map {
    margin-top: 30px;
  }

.box-seminar-event__collapse {
    height: 105px;
    overflow: hidden;
  }

@media print, screen and (min-width: 769px) {

.box-seminar-event__collapse {
      height: auto
  }
    }

.box-seminar-event__btn-readmore {
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    padding: 10px 22px;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.box-seminar-event__btn-readmore {
      display: none
  }
    }

.box-seminar-event__btn-map {
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    text-align: center;
    padding: 7px 9px;
    display: inline-block;
    margin: 5px 0 15px;
  }

@media print, screen and (min-width: 769px) {

.box-seminar-event__btn-map {
      display: none
  }
    }

.box-service-link {
  padding: 0 15px;
  transition: opacity 0.2s ease-in-out;
  margin: 0 -15px 15px;
  display: block;
  position: relative;
  overflow: hidden;
}

@media print, screen and (min-width: 769px) {

.box-service-link {
    padding: 20px 35px 20px 20px;
    border: 1px solid #ddd;
    border: 1px solid var(--gray-03);
    margin: 0 0 20px
}
  }

.box-service-link::after {
    width: 7.5px;
    height: 12.5px;
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    background-image: url('/images/ico_arrow_right_04.svg');
    background-repeat: no-repeat;
    background-size: 7.5px 12.5px;
    margin-top: -6px;
  }

@media print, screen and (min-width: 769px) {

.box-service-link::after {
      width: 10px;
      height: 18px;
      background-size: 10px 18px;
      margin-top: -9px
  }
    }

.box-service-link:hover {
    opacity: 0.7;
    opacity: var(--opacity);
  }

.box-service-link .text-content-04 {
    padding-right: 15px;
  }

@media print, screen and (min-width: 769px) {

.box-service-link .text-content-04 {
      padding-right: 0
  }
    }

.box-service-link__figure {
    margin-bottom: 15px;
    display: block;
  }

.box-service-link__img {
    width: 100%;
    display: block;
  }

.box-service-link--inverse {
    padding: 15px;
    margin: 0 -15px;
    background-color: #f8f7f3;
    background-color: var(--mainBg);
    border: none;
    transition: none;
  }

@media print, screen and (min-width: 769px) {

.box-service-link--inverse {
      padding: 20px;
      margin: 0
  }
    }

.box-service-link--inverse::after {
      content: none;
    }

.box-service-link--inverse:hover {
      opacity: 1;
    }

.box-service-link--inverse .text-content-04 {
      padding-right: 0;
    }

.box-service-list-01 {
  margin-bottom: 50px;
}

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

.box-service-list-01 {
    margin-bottom: 20px;
    padding-top: 25px;
    padding-right: 15px;
    padding-left: 15px;
    background-color: #fff;
    background-color: var(--white)
}
  }

.box-service-list-01:last-child {
    margin-bottom: 0;
  }

.box-service-list-01__title-link {
    position: relative;
    display: block;
    padding-right: 25px;
    color: #ffa000;
    color: var(--mainOrange);
  }

.box-service-list-01__title-link::after {
      top: 50%;
      right: 15px;
      position: absolute;
      width: 8px;
      height: 12px;
      background: url('/images/ico_arrow_right_02.svg') no-repeat;
      background-size: 8px 12px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.box-service-list-01 .box-service-list-01__title {
      margin-bottom: 0;
      color: #ffa000;
      color: var(--mainOrange);
      border-color: #ffa000;
      border-color: var(--mainOrange)
  }
    }

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

.box-service-list-01 .box-service-list-01__item:last-child .box-service-list-01__in {
      border-bottom: none
  }
    }

.box-side-search-01 {
  overflow: hidden;
  margin-bottom: 40px;
  padding: 17px 18px 20px;
  background: #fff;
  background: var(--white);
  border: 2px solid #00b7e1;
  border: 2px solid var(--lightBlue-01);
  border-radius: 8px;
}

.box-side-search-01__title {
    margin-bottom: 17px;
    padding-bottom: 11px;
    border-bottom: 2px solid #00b7e1;
    border-bottom: 2px solid var(--lightBlue-01);
    color: #00b7e1;
    color: var(--lightBlue-01);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.33;
  }

.box-side-search-01__text {
    margin-bottom: 17px;
    color: #797979;
    color: var(--gray-01);
    font-size: 1.4rem;
    line-height: 1.29;
  }

.box-side-search-01 .search-input__input {
      height: 44px;
    }

.box-side-search-01 .search-input__button {
      -webkit-flex: 0 0 54px;
              flex: 0 0 54px;
      height: 44px;
    }

.box-speaker {
  position: relative;
}

.box-speaker::before,
  .box-speaker::after {
    content: '';
    display: table;
  }

.box-speaker::after {
    clear: both;
  }

.box-speaker__list {
    padding: 0;
    margin-top: -30px;
    position: relative;
  }

.box-speaker__item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.box-speaker__avatar {
    height: 110px;
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    background-position: center top;
    -webkit-flex: 0 0 110px;
            flex: 0 0 110px;
    margin-right: 15px;
  }

@media print, screen and (min-width: 769px) {

.box-speaker__avatar {
      height: 140px;
      -webkit-flex: 0 0 140px;
              flex: 0 0 140px;
      margin-right: 30px
  }
    }

.box-speaker__desc {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
  }

.box-speaker__desc__biography {
      margin-top: 30px;
    }

.box-staff-01 {
  overflow: hidden;
  margin-top: 30px;
}

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

.box-staff-01 {
    margin-top: 34px
}
  }

.box-staff-01__in {
    overflow: hidden;
  }

.box-staff-01__link {
    display: block;
  }

@media print, screen and (min-width: 769px) {

.box-staff-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-staff-01__text-01 {
    margin-bottom: 27px;
    font-size: 1.8rem;
    line-height: 1.62;
  }

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

.box-staff-01__text-01 {
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.box-staff-01__info {
    overflow: hidden;
  }

.box-staff-01__image {
    overflow: hidden;
    float: left;
    width: 140px;
    height: 187px;
    margin: 6px 30px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.box-staff-01__image {
      width: 110px;
      height: 147px;
      margin: 4px 15px 0 0
  }
    }

.box-staff-01__image--large-01 {
      width: 180px;
      height: 240px;
    }

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

.box-staff-01__image--large-01 {
        width: 110px;
        height: 147px
    }
      }

.box-staff-01__detail {
    overflow: hidden;
  }

.box-staff-01__name {
    font-size: 1.8rem;
    line-height: 1.62;
  }

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

.box-staff-01__name {
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-staff-01__name--fwb {
      font-weight: 700;
    }

.box-staff-01__list-tag {
    overflow: hidden;
    margin-top: -5px;
    padding-top: 4px;
  }

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

.box-staff-01__list-tag {
      padding-top: 6px
  }
    }

.box-staff-01__tag {
    overflow: hidden;
    float: left;
    margin: 5px 5px 0 0;
    padding: 3px 5px 2px;
    border: 1px solid #eb0f32;
    border: 1px solid var(--red-01);
    color: #eb0f32;
    color: var(--red-01);
    font-size: 1.1rem;
    line-height: 1.2;
  }

.box-staff-01__tag:last-child {
      margin: 5px 0 0 0;
    }

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

.box-staff-01__tag {
      padding: 1px 10px;
      font-size: 1rem
  }
    }

.box-staff-01__text-02 {
    margin-top: 34px;
    font-size: 1.8rem;
    line-height: 1.62;
    letter-spacing: -0.03em;
  }

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

.box-staff-01__text-02 {
      display: none
  }
    }

.box-staff-01__text-02--style-01 {
      margin-top: 24px;
    }

.box-staff-01__text-03 {
    display: none;
  }

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

.box-staff-01__text-03 {
      display: block;
      margin-top: 16px;
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.box-staff-01__text-link {
    position: relative;
    float: right;
    clear: both;
    margin-top: 8px;
    padding-left: 20px;
    font-size: 1.8rem;
    text-align: right;
  }

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

.box-staff-01__text-link {
      margin-top: 10px;
      padding-left: 12px;
      font-size: 1.4rem
  }
    }

.box-staff-01__text-link::before {
      content: '';
      top: 50%;
      left: 0;
      position: absolute;
      width: 10px;
      height: 16px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 16px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.box-staff-01__text-link::before {
        width: 8px;
        height: 13px;
        background-size: 8px 13px
    }
      }

.box-staff-01--mt-00 {
    margin-top: 0;
  }

.button_staff-01 {
  width: 340px;
  margin: 0 auto;
}

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

.button_staff-01 {
    width: 100%;
    margin: 10px auto 0
}
  }

.box-step-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 20px;
}

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

.box-step-01 {
    margin-bottom: 15px
}
  }

.box-step-01__title-01 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 160px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 14px 10px 15px;
    background: #292f57;
    text-align: center;
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

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

.box-step-01__title-01 {
      width: 27.6%;
      padding: 11px 5px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-step-01__detail {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex: 1;
            flex: 1;
    padding: 14px 20px 15px;
    background: #f8f7f3;
    background: var(--mainBg);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.box-step-01__detail {
      padding: 11px 10px 11px 15px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-step-01__link {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex: 1;
            flex: 1;
    padding: 14px 30px 15px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.box-step-01__link {
      padding: 11px 30px 11px 15px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-step-01__link::before {
      content: '';
      top: 50%;
      right: 10px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.box-step-01__link::before {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

@media print, screen and (min-width: 769px) {

.box-step-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-step-01__text-01 {
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.box-step-01__text-01 {
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-step-01__title-02 {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

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

.box-step-01__title-02 {
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.box-sw-select-tab {
  margin-bottom: 10px;
  position: relative;
}

.box-sw-select-tab__list {
    padding: 0;
  }

.box-sw-select-tab__list::before,
    .box-sw-select-tab__list::after {
      content: '';
      display: table;
    }

.box-sw-select-tab__list::after {
      clear: both;
    }

.box-sw-select-tab__item {
    float: left;
  }

.box-sw-select-tab__link {
    font-size: 1.6rem;
    color: #00b7e1;
    color: var(--lightBlue-01);
    text-decoration: underline;
    text-align: center;
    padding: 0 15px;
    transition: opacity 0.2s ease-in-out;
    display: block;
    position: relative;
  }

.box-sw-select-tab__link2 {
    font-size: 1.6rem;
    color: #dddddd;
    text-align: center;
    padding: 0 15px;
    transition: opacity 0.2s ease-in-out;
    display: block;
    position: relative;
  }

.box-sw-select-tab__link::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 1px;
      height: 18px;
      background-color: #bcbcbc;
      background-color: var(--gray-07);
      margin-top: -9px;
    }

    .box-sw-select-tab__link2::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 1px;
      height: 18px;
      background-color: #bcbcbc;
      background-color: var(--gray-07);
      margin-top: -9px;
    }

.box-sw-select-tab__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.box-sw-select-tab__link2:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.box-sw-select-tab__item:first-child .box-sw-select-tab__link {
    padding-left: 0;
  }

.box-sw-select-tab__item:last-child .box-sw-select-tab__link {
    padding-right: 0;
  }

.box-sw-select-tab__item:last-child .box-sw-select-tab__link::after {
      content: none;
    }

.box-sw-select-tab__item.box-sw-select-tab__item--active .box-sw-select-tab__link {
    color: #333;
    color: var(--black-01);
    text-decoration: none;
    font-weight: 700;
  }

.box-sw-select-tab__item.box-sw-select-tab__item--active .box-sw-select-tab__link:hover {
      opacity: 1;
    }

.box-sw-select-tab__item:first-child .box-sw-select-tab__link2 {
    padding-left: 0;
  }

.box-sw-select-tab__item:last-child .box-sw-select-tab__link2 {
    padding-right: 0;
  }

.box-sw-select-tab__item:last-child .box-sw-select-tab__link2::after {
      content: none;
    }

.box-sw-select-tab__item.box-sw-select-tab__item--active .box-sw-select-tab__link2 {
    color: #333;
    color: var(--black-01);
    text-decoration: none;
    font-weight: 700;
  }

.box-sw-select-tab__item.box-sw-select-tab__item--active .box-sw-select-tab__link2:hover {
      opacity: 1;
    }

.box-sw-select {
  margin-bottom: 30px;
}

/* stylelint-disable no-descending-specificity */

.box-table-content-01 {
  overflow: hidden;
}

.box-table-content-01__box-table-01 {
    overflow: hidden;
    width: 100%;
  }

.box-table-content-01__box-table-01 table {
      width: 100%;
    }

.box-table-content-01__box-table-01 table thead tr th {
            padding: 18px 20px 17px;
            background: #f8f7f3;
            background: var(--mainBg);
            border-right: 1px solid #ddd;
            border-right: 1px solid var(--gray-03);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.33;
          }

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

.box-table-content-01__box-table-01 table thead tr th {
              padding: 8px 12px;
              border-right: none;
              font-size: 1.4rem;
              line-height: 1.5
          }
            }

.box-table-content-01__box-table-01 table thead tr th:last-child {
              border-right: none;
            }

.box-table-content-01__box-table-01 table thead tr th.bg-white {
              background: #fff;
              background: var(--white);
              border-right: none;
            }

.box-table-content-01__box-table-01 table thead tr td {
            padding: 18px 20px 17px;
            background: #fff;
            background: var(--white);
            border-right: 1px solid #ddd;
            border-right: 1px solid var(--gray-03);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.8rem;
            line-height: 1.33;
          }

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

.box-table-content-01__box-table-01 table thead tr td {
              padding: 8px 12px;
              border-right: none;
              font-size: 1.4rem;
              line-height: 1.5
          }
            }

.box-table-content-01__box-table-01 table thead tr td:last-child {
              border-right: none;
            }

.box-table-content-01__box-table-01 table tbody tr th {
            padding: 16px 20px;
            background: #f8f7f3;
            background: var(--mainBg);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: middle;
            text-align: left;
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.61;
          }

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

.box-table-content-01__box-table-01 table tbody tr th {
              padding: 8px 12px;
              font-size: 1.4rem;
              line-height: 1.5
          }
            }

.box-table-content-01__box-table-01 table tbody tr td {
            padding: 16px 20px;
            background: #fff;
            background: var(--white);
            border-right: 1px solid #ddd;
            border-right: 1px solid var(--gray-03);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.8rem;
            line-height: 1.61;
          }

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

.box-table-content-01__box-table-01 table tbody tr td {
              padding: 8px 12px;
              border-right: none;
              font-size: 1.4rem;
              line-height: 1.5
          }
            }

.box-table-content-01__box-table-01 table tbody tr td:last-child {
              border-right: none;
            }

.box-table-content-01__box-table-02 {
    overflow: hidden;
    margin-bottom: 20px;
  }

.box-table-content-01__box-table-02:last-child {
      margin-bottom: 0;
    }

.box-table-content-01__box-table-02 table {
      width: 100%;
    }

.box-table-content-01__box-table-02 table thead tr th {
            padding: 8px 12px;
            background: #f8f7f3;
            background: var(--mainBg);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.5;
          }

.box-table-content-01__box-table-02 table tbody tr td {
            padding: 8px 12px;
            background: #fff;
            background: var(--white);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.4rem;
            line-height: 1.5;
          }

.box-table-content-01__box-table-02 table tbody tr:last-child td {
              border-bottom: none;
            }

.box-table-content-01__title-01 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
  }

.border-right-01 {
  border-right: 1px solid #ddd !important;
  border-right: 1px solid var(--gray-03) !important;
}

.border-top-01 {
  border-top: 1px solid #ddd !important;
  border-top: 1px solid var(--gray-03) !important;
}

/* stylelint-disable no-descending-specificity */

.box-table-content-02 {
  overflow: hidden;
}

.box-table-content-02__box-table-01 {
    overflow: hidden;
  }

.box-table-content-02__box-table-01 table {
      width: 100%;
    }

.box-table-content-02__box-table-01 table thead tr th {
            padding: 19px 15px 19px 20px;
            background: #f8f7f3;
            background: var(--mainBg);
            border-right: 1px solid #ddd;
            border-right: 1px solid var(--gray-03);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: 犧ｰ犧吭ｸ｢;
            text-align: left;
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.31;
          }

.box-table-content-02__box-table-01 table thead tr th:last-child {
              border-right: none;
            }

.box-table-content-02__box-table-01 table tbody tr td {
            padding: 15px 15px 15px 20px;
            background: #fff;
            background: var(--white);
            border-right: 1px solid #ddd;
            border-right: 1px solid var(--gray-03);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.6rem;
            line-height: 1.81;
          }

.box-table-content-02__box-table-01 table tbody tr td:last-child {
              border-right: none;
            }

.box-table-content-02__title-01 {
    margin-bottom: 11px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
  }

.box-table-content-02__box-table-02 {
    overflow: hidden;
  }

.box-table-content-02__box-table-02 table {
      width: 100%;
      margin-bottom: 15px;
    }

.box-table-content-02__box-table-02 table tbody tr th {
            padding: 8px 10px;
            background: #f8f7f3;
            background: var(--mainBg);
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.5;
          }

.box-table-content-02__box-table-02 table tbody tr td {
            padding: 8px 10px;
            border-bottom: 1px solid #ddd;
            border-bottom: 1px solid var(--gray-03);
            vertical-align: top;
            text-align: left;
            font-size: 1.4rem;
            line-height: 1.5;
          }

.box-table-content-02__box-table-02 table tbody tr:last-child th {
              border-bottom: none;
            }

.box-table-content-02__box-table-02 table tbody tr:last-child td {
              border-bottom: none;
            }

.box-tag-description {
  margin-bottom: 60px;
  padding: 30px 40px;
  background-color: #fff;
  background-color: var(--white);
}

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

.box-tag-description {
    margin-right: -15px;
    margin-bottom: 35px;
    margin-left: -15px;
    padding: 30px 15px
}
  }

.box-tag-description:last-child {
    margin-bottom: 0;
  }

.box-tag-description__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: -10px;
    margin-left: -10px;
  }

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

.box-tag-description__list {
      display: block;
      margin: 0
  }
    }

.box-tag-description__list-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    width: 50%;
    margin-top: 10px;
    padding-left: 10px;
  }

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

.box-tag-description__list-item {
      width: 100%;
      padding: 0
  }

      .box-tag-description__list-item:first-child {
        margin-top: 0;
      }
    }

.box-tag-description__tag {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

.box-tag-description__text {
    -webkit-flex: 1;
            flex: 1;
    padding-left: 20px;
  }

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

.box-tag-description__text {
      padding-left: 10px
  }
    }

.box-text-01 {
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.box-text-01 {
    margin-bottom: 25px
}
  }

.box-text-02 {
  margin-bottom: 25px;
  font-size: 1.4rem;
}

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

.box-text-02 {
    font-size: 1.2rem
}
  }

.box-text-02:last-child {
    margin-bottom: 0;
  }

.box-text-02--light-black {
    color: #666;
    color: var(--gray-06);
  }

.box-text-02 .title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.box-text-02 .title {
      margin-bottom: 0;
      font-size: 1.6rem
  }
    }

.box-text-03 {
  margin-bottom: 25px;
}

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

.box-text-03 {
    padding-right: 15px;
    padding-left: 15px
}
  }

.box-text-03 .title {
    margin-bottom: 5px;
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.box-text-03 .title {
      margin-bottom: 2px;
      font-size: 1.6rem
  }
    }

.box-text-03 .text {
    color: #666;
    color: var(--gray-06);
    font-size: 1.4rem;
  }

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

.box-text-03 .text {
      font-size: 1.2rem
  }
    }

.box-text-04 {
  margin-top: 50px;
  font-size: 1.4rem;
}

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

.box-text-04 {
    padding-bottom: 20px;
    font-size: 1.2rem
}
  }

.box-text-04:last-child {
    margin-bottom: 0;
  }

.box-text-04--light-black {
    color: #666;
    color: var(--gray-06);
  }

.box-text-04 .title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.box-text-04 .title {
      margin-bottom: 0;
      font-size: 1.6rem
  }
    }

.box-text-border-01 {
  padding: 25px 30px 30px;
  border-radius: 8px;
  border: 3px solid #ffa000;
  border: 3px solid var(--mainOrange);
  background-color: #fff;
  background-color: var(--white);
  line-height: 1.7;
}

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

.box-text-border-01 {
    padding: 18px 20px;
    border-width: 2px;
    border-radius: 6px;
    line-height: 1.5
}
  }

.box-text-border-01__title {
    margin-bottom: 5px;
    font-size: 2.2rem;
    color: #ffa000;
    color: var(--mainOrange);
    font-weight: 700;
    line-height: 1.5;
  }

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

.box-text-border-01__title {
      font-size: 1.6rem
  }
    }

.box-text-border-01__button {
    display: block;
    width: 240px;
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
  }

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

.box-text-border-01__button {
      width: 160px;
      margin-top: 15px
  }
    }

.box-text-image-01 {
  margin-bottom: 15px;
}

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

.box-text-image-01 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap
}
  }

.box-text-image-01:last-child {
    margin-bottom: 0;
  }

.box-text-image-01__box-image {
    float: right;
    margin-bottom: 5px;
    margin-left: 20px;
  }

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

.box-text-image-01__box-image {
      float: none;
      margin: 0;
      -webkit-order: 2;
              order: 2
  }
    }

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

.box-text-image-01__image {
      width: 100%
  }
    }

.box-text-image-01__text {
    margin-bottom: 5px;
  }

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

.box-text-image-01__text {
      -webkit-order: 1;
              order: 1;
      width: 100%;
      margin-bottom: 10px
  }
    }

.box-textline-02 {
  background-color: #f5f4ee;
  background-color: var(--gray-05);
  padding: 15px;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 769px) {

.box-textline-02 {
    margin-bottom: 30px
}
  }

.box-textline-02__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #706b4a;
    color: var(--gold-01);
    padding-left: 25px;
    margin-bottom: 5px;
    position: relative;
  }

.box-textline-02__title::before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      background-size: 18px 18px;
      background-image: url('/images/ico_hand_01.svg');
      background-position: center center;
      background-repeat: no-repeat;
      top: 50%;
      left: 0;
      margin-top: -9px;
    }

@media print, screen and (min-width: 769px) {

.box-textline-02__title::before {
        width: 24px;
        height: 24px;
        background-size: 24px 24px;
        margin-top: -12px
    }
      }

@media print, screen and (min-width: 769px) {

.box-textline-02__title {
      font-size: 1.8rem;
      margin-bottom: 10px;
      padding-left: 32px
  }
    }

.box-textline-02__title--group {
      -webkit-align-items: flex-end;
              align-items: flex-end;
      -webkit-justify-content: space-between;
              justify-content: space-between;
      margin-bottom: 10px;
      display: -webkit-flex;
      display: flex;
    }

@media print, screen and (min-width: 769px) {

.box-textline-02__title--group {
        margin-bottom: 12px
    }
      }

.box-textline-02__title--group__main {
        font-size: 2rem;
        font-weight: 700;
        margin-right: 15px;
      }

@media print, screen and (min-width: 769px) {

.box-textline-02__title--group__main {
          font-size: 2.2rem
      }
        }

.box-textline-02__title--group__sub {
        font-size: 1.2rem;
      }

@media print, screen and (min-width: 769px) {

.box-textline-02__title--group__sub {
          font-size: 1.4rem
      }
        }

.box-textline-02__text {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }

@media print, screen and (min-width: 769px) {

.box-textline-02__text {
      font-size: 1.8rem;
      margin-bottom: 10px
  }
    }

.box-textline-02__badge {
    color: #fff;
    color: var(--white);
    background-color: #9a8379;
    background-color: var(--lightBrown);
    font-size: 1.4rem;
    padding: 3px 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    display: inline-block;
  }

@media print, screen and (min-width: 769px) {

.box-textline-02__badge {
      font-size: 1.6rem;
      margin-bottom: 10px
  }
    }

.box-textline-02__hint {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

.box-textline-02__hint:last-child {
      margin-bottom: 0;
    }

@media print, screen and (min-width: 769px) {

.box-textline-02__hint {
      font-size: 1.6rem;
      margin-bottom: 10px
  }
    }

.box-textline-02__table {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.box-textline-02__table {
      margin-bottom: 15px
  }
    }

.box-textline-02__table th {
      font-weight: 700;
      background-color: transparent;
      text-align: left;
      padding: 8px 10px;
    }

.box-textline-02__table td {
      padding: 8px 10px;
    }

.box-textline-02__table tr td {
      border-bottom: 1px solid #ddd;
      border-bottom: 1px solid var(--gray-03);
    }

.box-textline-02__table tr:last-child td {
      border-bottom: none;
    }

.box-textline-02__link {
    position: relative;
    display: inline-block;
    padding-left: 20px;
  }

.box-textline-02__link::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 8px;
      height: 16px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 8px 16px;
      -webkit-transform: translateY(-60%);
              transform: translateY(-60%);
      content: '';
    }

@media print, screen and (min-width: 769px) {

.box-textline-02__link::before {
        width: 10px;
        height: 18px;
        background-size: 10px 18px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%)
    }
      }

.box-title-01 {
  overflow: hidden;
  background: #f8f7f3;
  background: var(--mainBg);
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--lineGray-01);
}

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

.box-title-01 {
    border-bottom: none
}
  }

.box-title-01__inner {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 15px 30px 14px;
  }

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

.box-title-01__inner {
      display: block;
      width: auto;
      padding: 18px 15px
  }
    }

.box-title-01__title {
    -webkit-flex: 1;
            flex: 1;
  }

.box-title-01__button {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: -5px;
    margin-left: -5px;
  }

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

.box-title-01__button {
      margin: 5px -5px 0
  }
    }

.box-title-01__link {
    overflow: hidden;
    width: 160px;
    padding-right: 5px;
    padding-left: 5px;
  }

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

.box-title-01__link {
      width: 50%
  }
    }

.box-title-01 .button__link--print {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 11px 0 10px;
    font-weight: 400;
  }

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

.box-title-01 .button__link--print {
      padding: 12px 10px
  }
    }

.box-title-01 .button-white--print {
    padding: 11px 0 10px;
  }

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

.box-title-01 .button-white--print {
      padding: 12px 10px
  }
    }

.box-title-01--only-title .box-title-01__inner {
      padding: 23px 30px;
    }

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

.box-title-01--only-title .box-title-01__inner {
        padding: 18px 15px
    }
      }

.box-title-01--only-title .title-tag-01__title {
      line-height: 1.2;
    }

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

.box-title-01--only-title .title-tag-01__title {
        font-size: 1.6rem
    }
      }

.box-title-button-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ddd;
  border-bottom: 3px solid var(--gray-03);
}

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

.box-title-button-01 {
    display: block;
    padding-bottom: 0;
    margin-bottom: 15px;
    border-bottom: none
}
  }

.box-title-button-01__title {
    -webkit-flex: 1;
            flex: 1;
    padding-right: 20px;
  }

  .nav-global-sub .global-close{
  margin-top: 0;
}
.nav-global-sub .box-title-button-01__button {
  position: absolute;
  left:0;
  right:0;
  bottom: 16px;
  text-align: center;
}

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

.box-title-button-01__title {
      padding-right: 0
  }
    }

.box-title-button-01__button {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.box-title-button-01__button {
      display: none
  }
    }

.box-video-01 {
  overflow: hidden;
  width: 100%;
}

.box-video-01__video {
    width: 100%;
    height: 410px;
  }

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

.box-video-01__video {
      height: 195px
  }
    }

.box-visit-01 {
  overflow: hidden;
  margin-top: 23px;
  margin-bottom: 2px;
  padding: 16px 30px 30px;
  background: #f8f7f3;
  background: var(--mainBg);
}

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

.box-visit-01 {
    margin-top: 27px;
    margin-bottom: 3px;
    padding: 2px 20px 20px
}
  }

.box-visit-01__content {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    margin-top: 14px;
  }

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

.box-visit-01__content {
      display: block;
      margin-top: 16px
  }
    }

.box-visit-01__box-title {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 158px;
    -webkit-flex: 0 0 158px;
            flex: 0 0 158px;
    padding: 18px 20px 0 0;
  }

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

.box-visit-01__box-title {
      display: block;
      width: 100%;
      -webkit-flex: none;
              flex: none;
      margin-bottom: 11px;
      padding: 0
  }
    }

.box-visit-01__title {
    -webkit-flex: 1;
            flex: 1;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.box-visit-01__title {
      display: inline;
      -webkit-flex: none;
              flex: none;
      font-size: 1.6rem
  }
    }

.box-visit-01__form {
    overflow: hidden;
    -webkit-flex: 1;
            flex: 1;
  }

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

.box-visit-01__form {
      -webkit-flex: none;
              flex: none
  }
    }

.box-wrapper-01 {
  overflow: hidden;
  margin-bottom: 50px;
}

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

.box-wrapper-01 {
    margin-bottom: 40px
}
  }

.breadcrumb {
  overflow: hidden;
  background-color: #fff;
  background-color: var(--white);
}

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

.breadcrumb {
    background-color: #f3f1ea
}
  }

.breadcrumb__in {
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
    padding: var(--contentPadding);
  }

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

.breadcrumb__in {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px
  }
    }

.breadcrumb__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.2rem;
    color: #999;
    color: var(--gray-02);
  }

.breadcrumb__item {
    position: relative;
    padding-left: 16px;
    font-size: 1.2rem;
  }

.breadcrumb__item::before {
      top: 0;
      left: 4px;
      position: absolute;
      content: '\0003E';
    }

.breadcrumb__item:first-child {
      padding-left: 0;
    }

.breadcrumb__item:first-child::before {
        display: none;
      }

a.breadcrumb__link {
    color: #999;
    color: var(--gray-02);
  }

@media print, screen and (min-width: 769px) {

a.breadcrumb__link:hover {
        text-decoration: underline
    }
      }

.btn-more-01 {
  display: none;
}

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

.btn-more-01 {
    display: block;
    width: 114px;
    margin: 20px auto 0
}
  }

.button-contact {
  text-align: center;
}

.button-contact--btm-margin {
    margin-bottom: 20px;
  }

.button-contact--btm-margin:last-child {
      margin-bottom: 0;
    }

.button-contact__link {
    overflow: hidden;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    padding: 14px 10px;
    border-radius: 8px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

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

.button-contact__link {
      padding: 12px 10px;
      border-radius: 6px;
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.button-contact__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.button-contact__link::after {
      top: 50%;
      right: 14px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_01.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.button-contact__link::after {
        display: none
    }
      }

.button-contact__link--no-arrow::after {
      display: none;
    }

.button-contact__link--fs-large-01 {
      -webkit-justify-content: flex-start;
              justify-content: flex-start;
      padding: 13px 16px;
      font-size: 2rem;
      line-height: 1.25;
    }

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

.button-contact__link--fs-large-01 {
        -webkit-justify-content: center;
                justify-content: center;
        padding: 12px 10px;
        font-size: 1.6rem
    }
      }

.button-contact__link--fs-large-02 {
      -webkit-flex-direction: column;
              flex-direction: column;
      margin-bottom: 20px;
      padding: 12px 10px 13px;
      font-size: 2rem;
    }

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

.button-contact__link--fs-large-02 {
        padding: 12px 10px;
        font-size: 1.6rem
    }
      }

.button-contact__icon {
    position: relative;
    display: inline-block;
    padding-left: 32px;
  }

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

.button-contact__icon {
      padding-left: 28px
  }
    }

.button-contact__icon::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 25px;
      height: 30px;
      background: url('/images/ico_question_01.svg') no-repeat;
      background-size: 25px 30px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.button-contact__icon::before {
        width: 19px;
        height: 21px;
        background-size: 19px 21px
    }
      }

.button-contact__icon--icon-store {
    padding-left: 40px;
  }

.button-contact__icon--icon-store::before {
      width: 28px;
      height: 26px;
      background: url('/images/ico_store_02.svg') no-repeat;
      background-size: 28px 26px;
    }

.button-contact__small-text {
    font-size: 1.4rem;
  }

.button-favorite {
  display: inline-block;
  min-width: 250px;
  padding: 12px 20px;
  background-color: #fff;
  background-color: var(--white);
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  border-radius: 8px;
  box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
  font-size: 1.8rem;
  line-height: 1.2;
}

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

.button-favorite {
    width: 36px;
    height: 36px;
    min-width: 0;
    padding: 0;
    background: url('/images/ico_heart_02.svg') #fff center no-repeat;
    background-size: 18px 16px
}
  }

.button-favorite__icon {
    position: relative;
    padding-left: 30px;
  }

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

.button-favorite__icon {
      display: none
  }
    }

.button-favorite__icon::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 24px;
      height: 22px;
      background: url('/images/ico_heart_02.svg') no-repeat;
      background-size: 24px 22px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

@media print, screen and (min-width: 769px) {

.button-favorite--is-active .button-favorite__icon::before {
      background: url('/images/ico_heart_01.svg') no-repeat;
      background-size: 24px 22px
  }
    }

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

.button-favorite--is-active {
      background: url('/images/ico_heart_01.svg') #fff center no-repeat;
      background-size: 18px 16px
  }
    }

@media print, screen and (min-width: 769px) {

.button-favorite:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.button-inquiry {
  display: inline-block;
  min-width: 250px;
  padding: 12px 20px;
  background-color: #fff;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
  font-size: 1.8rem;
  color: #424242;
  color: var(--mainBlack);
  line-height: 1.2;
}

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

.button-inquiry {
    min-width: 0;
    padding: 12px 15px;
    font-size: 1.4rem
}
  }

@media print, screen and (min-width: 769px) {

.button-inquiry:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.button-inquiry__icon {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-style: normal;
  }

.button-inquiry__icon::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 23px;
      height: 26px;
      background: url('/images/ico_question_02.svg') no-repeat;
      background-size: 23px 26px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

.button-inquiry--is-active {
    border: none;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    color: #fff;
    color: var(--white);
    font-weight: 700;
  }

.button-inquiry--is-active .button-inquiry__icon::before {
    background: url('/images/ico_question_01.svg') no-repeat;
    background-size: 23px 26px;
  }

.button-light-blue {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 9px;
  background: #00b7e1;
  background: var(--lightBlue-01);
  border-radius: 8px;
  box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
  text-align: center;
  color: #fff;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.4;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
}

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

.button-light-blue {
    padding: 13px 0;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 700
}
  }

@media print, screen and (min-width: 769px) {

.button-light-blue:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.button-search-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 19px;
  padding-bottom: 20px;
  background: #ffa000;
  box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
  border: none;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}

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

.button-search-01 {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1.6rem
}
  }

.button-search-01__text {
    padding-left: 29px;
    background: url('/images/ico_search_01.svg') no-repeat left 2px;
    background-size: 21px 21px;
  }

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

.button-search-01__text {
      padding-left: 26px;
      background: url('/images/ico_search_01.svg') no-repeat left 4px;
      background-size: 15px 15px
  }
    }

@media print, screen and (min-width: 769px) {

.button-search-01:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.button-search-type {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -10px;
  margin-right: -10px;
  margin-left: -10px;
}

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

.button-search-type {
    margin: -10px -7px 20px
}
  }

.button-search-type__item {
    overflow: hidden;
    width: 33.333%;
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

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

.button-search-type__item {
      width: 50%;
      padding-right: 7px;
      padding-left: 7px
  }
    }

.button-side {
  margin-bottom: 20px;
}

.button-side:last-child {
    margin-bottom: 0;
  }

.button-side__link {
    overflow: hidden;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding: 10px 30px 10px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.3;
    text-decoration: none;
  }

.button-side__link::after {
      top: 50%;
      right: 14px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

@media print, screen and (min-width: 769px) {

.button-side__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.button-side__figure {
    -webkit-flex: 0 0 80px;
            flex: 0 0 80px;
  }

.button-side__figure-image {
      display: block;
      width: 100%;
    }

.button-side__text {
    padding-left: 18px;
  }

.button-view {
  display: -webkit-flex;
  display: flex;
}

.button-view__button {
    position: relative;
    display: block;
    -webkit-flex: 0 0 56px;
            flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-top: 1px solid #999;
    border-top: 1px solid var(--gray-02);
    border-left: 1px solid #999;
    border-left: 1px solid var(--gray-02);
    border-bottom: 1px solid #999;
    border-bottom: 1px solid var(--gray-02);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
  }

  .button-view__button img{
    position: absolute;
    top: 0;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
  }


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

.button-view__button {
      -webkit-flex: 0 0 48px;
              flex: 0 0 48px;
      width: 48px;
      height: 48px
  }
    }

.button-view__button:first-child {
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      background-image: url(/images/ico_switch_pic.svg);
      background-repeat: no-repeat;
      background-position: center 45%;
    }

.button-view__button--is-active:first-child {
      background-image: url(/images/ico_switch_pic_b.svg);
      background-repeat: no-repeat;
      background-position: center 45%;
  }


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

.button-view__button:first-child {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px
    }
      }

.button-view__button:last-child {
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      border-right: 1px solid #999;
      border-right: 1px solid var(--gray-02);
      background-image: url(/images/ico_switch_madori_b.svg);
      background-repeat: no-repeat;
      background-position: center 45%;
    }

.button-view__button--is-active:last-child {
      background-image: url(/images/ico_switch_madori.svg);
      background-repeat: no-repeat;
      background-position: center 45%;
    }

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

.button-view__button:last-child {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px
    }
      }

.button-view__button--is-active {
      border-color: #00b7e1;
      border-color: var(--lightBlue-01);
      background-color: #00b7e1;
      background-color: var(--lightBlue-01);
    }

@media print, screen and (min-width: 769px) {

.button-view__button:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.button-white {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px 0 14px;
  background: #fff;
  background: var(--white);
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  border-radius: 8px;
  box-shadow: inset 0 -3px 0 0 rgba(7, 0, 0, 0.15);
  text-align: center;
  color: #333;
  color: var(--black-01);
  font-size: 1.8rem;
  line-height: 1.4;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
}

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

.button-white {
    padding: 12px 10px;
    border-radius: 4px;
    font-size: 1.6rem
}
  }

@media print, screen and (min-width: 769px) {

.button-white:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.button-white--small-01 {
    display: inline-block;
    width: auto;
    height: auto;
    min-width: 96px;
    padding: 8px 20px;
    font-size: 1.4rem;
  }

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

.button-white--small-01 {
      min-width: auto;
      padding: 8px 10px;
      font-size: 1.3rem
  }
    }

.button-white--arrow-01 {
    position: relative;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    padding: 13px 30px 14px 20px;
    text-align: left;
    line-height: 1.61;
  }

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

.button-white--arrow-01 {
      padding: 12px 25px 12px 13px;
      line-height: 1.44
  }
    }

.button-white--arrow-01::after {
      content: '';
      top: 50%;
      right: 19px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.button-white--arrow-01::after {
        right: 15px;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.button {
  text-align: center;
}

.button__link {
    position: relative;
    display: inline-block;
    border: none;
    padding: 14px 30px;
    background: #ffa000;
    background: var(--mainOrange);
    border-radius: 8px;
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    color: var(--white);
    text-align: center;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
  }

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

.button__link {
      display: block;
      width: 100%;
      padding: 16px 20px;
      border-radius: 4px;
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.button__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.button__link--full {
      display: block;
      width: 100%;
      margin-right: auto;
      margin-left: auto;
    }

.card-comment {
  margin-bottom: 30px;
}

.card-comment:last-child {
    margin-bottom: 0;
  }

.card-comment__in {
    display: -webkit-flex;
    display: flex;
  }

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

.card-comment__in {
      display: block
  }
    }

.card-comment__profile {
    -webkit-flex: 0 0 40px;
            flex: 0 0 140px;
  }

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

.card-comment__profile {
      display: -webkit-flex;
      display: flex;
      -webkit-flex: 1;
              flex: 1;
      margin-bottom: 15px
  }
    }

.card-comment__detail {
    -webkit-flex: 1;
            flex: 1;
    padding-left: 30px;
  }

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

.card-comment__detail {
      padding-left: 0
  }
    }

.card-comment__image {
    width: 140px;
    height: 140px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.card-comment__image {
      -webkit-flex: 0 0 110px;
              flex: 0 0 110px;
      width: 110px;
      height: 110px
  }
    }

.card-comment__profile-name {
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 1.3;
  }

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

.card-comment__profile-name {
      -webkit-flex: 1;
              flex: 1;
      margin-top: 0;
      padding-left: 15px;
      font-size: 1.4rem
  }
    }

.card-list-01 {
  width: 100%;
  position: relative;
}

.card-list-01::before,
  .card-list-01::after {
    content: '';
    display: table;
  }

.card-list-01::after {
    clear: both;
  }

.card-list-01__link {
    display: -webkit-flex;
    display: flex;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__link {
      display: block
  }
    }

@media print, screen and (min-width: 769px) {
      .card-list-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.card-list-01__image {
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    background-position: center center;
    background-size: cover;
    -webkit-flex: 0 0 120px;
            flex: 0 0 120px;
    height: 90px;
    margin-right: 15px;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__image {
      width: 100%;
      height: 230px;
      display: block
  }
    }

.card-list-01__image--news {
      position: relative;
    }

.card-list-01__image--news::after {
        content: 'NEW';
        width: 38px;
        height: 16px;
        line-height: 16px;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        color: #fff;
        color: var(--white);
        background-color: #eb0f32;
        background-color: var(--red-01);
        position: absolute;
        top: 0;
        left: 0;
      }

@media print, screen and (min-width: 769px) {

.card-list-01__image--news::after {
          width: 42px;
          height: 19px;
          font-size: 1.2rem;
          line-height: 19px
      }
        }

.card-list-01__image--order {
      position: relative;
    }

.card-list-01__image--order::after {
        content: attr(data-order);
        width: 25px;
        height: 25px;
        line-height: 26px;
        border-radius: 12.5px;
        font-size: 1.4rem;
        font-weight: 300;
        text-align: center;
        color: #fff;
        color: var(--white);
        background-color: #1f2646;
        background-color: var(--darkBlue-01);
        position: absolute;
        top: -5px;
        left: -5px;
      }

@media print, screen and (min-width: 769px) {

.card-list-01__image--order::after {
          width: 32px;
          height: 32px;
          border-radius: 16px;
          font-size: 1.6rem;
          line-height: 33px;
          top: -10px;
          left: -10px
      }
        }

.card-list-01__post {
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__post {
      padding-top: 15px
  }
    }

.card-list-01__desc {
    font-size: 1.4rem;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__desc {
      font-size: 1.6rem
  }
    }

.card-list-01__info {
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__info {
      padding-top: 5px
  }

      .card-list-01__info::before,
      .card-list-01__info::after {
        content: '';
        display: table;
      }

      .card-list-01__info::after {
        clear: both;
      }
    }

.card-list-01__date {
    font-size: 1.2rem;
    color: #a9a9a9;
    color: var(--gray-04);
    margin-bottom: 5px;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__date {
      font-size: 1.6rem;
      line-height: 20px;
      margin-bottom: 0;
      float: left
  }
    }

.card-list-01__icon {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    color: var(--white);
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    padding: 1px 4px;
    display: inline-block;
  }

@media print, screen and (min-width: 769px) {

.card-list-01__icon {
      float: right
  }
    }

.card-list-02 {
  width: 100%;
  position: relative;
}

.card-list-02::before,
  .card-list-02::after {
    content: '';
    display: table;
  }

.card-list-02::after {
    clear: both;
  }

.card-list-02__link {
    display: -webkit-flex;
    display: flex;
  }

@media print, screen and (min-width: 769px) {
      .card-list-02__link:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.card-list-02__image {
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    background-position: center center;
    background-size: cover;
    -webkit-flex: 0 0 120px;
            flex: 0 0 120px;
    height: 90px;
    margin-right: 15px;
  }

@media print, screen and (min-width: 769px) {

.card-list-02__image {
      -webkit-flex: 0 0 140px;
              flex: 0 0 140px;
      height: 105px
  }
    }

.card-list-02__post {
    position: relative;
  }

.card-list-02__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    color: var(--black-01);
  }

.card-list-02__content {
    font-size: 1.4rem;
  }

@media print, screen and (min-width: 769px) {

.card-list-02__content {
      font-size: 1.6rem
  }
    }

.card-list-02--static .card-list-02__image {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 120px;
    height: auto;
    background: none;
  }

.card-list-02--static .card-list-02__image img {
      width: 100%;
    }

.card-list-02--static .card-list-02__post {
    padding-right: 20px;
  }

.card-list-02--static .card-list-02__link {
    position: relative;
  }

.card-list-02--static .card-list-02__link::after {
      content: '';
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.card-list-02--static .card-list-02__link::after {
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.card-list-03 {
  width: 100%;
  position: relative;
}

.card-list-03::before,
  .card-list-03::after {
    content: '';
    display: table;
  }

.card-list-03::after {
    clear: both;
  }

.card-list-03__link {
    display: -webkit-flex;
    display: flex;
  }

@media print, screen and (min-width: 769px) {
      .card-list-03__link:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.card-list-03__image {
/*     background-color: #1f2646;
    background-color: var(--darkBlue-01); */
    background-position: center center;
    background-size: cover;
    -webkit-flex: 0 0 120px;
            flex: 0 0 120px;
    height: 90px;
    margin-right: 15px;
  }

@media print, screen and (min-width: 769px) {

.card-list-03__image {
      -webkit-flex: 0 0 140px;
              flex: 0 0 140px;
      height: 105px
  }
    }

.card-list-03__post {
    position: relative;
  }

.card-list-03__content {
    font-size: 1.4rem;
  }

@media print, screen and (min-width: 769px) {

.card-list-03__content {
      font-size: 1.6rem
  }
    }

.card-list-03__info {
    padding: 5px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
  }

@media print, screen and (min-width: 769px) {
      .card-list-03__info::before,
      .card-list-03__info::after {
        content: '';
        display: table;
      }

      .card-list-03__info::after {
        clear: both;
      }
    }

.card-list-03__date {
    font-size: 1.2rem;
    color: #a9a9a9;
    color: var(--gray-04);
    margin-right: 6px;
  }

@media print, screen and (min-width: 769px) {

.card-list-03__date {
      font-size: 1.6rem;
      margin-bottom: 0
  }
    }

.card-list-03__icon {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    color: var(--white);
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    padding: 1px 4px;
  }

.card-list-03__tag {
    font-size: 1.1rem;
    border: 1px solid #1f2646;
    border: 1px solid var(--darkBlue-01);
    padding: 1px 4px;
    margin-bottom: 5px;
    text-align: center;
    color: #1f2646;
    color: var(--darkBlue-01);
    display: inline-block;
  }

.card-list-03__tag:not(:last-child) {
      margin-right: 5px;
    }

@media print, screen and (min-width: 769px) {

.card-list-03__tag {
      font-size: 1.1rem;
      padding: 0 5px;
      display: inline-block
  }

      .card-list-03__tag:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.card-list-container-01 {
  margin: -15px 0 0;
}

.card-list-container-01::before,
  .card-list-container-01::after {
    content: '';
    display: table;
  }

.card-list-container-01::after {
    clear: both;
  }

@media print, screen and (min-width: 769px) {

.card-list-container-01 {
    margin: 0 -15px
}
  }

.card-list-container-01__item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4;
    border-bottom: 1px solid var(--lineGray-02);
    display: block;
  }

@media print, screen and (min-width: 769px) {

.card-list-container-01__item {
      width: 33.33%;
      padding: 0 15px;
      border: none;
      float: left
  }
    }

.card-list-container-02::before,
  .card-list-container-02::after {
    content: '';
    display: table;
  }

.card-list-container-02::after {
    clear: both;
  }

.card-list-container-02:not(:first-child) {
    margin: 0;
  }

@media print, screen and (min-width: 769px) {

.card-list-container-02 {
    margin: 0 -15px !important
}

    .card-list-container-02:not(:last-child) {
      margin-bottom: 20px !important;
    }
  }

.card-list-container-02__item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4;
    border-bottom: 1px solid var(--lineGray-02);
    display: block;
  }

@media print, screen and (min-width: 769px) {

.card-list-container-02__item {
      width: 50%;
      padding: 0 15px;
      border: none;
      float: left
  }

      .card-list-container-02__item:last-child {
        margin-bottom: 0;
      }
    }

.card-props-01 {
  height: 100%;
  font-size: 1.6rem;
}

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

.card-props-01 {
    font-size: 1.4rem
}
  }

.card-props-01__in {
    display: block;
    height: 100%;
  }

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

.card-props-01__in {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: flex-start;
              align-items: flex-start;
      height: auto;
      padding-top: 15px;
      padding-bottom: 15px
  }
    }

a.card-props-01__in {
    text-decoration: none;
  }

@media print, screen and (min-width: 769px) {

a.card-props-01__in:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.card-props-01__image {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.card-props-01__image {
      width: 120px;
      height: 90px;
      -webkit-flex: 0 0 120px;
              flex: 0 0 120px;
      margin-bottom: 0
  }
    }

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

.card-props-01__detail {
      -webkit-flex: 1;
              flex: 1;
      padding-left: 15px
  }
    }

.card-props-01__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
    font-weight: 700;
  }

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

.card-props-01__title {
      margin-bottom: 0;
      font-size: 1.4rem
  }
    }

.card-props-01__title-sub {
    margin-bottom: 5px;
    color: #999;
    color: var(--gray-02);
  }

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

.card-props-01__info-item {
      display: -webkit-flex;
      display: flex;
      margin-bottom: 4px;
      -webkit-align-items: center;
              align-items: center;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      width: 100%
  }

      .card-props-01__info-item:last-child {
        margin-bottom: 0;
      }
    }

.card-props-01__info-title {
    display: inline;
  }

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

.card-props-01__info-title {
      display: block;
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      margin-right: 10px;
      padding: 4px 5px;
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
      font-size: 1.1rem;
      color: #fff;
      color: var(--white);
      font-weight: 700;
      text-align: center;
      line-height: 1.1
  }
    }

.card-props-01__info-data {
    display: inline;
  }

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

.card-props-01__info-data {
      display: block;
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      max-width: 100%
  }
    }

.card-props-02 {
  height: 100%;
  font-size: 1.6rem;
}

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

.card-props-02 {
    font-size: 1.4rem
}
  }

.card-props-02__in {
    display: block;
    height: 100%;
  }

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

.card-props-02__in {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: flex-start;
              align-items: flex-start;
      height: auto;
      padding-top: 15px;
      padding-bottom: 15px
  }
    }

a.card-props-02__in {
    text-decoration: none;
  }

@media print, screen and (min-width: 769px) {

a.card-props-02__in:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.card-props-02__rank {
    top: -10px;
    left: -10px;
    position: absolute;
    z-index: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    font-size: 1.6rem;
    color: #fff;
    color: var(--white);
    text-align: center;
  }

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

.card-props-02__rank {
      top: -5px;
      left: -5px;
      width: 25px;
      height: 25px
  }
    }

.card-props-02__image {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.card-props-02__image {
      width: 120px;
      height: 90px;
      -webkit-flex: 0 0 120px;
              flex: 0 0 120px;
      margin-bottom: 0
  }
    }

.card-props-02__detail {
    color: #333;
    color: var(--black-01);
  }

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

.card-props-02__detail {
      -webkit-flex: 1;
              flex: 1;
      padding-left: 15px
  }
    }

.card-props-02__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.card-props-02__title {
      margin-bottom: 0;
      font-size: 1.4rem
  }
    }

.card-props-02__price {
    margin-bottom: 5px;
    color: #eb0f32;
    color: var(--red-01);
  }

.card-props-02__price-number {
    font-weight: 700;
  }

.card-props-02__info {
    font-size: 1.6rem;
  }

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

.card-props-02__info {
      font-size: 1.4rem
  }
    }

.card-props-02__info-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

.card-props-02__info-title {
    display: block;
    -webkit-flex: 0 0 65px;
            flex: 0 0 65px;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #666;
    color: var(--gray-06);
  }

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

.card-props-02__info-title {
      -webkit-flex: 0 0 55px;
              flex: 0 0 55px;
      font-size: 1.2rem
  }
    }

.card-props-02__info-value {
    display: block;
    -webkit-flex: 1;
            flex: 1;
  }

.card-props-detail {
  overflow: hidden;
  position: relative;
  background-color: #fff;
  background-color: var(--white);
}

.card-props-detail__in {
    padding: 20px 25px 25px;
    border: 6px solid transparent;
    transition: border-color 0.2s ease;
  }

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

.card-props-detail__in {
      padding: 25px 15px 30px;
      border: none
  }
    }

@media print, screen and (min-width: 769px) {

.card-props-detail__in:hover {
        border-color: #00b7e1;
        border-color: var(--lightBlue-01)
    }
      }

.card-props-detail--no-hover .card-props-detail__in:hover {
    border-color: transparent;
  }

.card-props-detail__link {
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
  }

.card-props-detail__label {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
    -webkit-flex: 0 auto;
            flex: 0 auto;
    cursor: pointer;
  }

.card-props-detail__checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.card-props-detail__title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    max-width: 420px;
    margin-bottom: 25px;
  }

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

.card-props-detail__title {
      max-width: none;
      margin-bottom: 15px;
      padding-right: 50px
  }
    }

.card-props-detail__title--is-new::after {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: 5px;
    padding: 4px 6px;
    background-color: #eb0f32;
    background-color: var(--red-01);
    font-size: 1.2rem;
    color: #fff;
    color: var(--white);
    line-height: 1;
    content: 'NEW';
  }

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

.card-props-detail__title--is-new::after {
      padding: 3px 5px;
      font-size: 1rem
  }
    }

.card-props-detail__title--shinchiku {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

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

.card-props-detail__title--shinchiku {
      font-size: 1.8rem
  }
    }

.card-props-detail__shinchiku-title {
    margin-bottom: 20px;
  }

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

.card-props-detail__shinchiku-title {
      margin-bottom: 10px
  }
    }

.card-props-detail__shinchiku-title-in {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex: 1;
            flex: 1;
  }

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

.card-props-detail__shinchiku-title .title-tag-01__tag {
      display: inline-block;
      margin-right: 0;
      margin-bottom: 10px;
      font-size: 1.2rem
  }
    }

.card-props-detail__label-text {
    overflow: hidden;
    position: relative;
    display: block;
    max-width: 100%;
    padding-top: 2px;
    padding-left: 30px;
    font-size: 2.6rem;
    color: #333;
    color: var(--black-01);
    font-weight: 700;
    line-height: 1.2;
    height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

.card-props-detail__labelnone-text {
    display: block;
    max-width: 100%;
    padding-top: 2px;
    padding-left: 0;
    font-size: 2.6rem;
    color: #333;
    color: var(--black-01);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

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

.card-props-detail__label-text {
      padding-left: 24px;
      font-size: 1.8rem
  }
.card-props-detail__labelnone-text {
      padding-left: 0;
      font-size: 1.8rem
  }
}

.card-props-detail__label-text::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 20px;
      height: 20px;
      background: url('/images/icon_checkbox_01_no.svg') no-repeat;
      background-size: 20px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.card-props-detail__label-text::before {
        width: 15px;
        height: 15px;
        background-size: 15px
    }
      }

.card-props-detail__checkbox:checked + .card-props-detail__label-text::before {
    background: url('/images/icon_checkbox_01_on.svg') no-repeat;
    background-size: 20px;
  }

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

.card-props-detail__checkbox:checked + .card-props-detail__label-text::before {
      background-size: 15px
  }
    }

.card-props-detail__detail {
    overflow: hidden;
  }

.card-props-detail__image {
    float: left;
    display: block;
    width: 300px;
    height: 180px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.card-props-detail__image {
      width: 120px;
      height: 90px
  }
    }

.card-props-detail__tag-container {
    padding-top: 12px;
    padding-left: 330px;
  }

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

.card-props-detail__tag-container {
      clear: both;
      width: 100%;
      padding-left: 0
  }
    }

.card-props-detail__tag-list {
    display: -webkit-flex;
    display: flex;
  }

.card-props-detail__tag-item {
    padding-left: 10px;
  }

.card-props-detail__tag-item:first-child {
      padding-left: 0;
    }

.card-props-detail__btn-favorite {
    top: 15px;
    right: 30px;
    position: absolute;
    z-index: 1;
  }

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

.card-props-detail__btn-favorite {
      top: 15px;
      right: 15px
  }
    }

.card-props-detail__info-wrapper {
    padding-left: 330px;
    font-size: 1.8rem;
  }

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

.card-props-detail__info-wrapper {
      overflow: hidden;
      padding-left: 12px;
      font-size: 1.4rem
  }
    }

.card-props-detail__info-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

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

.card-props-detail__info-list {
      display: block
  }
    }

.card-props-detail__info-item {
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }

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

.card-props-detail__info-item {
      display: block
  }
    }

.card-props-detail__info-column {
    display: -webkit-flex;
    display: flex;
    width: 50%;
  }

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

.card-props-detail__info-column {
      display: inline-block;
      width: auto
  }

      .card-props-detail__info-column:last-child::before {
        display: inline-block;
        padding: 0 4px;
        content: '/';
      }
    }

.card-props-detail__info-title {
    -webkit-flex: 0 0 95px;
            flex: 0 0 120px;
    font-weight: 700;
    white-space: nowrap;
  }

.card-props-detail__info-title--price {
      padding-top: 5px;
    }

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

.card-props-detail__info-title {
      display: none
  }
    }

.card-props-detail__info-data {
    -webkit-flex: 1;
            flex: 1;
  }

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

.card-props-detail__info-data {
      display: inline-block
  }
    }

.card-props-detail__btn-link-wrap {
    text-align: right;
  }

.card-props-detail__btn-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: left;
  }

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

.card-props-detail__btn-link {
      padding: 8px 15px;
      font-size: 1.3rem
  }
    }

.card-props-detail__btn-link-icon {
    position: relative;
    padding-left: 30px;
  }

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

.card-props-detail__btn-link-icon {
      padding-left: 24px
  }
    }

.card-props-detail__btn-link-icon::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 24px;
      height: 22px;
      background: url('/images/ico_heart_02.svg') no-repeat;
      background-size: 24px 22px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.card-props-detail__btn-link-icon::before {
        width: 18px;
        height: 16px;
        background-size: 18px 16px
    }
      }

@media print, screen and (min-width: 769px) {

.card-props-detail__btn-link-icon:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

@media (max-width: 768px) {

main.contents.rent .card-props-detail__info-data.iocn_shiki {
      position: relative;
      padding-left: 18px
  }
main.contents.rent .card-props-detail__info-data.iocn_kanri {
      position: relative;
      padding-left: 18px
  }

}

@media (max-width: 768px) {

main.contents.rent .card-props-detail__info-data.iocn_shiki::before {
      content: '謨ｷ';
      display: inline-block;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 0;
      top: 2px;
      background: #999;
      color: #fff;
      font-size: 12px;
      text-align: center;
      line-height: 16px
  }
  main.contents.rent .card-props-detail__info-data.iocn_kanri::before {
      content: '闖�';
      display: inline-block;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 0;
      top: -13px;
      background: #999;
      color: #fff;
      font-size: 12px;
      text-align: center;
      line-height: 16px
  }

    }

@media (max-width: 768px) {

main.contents.rent .card-props-detail__info-data.iocn_rei {
      position: relative;
      padding-left: 18px
  }
  
main.contents.rent .card-props-detail__info-data.iocn_shikibiki {
      position: relative;
      padding-left: 36px
  }
    }

@media (max-width: 768px) {

main.contents.rent .card-props-detail__info-data.iocn_rei::before {
      content: '礼';
      display: inline-block;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 0;
      top: 2px;
      background: #999;
      color: #fff;
      font-size: 12px;
      text-align: center;
      line-height: 16px
  }
  
main.contents.rent .card-props-detail__info-data.iocn_rei::before {
      content: '敷引';
      display: inline-block;
      width: 32px;
      height: 16px;
      position: absolute;
      left: 0;
      top: 2px;
      background: #999;
      color: #fff;
      font-size: 12px;
      text-align: center;
      line-height: 16px
  }
    }

.card-reward {
  padding: 20px 25px;
  border: 3px solid #ffa000;
  border: 3px solid var(--mainOrange);
}

.card-reward__header {
    font-weight: 700;
    display: block;
  }

.card-reward__content {
    font-size: 3rem;
    color: #ffa000;
    color: var(--mainOrange);
    font-weight: 700;
    display: block;
  }

.card-reward__content--hint {
      font-size: 2.2rem;
      color: #333;
      color: var(--black-01);
    }

.card-reward__footer {
    text-align: right;
    display: block;
  }

.box-card-reward .grid__col:not(:last-child) {
    margin-bottom: 15px;
  }

@media print, screen and (min-width: 769px) {

.box-card-reward .grid__col:not(:last-child) {
      margin-bottom: 0
  }
    }

.checkbox-condition-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  height: 100%;
  padding: 16px 10px 15px 19px;
  background: #fff;
  background: var(--white);
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  border-radius: 8px;
  cursor: pointer;
}

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

.checkbox-condition-01 {
    padding: 13px 10px;
    border-radius: 4px
}
  }

.checkbox-condition-01__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.checkbox-condition-01__text {
    display: inline-block;
    padding-left: 27px;
    background: url('/images/icon_checkbox_01_no.svg') no-repeat left center;
    background-size: 20px 20px;
    vertical-align: top;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.33;
  }

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

.checkbox-condition-01__text {
      padding-left: 24px;
      background: url('/images/icon_checkbox_01_no.svg') no-repeat left center;
      background-size: 15px 15px;
      font-size: 1.6rem;
      line-height: 1.31
  }
    }

.checkbox-condition-01__input:checked + .checkbox-condition-01__text {
    background: url('/images/icon_checkbox_01_on.svg') no-repeat left center;
    background-size: 20px 20px;
  }

.select-none .checkbox-condition-01__input:checked + .checkbox-condition-01__text {
    background: none;
  }

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

.checkbox-condition-01__input:checked + .checkbox-condition-01__text {
      background: url('/images/icon_checkbox_01_on.svg') no-repeat left center;
      background-size: 15px 15px
  }
  .select-none .checkbox-condition-01__input:checked + .checkbox-condition-01__text {
      background: none;
  }
    }

.contact-box-nav {
  margin-bottom: 20px;
  padding: 20px 10px;
  border-radius: 8px;
  background-color: #fff;
  background-color: var(--white);
  border: 3px solid #ffa000;
  border: 3px solid var(--mainOrange);
  text-align: center;
}

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

.contact-box-nav {
    padding: 0;
    border: none;
    background: none
}
  }

.contact-box-nav:last-child {
    margin-bottom: 0;
  }

.contact-box-nav__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    color: #ffa000;
    color: var(--mainOrange);
    letter-spacing: -0.5px;
  }

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

.contact-box-nav__title {
      display: none
  }
    }

.contact-box-nav__tel {
    display: block;
    margin-bottom: 5px;
    font-size: 3rem;
    color: #ffa000;
    color: var(--mainOrange);
    font-weight: 700;
  }

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

.contact-box-nav__tel {
      padding: 12px 15px;
      border-radius: 6px;
      background-color: #ffa000;
      background-color: var(--mainOrange);
      box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
      font-size: 1.6rem;
      color: #fff;
      color: var(--white)
  }
    }

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

.contact-box-nav__icon {
      position: relative;
      display: inline-block;
      padding-left: 28px
  }
    }

.contact-box-nav__icon::before {
      display: none;
    }

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

.contact-box-nav__icon::before {
        top: 50%;
        left: 0;
        position: absolute;
        display: block;
        width: 20px;
        height: 20px;
        background: url('/images/ico_phone_02.svg') no-repeat;
        background-size: 20px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: ''
    }
      }

.contact-box-nav__tel-text {
    display: none;
  }

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

.contact-box-nav__tel-text {
      display: inline;
      font-size: 1.1rem;
      font-weight: 400
  }
    }

.contact-box-nav__time {
    font-size: 1.4rem;
    color: #797979;
    color: var(--gray-01);
    letter-spacing: -0.5px;
  }

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

.contact-box-nav__time {
      font-size: 1.2rem;
      color: #666;
      color: var(--gray-06);
      letter-spacing: normal
  }
    }

.contact-main {
  overflow: hidden;
  background-color: #fff;
  background-color: var(--white);
}

.contact-main__section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
    background-color: #fff;
    background-color: var(--white);
    font-size: 1.8rem;
  }

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

.contact-main__section {
      padding: 20px 15px;
      margin-bottom: 0;
      font-size: 1.4rem
  }

      .contact-main__section:nth-child(even) {
        background-color: #f5f4ee;
        background-color: var(--gray-05);
      }
    }

.contact-main__column {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 35px;
  }

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

.contact-main__column {
      display: block
  }
    }

.contact-main__column:last-child {
      margin-bottom: 0;
    }

.contact-main__column-info {
    -webkit-flex: 1;
            flex: 1;
  }

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

.contact-main__column-info {
      margin-bottom: 12px
  }
    }

.contact-main__column-label {
    -webkit-flex: 0 0 240px;
            flex: 0 0 240px;
    font-size: 1.6rem;
  }

.contact-main__title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.contact-main__title {
      margin-bottom: 5px;
      font-size: 1.6rem
  }
    }

.contact-main__label-text {
    margin-bottom: 4px;
  }

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

.contact-main__label-text {
      margin-bottom: 8px
  }
    }

.contact-main__label-tel {
    display: block;
    margin-bottom: 20px;
    padding: 4px 10px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    font-size: 2.6rem;
    color: #fff;
    color: var(--white);
    font-weight: 700;
    text-align: center;
  }

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

.contact-main__label-tel {
      width: 200px;
      margin: 0 auto 15px;
      padding: 15px 5px;
      border-radius: 6px;
      box-shadow: inset 0 -4px rgba(8, 0, 0, 0.15);
      font-size: 1.6rem;
      line-height: 1
  }
    }

.contact-main__label-tel:last-child {
      margin-bottom: 0;
    }

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

.contact-main__icon-tel {
      position: relative;
      display: inline-block;
      padding-left: 30px
  }

      .contact-main__icon-tel::before {
        top: 50%;
        left: 0;
        position: absolute;
        width: 20px;
        height: 20px;
        background: url('/images/ico_phone_02.svg') left center no-repeat;
        background-size: 20px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }
    }

.contact-main__label-wechat {
    display: block;
    padding: 10px 10px 15px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    pointer-events:none;
  }

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

.contact-main__label-wechat {
      width: 150px;
      margin-right: auto;
      margin-left: auto;
      padding: 12px 0;
      border-radius: 6px;
      box-shadow: inset 0 -4px rgba(8, 0, 0, 0.15);
      pointer-events: auto !important;
  }
    }

.contact-main__wechat-icon {
    display: block;
    width: 139px;
    margin-right: auto;
    margin-bottom: 5px;
    margin-left: auto;
  }

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

.contact-main__wechat-icon {
      width: 111px;
      margin: 0 auto
  }
    }

.contact-main__wechat-qrcode {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

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

.contact-main__wechat-qrcode {
      display: none
  }
    }

.contact-main__list-item {
    position: relative;
    margin-bottom: 4px;
    padding-left: 15px;
  }

.contact-main__list-item:last-child {
      margin-bottom: 0;
    }

.contact-main__list-item::before {
      top: 0;
      left: 0;
      position: absolute;
      content: '繝ｻ';
    }

.contact-main__text-link {
    position: relative;
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.contact-main__text-link {
      margin: 10px 0;
      padding: 10px 25px 10px 15px;
      font-size: 1.6rem
  }
    }

.contact-main__text-link::after {
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.contact-main__text-link::after {
        right: 15px
    }
      }

@media print, screen and (min-width: 769px) {

.contact-main__text-link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.content-news-01 {
  overflow: hidden;
}

.content-news-01__box-news {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

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

.content-news-01__box-news {
      display: block
  }
    }

.content-news-01__box-news--col-02 {
      -webkit-flex-direction: row;
              flex-direction: row;
      margin: 0 -15px;
    }

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

.content-news-01__box-news--col-02 {
        -webkit-flex-direction: column;
                flex-direction: column;
        margin: 0
    }
      }

.content-news-01__inner {
    width: 50%;
    margin-top: 50px;
    padding: 0 15px;
  }

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

.content-news-01__inner {
      width: 100%;
      margin-top: 0;
      padding: 0
  }
    }

.contents-full {
  background: #fff;
  background: var(--white);
}

.contents-full__container {
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 17px 30px 100px;
  }

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

.contents-full__container {
      width: auto;
      padding: 20px 15px
  }
    }

.contents-full--form .contents-full__container {
    padding: 54px 30px 100px;
  }

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

.contents-full--form .contents-full__container {
      padding: 20px 15px 60px
  }
    }

.contents {
  background-color: #f8f7f3;
  background-color: var(--mainBg);
}

.contents__container {
    display: -webkit-flex;
    display: flex;
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 30px 30px 100px;
  }

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

.contents__container {
      display: block;
      width: auto;
      padding: 20px 0 0
  }
    }

.contents--top .contents__container {
    padding-top: 60px;
  }

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

.contents--top .contents__container {
      padding-top: 0
  }
    }

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

.contents--no-padding-sp .contents__container {
      padding-top: 0
  }
    }

.contents__main {
    -webkit-flex: 1;
            flex: 1;
    max-width: 790px;
  }

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

.contents__main {
      max-width: none;
      padding-bottom: 40px
  }
    }

.contents__sub {
    -webkit-flex: 0 0 280px;
            flex: 0 0 280px;
    min-width: 0;
    margin-left: 30px;
  }

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

.contents__sub {
      margin: 0
  }
    }

.contents__full {
    width: 100%;
  }

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

.contents__full {
      padding-bottom: 40px
  }
    }

.data-list-01 {
  overflow: hidden;
}

.data-list-01__title {
    float: left;
  }

.data-list-01__data {
    overflow: hidden;
  }

.divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  background-color: var(--gray-03);
  margin-bottom: 15px;
  display: block;
}

.float-contact {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 1160px;
  width: var(--contentWidth);
  margin-right: auto;
  margin-left: auto;
  padding: 15px 30px;
}

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

.float-contact {
    width: 100%;
    padding: 12px 15px
}
  }

.float-contact__item {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

.float-contact__item:first-child {
      display: -webkit-flex;
      display: flex;
      -webkit-flex: 1;
              flex: 1;
    }

.float-contact__button-contact {
    min-width: 185px;
  }

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

.float-contact__button-contact {
      min-width: 0;
      padding: 15px
  }
    }

.float-contact__button-tel {
    display: none;
  }

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

.float-contact__button-tel {
      display: block;
      min-width: 0;
      padding: 15px;
      margin-left: 10px
  }
    }

.float-contact__button-tel .button-inquiry__icon::before {
      width: 20px;
      height: 20px;
      background: url('/images/ico_phone_02.svg') no-repeat;
      background-size: contain;
    }

.float-contact .button-favorite {
    display: block;
  }

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

.float-contact .button-favorite {
      width: 46px;
      height: 46px
  }
    }

.float-contact__box-info {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    margin-left: 15px;
    padding: 0 18px;
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    border: 3px solid #ffa000;
    border: 3px solid var(--mainOrange);
  }

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

.float-contact__box-info {
      display: none
  }
    }

.float-contact__info-tel {
    color: #ffa000;
    color: var(--mainOrange);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
  }

.float-contact__info-text {
    margin-left: 8px;
    color: #797979;
    color: var(--gray-01);
    font-size: 1.3rem;
    line-height: 1.3;
  }

.float-contact__info-title {
    color: #ffa000;
    color: var(--mainOrange);
  }

.float-contact__tool-tip {
    display: none;
  }

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

.float-contact__tool-tip {
      display: block;
      right: 15px;
      bottom: 100%;
      position: absolute;
      z-index: 1;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e4e4e4;
      background-color: #d9f4fb
  }

      .float-contact__tool-tip::after,
      .float-contact__tool-tip::before {
        position: absolute;
        top: 100%;
        right: 13px;
        border: solid transparent;
        width: 0;
        height: 0;
        pointer-events: none;
        content: '';
      }

      .float-contact__tool-tip::after {
        right: 14px;
        margin-left: -9px;
        border-color: rgba(217, 244, 251, 0);
        border-top-color: #d9f4fb;
        border-width: 9px;
      }

      .float-contact__tool-tip::before {
        margin-left: -10px;
        border-color: rgba(228, 228, 228, 0);
        border-top-color: #e4e4e4;
        border-width: 10px;
      }
    }

@media only screen and (max-width: 768px) {
.float-contact__tool-tip-list {
      display: block;
      right: 15px;
      bottom: 100%;
      position: absolute;
      z-index: 1;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e4e4e4;
      background-color: #d9f4fb
  }
}

@media only screen and (min-width: 768px) {
.float-contact__tool-tip-list {
      display: block;
      left: 15px;
      bottom: 100%;
      position: absolute;
      z-index: 1;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e4e4e4;
      background-color: #d9f4fb
  }
}
      .float-contact__tool-tip-list::after,
      .float-contact__tool-tip-list::before {
        position: absolute;
        top: 100%;
        right: 13px;
        border: solid transparent;
        width: 0;
        height: 0;
        pointer-events: none;
        content: '';
      }

      .float-contact__tool-tip-list::after {
        right: 14px;
        margin-left: -9px;
        border-color: rgba(217, 244, 251, 0);
        border-top-color: #d9f4fb;
        border-width: 9px;
      }

      .float-contact__tool-tip-list::before {
        margin-left: -10px;
        border-color: rgba(228, 228, 228, 0);
        border-top-color: #e4e4e4;
        border-width: 10px;
      }

.float-result-inquiry {
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 5;
  width: 100%;
  min-width: 1160px;
  min-width: var(--contentWidth);
  background-color: #f1f0e8;
}

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

.float-result-inquiry {
    min-width: 0
}
  }

.float-result-inquiry__in {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 15px 30px;
  }

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

.float-result-inquiry__in {
      position: relative;
      -webkit-flex-direction: row-reverse;
              flex-direction: row-reverse;
      width: auto;
      padding: 12px 15px
  }
    }

.float-result-inquiry__view {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

.float-result-inquiry__contact {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.float-result-inquiry__contact {
      -webkit-flex: 1;
              flex: 1;
      padding-right: 10px
  }
    }

.float-result-inquiry__text {
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
  }

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

.float-result-inquiry__text {
      display: none
  }
    }

.float-result-inquiry__button-item {
    margin-left: 14px;
  }

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

.float-result-inquiry__button-item {
      -webkit-flex: 1;
              flex: 1;
      margin-left: 0
  }
    }

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

.float-result-inquiry__button-contact {
      display: block;
      max-width: 230px;
      border-color: #d6d6d6;
      box-shadow: none;
      font-weight: 400
  }

      .float-result-inquiry__button-contact .button-inquiry__icon {
        padding-left: 0;
      }

      .float-result-inquiry__button-contact .button-inquiry__icon::before {
        display: none;
      }
    }

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

.float-result-inquiry__btn-text {
      display: inline-block;
      line-height: 1.3
  }

      .float-result-inquiry__btn-text::before {
        position: relative;
        top: 2px;
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-right: 5px;
        background: url('/images/icon_checkbox_01_no.svg') no-repeat;
        background-size: 15px;
        content: '';
      }
    }

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

.float-result-inquiry__btn-text-active {
      display: none
  }
    }

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

.button-inquiry--is-active .float-result-inquiry__btn-text {
      display: none
  }
    }

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

.button-inquiry--is-active .float-result-inquiry__btn-text-active {
      display: block
  }
    }

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

.float-result-inquiry .button-inquiry--is-active .button-inquiry__icon {
      padding-left: 30px
  }

      .float-result-inquiry .button-inquiry--is-active .button-inquiry__icon::before {
        display: block;
      }
    }

.float-result-inquiry__tool-tip {
    display: none;
  }

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

.float-result-inquiry__tool-tip {
      display: block;
      right: 10px;
      bottom: calc(100% - 6px);
      position: absolute;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e4e4e4;
      background-color: #d9f4fb
  }

      .float-result-inquiry__tool-tip::after,
      .float-result-inquiry__tool-tip::before {
        position: absolute;
        top: 100%;
        right: 40px;
        border: solid transparent;
        width: 0;
        height: 0;
        pointer-events: none;
        content: '';
      }

      .float-result-inquiry__tool-tip::after {
        right: 41px;
        margin-left: -9px;
        border-color: rgba(217, 244, 251, 0);
        border-top-color: #d9f4fb;
        border-width: 9px;
      }

      .float-result-inquiry__tool-tip::before {
        margin-left: -10px;
        border-color: rgba(228, 228, 228, 0);
        border-top-color: #e4e4e4;
        border-width: 10px;
      }
    }

.float-search-terms {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 5;
  width: 100%;
  min-width: 1160px;
  min-width: var(--contentWidth);
  background-color: #fff;
  background-color: var(--white);
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid var(--gray-03);
  -webkit-transform: translateY(-100%) translateZ(0);
          transform: translateY(-100%) translateZ(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

.float-search-terms {
    min-width: 0
}
  }

.float-search-terms--is-visible {
    -webkit-transform: translateY(0) translateZ(0);
            transform: translateY(0) translateZ(0);
  }

.float-search-terms__in {
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding-right: 60px;
    padding-bottom: 20px;
    padding-left: 60px;
  }

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

.float-search-terms__in {
      display: -webkit-flex;
      display: flex;
      width: auto;
      padding: 0
  }
    }

.float-search-terms__btn-menu {
    display: none;
  }

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

.float-search-terms__btn-menu {
      display: block;
      -webkit-flex: 0 0 60px;
              flex: 0 0 60px
  }
    }

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

.float-search-terms__list {
      display: -webkit-flex;
      display: flex;
      -webkit-flex: 1;
              flex: 1;
      margin: 0;
      padding-top: 15px;
      padding-right: 10px;
      padding-left: 10px
  }

      .float-search-terms__list .box-search-terms__title,
      .float-search-terms__list .box-search-terms__value {
        display: none;
      }

      .float-search-terms__list .box-search-terms__list-item {
        display: block;
        width: 50%;
        margin: 0;
        padding: 0 5px;
        border: none;
      }
    }

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

.float-search-terms__btn-edit {
      -webkit-flex: 1;
              flex: 1;
      margin: 0
  }
    }

.footer-small {
  overflow: hidden;
  min-width: 1160px;
  min-width: var(--contentWidth);
  padding: 15px 20px 66px 15px;
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--lineGray-01);
}

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

.footer-small {
    min-width: 0;
    padding: 15px
}
  }

.footer-small__in {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    background-color: #fff;
    background-color: var(--white);
  }

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

.footer-small__in {
      display: block
  }
    }

.footer-small__image {
    display: block;
    width: 246px;
  }

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

.footer-small__image {
      width: 200px;
      margin-bottom: 15px
  }
    }

.footer-small__copyright {
    padding-top: 3px;
    font-size: 1rem;
    line-height: 1.3;
    color: #a9a9a9;
    color: var(--gray-04);
    letter-spacing: 0.5px;
  }

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

.footer-small__copyright {
      padding-top: 0
  }
    }

.footer {
  min-width: 1160px;
  min-width: var(--contentWidth);
  background-color: #1f2646;
  background-color: var(--darkBlue-01);
}

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

.footer {
    min-width: 0
}
  }

.footer__in {
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 20px 30px;
    color: #fff;
    color: var(--white);
  }

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

.footer__in {
      width: auto;
      padding: 0
  }
    }

.footer__link-title {
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #404662;
    border-bottom: 1px solid var(--darkBlue-03);
    font-size: 1.4rem;
    font-weight: 700;
  }

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

.footer__link-title {
      position: relative;
      margin: 0;
      padding: 14px 30px 14px 15px;
      border: none
  }
    }

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

.footer__link-title--icon-plus::after {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 12px;
        height: 12px;
        background: url('/images/ico_plus_02.svg') no-repeat;
        background-size: 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: ''
    }
      }

.footer__link-title--icon-plus.footer__link-title--is-active::after {
      background: url('/images/ico_minus_02.svg') no-repeat;
      background-size: 12px;
    }

.footer__container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -27px;
    margin-bottom: 45px;
    margin-left: -27px;
  }

.footer__container:last-child {
      margin-bottom: 0;
    }

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

.footer__container {
      display: block;
      margin: 0
  }
    }

.footer__link-column {
    width: 33.33%;
    padding-right: 27px;
    padding-left: 27px;
  }

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

.footer__link-column {
      width: 100%;
      padding: 0;
      border-bottom: 1px solid #404662;
      border-bottom: 1px solid var(--darkBlue-03)
  }
    }

.footer__link-column--half-col {
      width: 50%;
    }

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

.footer__link-column--half-col {
        width: 100%
    }
      }

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

.footer__link-sub {
      display: none
  }
    }

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

.footer__list-link {
      padding-right: 30px;
      padding-left: 30px
  }
    }

.footer__list-item {
    margin-bottom: 6px;
  }

.footer__list-item:last-child {
      margin-bottom: 0;
    }

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

.footer__list-item {
      margin-bottom: 15px !important
  }
    }

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

.footer__list-link--customer {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-left: -20px
  }
    }

.footer__list-link--customer .footer__list-item {
    margin-bottom: 9px;
  }

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

.footer__list-link--customer .footer__list-item {
      width: 50%;
      margin-bottom: 15px;
      padding-left: 20px
  }
    }

.footer__list-link--content {
    /* doiuse-disable multicolumn */
    width: 85%;
    -webkit-column-count: 2;
            column-count: 2;

    /* doiuse-enable multicolumn */
  }

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

.footer__list-link--content {
      -webkit-column-count: auto;
              column-count: auto
  }
    }

.footer__list-link--city {
    /* doiuse-disable multicolumn */
    -webkit-column-count: 8;
            column-count: 8;

    /* doiuse-enable multicolumn */
  }

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

.footer__list-link--city {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-column-count: auto;
              column-count: auto
  }
    }

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

.footer__list-link--city .footer__list-item {
      width: 25%
  }
    }

.footer__link {
    color: #ddd;
    color: var(--gray-03);
    font-size: 1.3rem;
  }

@media print, screen and (min-width: 769px) {

.footer__link:hover {
        color: #fff;
        color: var(--white);
        text-decoration: underline
    }
      }

.footer__lower {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    background-color: #fff;
    background-color: var(--white);
/*     padding: 18px 15px; */
  }

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

.footer__lower {
      display: block;
      padding: 15px
  }
    }

.footer__img-logo {
    display: block;
    width: 246px;
  }

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

.footer__img-logo {
      width: 200px;
      margin-bottom: 15px
  }
    }

.footer__copyright {
    font-size: 1rem;
    line-height: 1.3;
    color: #a9a9a9;
    color: var(--gray-04);
    letter-spacing: 0.5px;
  }

.form-checkbox-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  cursor: pointer;
}

.form-checkbox-01__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.form-checkbox-01__text {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
    padding: 16px 10px 15px 55px;
    background-color: #fff;
    background-color: var(--white);
    background-image: url('/images/icon_checkbox_02_no.svg');
    background-position: 20px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.33;
  }

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

.form-checkbox-01__text {
      padding: 13px 10px 12px 38px;
      background-position: 13px center;
      background-size: 15px 15px;
      border-radius: 4px;
      font-size: 1.6rem
  }
    }

.form-checkbox-01__input:checked + .form-checkbox-01__text {
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    background-image: url('/images/icon_checkbox_02_on.svg');
    border: 1px solid #00b7e1;
    border: 1px solid var(--lightBlue-01);
    color: #fff;
    color: var(--white);
    font-weight: 700;
  }

.form-checkbox-02 {
  overflow: hidden;
  cursor: pointer;
}

.form-checkbox-02__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.form-checkbox-02__text {
    display: inline-block;
    height: 100%;
    padding-left: 30px;
    background-image: url('/images/icon_checkbox_01_no.svg');
    background-position: left 2px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    vertical-align: top;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.33;
  }

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

.form-checkbox-02__text {
      padding-left: 25px;
      background-position: left 3px;
      background-size: 15px 15px;
      font-size: 1.6rem
  }
    }

.form-checkbox-02__input:checked + .form-checkbox-02__text {
    background-image: url('/images/icon_checkbox_01_on.svg');
  }

.form-input-01 {
  overflow: hidden;
  width: 100%;
  height: 48px;
  padding-right: 20px;
  padding-left: 20px;
  background: #fff;
  background: var(--white);
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  font-size: 1.8rem;
}

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

.form-input-01 {
    padding-right: 17px;
    padding-left: 17px;
    font-size: 1.6rem
}
  }

.form-input-01--is-error {
    background: #fde7ea;
  }

.form-input-01::-webkit-input-placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-input-01:-ms-input-placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-input-01::-ms-input-placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-input-01::placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-radio-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  cursor: pointer;
}

.form-radio-01__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.form-radio-01__text {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
    padding: 16px 10px 15px 55px;
    background-color: #fff;
    background-color: var(--white);
    background-image: url('/images/ico_radio_01.svg');
    background-position: 20px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.33;
  }

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

.form-radio-01__text {
      padding: 13px 10px 12px 44px;
      background-image: url('/images/ico_radio_01.svg');
      background-position: 13px center;
      background-size: 20px 20px;
      border-radius: 4px;
      font-size: 1.6rem
  }
    }

.form-radio-01__input:checked + .form-radio-01__text {
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    background-image: url('/images/ico_radio_02.svg');
    border: 1px solid #00b7e1;
    border: 1px solid var(--lightBlue-01);
    color: #fff;
    color: var(--white);
    font-weight: 700;
  }

.form-textarea-01 {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 140px;
  padding: 10px 20px;
  background: #fff;
  background: var(--white);
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  font-size: 1.8rem;
  resize: none;
}

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

.form-textarea-01 {
    width: 100%;
    height: 95px;
    padding: 10px 15px;
    font-size: 1.6rem
}
  }

.form-textarea-01--is-error {
    background: #fde7ea;
  }

.form-textarea-01::-webkit-input-placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-textarea-01:-ms-input-placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-textarea-01::-ms-input-placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-textarea-01::placeholder {
    color: #999;
    color: var(--gray-02);
  }

.form-valuation {
  border: 3px solid #00b7e1;
  border: 3px solid var(--lightBlue-01);
  background-color: #fff;
  background-color: var(--white);
}

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

.form-valuation {
    border-width: 1px
}
  }

.form-valuation__header {
    padding: 25px;
    text-align: center;
  }

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

.form-valuation__header {
      padding: 25px 12px 18px
  }
    }

.form-valuation__title-in {
    position: relative;
    display: inline-block;
    line-height: 1.3;
  }

.form-valuation__title-logo {
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    box-shadow: 3px 1px #e59b1b;
    font-size: 1.6rem;
    color: #fff;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }

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

.form-valuation__title-logo {
      width: 48px;
      height: 48px;
      font-size: 1.3rem;
      box-shadow: 3px 1px #da8800
  }
    }

.form-valuation__title-large {
    display: block;
    padding-left: 75px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
  }

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

.form-valuation__title-large {
      padding-top: 12px;
      padding-left: 56px;
      font-size: 2.2rem
  }
    }

.form-valuation__title-small {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
  }

.form-valuation__header-text {
    margin-top: 10px;
  }

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

.form-valuation__header-text {
      margin-top: 5px;
      text-align: left
  }
    }

.form-valuation__body {
    padding: 30px 30px 40px;
    background-color: #daf2fa;
  }

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

.form-valuation__body {
      padding: 20px 20px 30px
  }
    }

.form-valuation__tab {
    margin-bottom: 25px;
  }

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

.form-valuation__tab {
      margin-bottom: 10px
  }
    }

.form-valuation__form-title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
  }

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

.form-valuation__form-title {
      display: none
  }
    }

.form-valuation__radio {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    margin-bottom: 25px;
  }

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

.form-valuation__radio {
      -webkit-justify-content: flex-start;
              justify-content: flex-start;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      margin: -10px -5px 10px
  }
    }

.form-valuation__radio-col {
    width: 174px;
    margin: 0 10px;
  }

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

.form-valuation__radio-col {
      width: 50%;
      margin: 10px 0 0;
      padding: 0 5px
  }
    }

.form-valuation__selectbox {
    display: -webkit-flex;
    display: flex;
    margin: 0 -5px 30px;
  }

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

.form-valuation__selectbox {
      display: block;
      margin: 0 0 15px
  }
    }

.form-valuation__selectbox-col {
      width: 25%;
      padding: 0 5px;
    }

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

.form-valuation__selectbox-col {
        width: 100%;
        margin: 0 0 10px;
        padding: 0
    }

        .form-valuation__selectbox-col:last-child {
          margin-bottom: 0;
        }
      }

.form-valuation--owner-mansion {
    max-width: 730px;
    margin: 0 auto;
  }

.form-valuation__title-mansion {
    padding-top: 5px;
    padding-left: 75px;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
  }

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

.form-valuation__title-mansion {
      padding-left: 56px;
      font-size: 1.8rem
  }
    }

.form-valuation__title-mansion-small {
    display: block;
    margin-top: 5px;
    font-size: 1.6rem;
  }

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

.form-valuation__title-mansion-small {
      font-size: 1.4rem
  }
    }

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

.form-valuation--owner-mansion .form-valuation__form-title {
      display: block;
      text-align: left;
      font-weight: 400;
      font-size: 1.4rem
  }
    }

.form-valuation--owner-mansion .form-valuation__selectbox {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }

.form-valuation--owner-mansion .form-valuation__selectbox-col {
    width: 100%;
    margin-bottom: 10px;
  }

.form-valuation--owner-mansion .form-valuation__selectbox-col:last-child {
      margin-bottom: 0;
    }

.form-valuation__btn-mansion {
    position: relative;
    display: block;
    width: 300px;
    margin: 0 auto;
    font-weight: 400;
  }

.form-valuation__btn-mansion-quote {
    position: absolute;
    top: -10px;
    left: 15px;
    display: block;
    padding: 3px 10px;
    border-radius: 16px;
    background-color: #fff;
    color: #ffa000;
    color: var(--mainOrange);
    font-size: 1.6rem;
  }

/* stylelint-disable css-appearance */

/* stylelint-disable no-descending-specificity */

.box-form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
}

.is-required {
  position: relative;
}

.is-required::after {
    content: '蠢�鬆�';
    padding: 2px 9px;
    background: #eb0f32;
    background: #eb0f32;
    background: var(--red-01);
    border: 1px solid #eb0f32;
    border: 1px solid #eb0f32;
    border: 1px solid var(--red-01);
    text-align: center;
    color: #fff;
    color: #fff;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.2;
    margin-left: 8px;
  }

.box-keyword-form {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
          flex-direction: row;
  margin-bottom: 25px;
}

.box-keyword-form__label {
    color: #333;
    color: var(--black-01);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 7px;
  }

@media print, screen and (min-width: 769px) {

.box-keyword-form__label {
      font-size: 1.8rem;
      margin-bottom: 0
  }
    }

.box-keyword-form__input {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
  }

@media print, screen and (min-width: 769px) {

.box-keyword-form__input {
      -webkit-flex: 0 0 90%;
              flex: 0 0 90%
  }
    }

.box-keyword-form__input--text {
      width: 100%;
      height: 48px;
      line-height: 48px;
      padding: 0 20px;
      border: 1px solid #999;
      border: 1px solid var(--gray-02);
    }

.box-policy {
  margin: 0 0 25px;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.box-policy {
    margin: 45px 0 25px
}
  }

.box-policy__link {
    color: #00b7e1;
    color: var(--lightBlue-01);
  }

.box-submit-form {
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.box-condition-selection {
  background-color: #f8f7f3;
  background-color: var(--mainBg);
  margin: 0 -15px 25px;
  padding: 20px 15px;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.box-condition-selection {
    margin: 0 0 25px;
    padding: 0;
    background-color: #fff;
    background-color: var(--white)
}
  }

.box-condition-selection .list-condition-01 {
    margin-bottom: 0;
  }

.button-form-default {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 17px 25px 18px;
  background: #ffa000;
  box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
  border: none;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  color: #fff;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}

@media print, screen and (min-width: 769px) {

.button-form-default {
    width: auto;
    font-size: 1.8rem;
    padding: 15px 60px 20px
}
  }

.button-condition-default {
  max-width: 200px;
  width: 100%;
  margin-bottom: 25px;
}

/* Input : Range */

.grid__container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

.grid__container::after {
      display: block;
      clear: both;
      content: '';
    }

.grid__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 -15px;
  }

.grid__col {
    width: 100%;
    padding: 0 15px;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.grid__col {
      -webkit-flex-basis: 0;
              flex-basis: 0;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      max-width: 100%
  }
    }

.header-btn-menu {
  overflow: hidden;
  width: 88px;
  height: 90px;
  border-left: 1px solid #ccc;
  border-left: 1px solid var(--lineGray-01);
  cursor: pointer;
}

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

.header-btn-menu {
    width: 60px;
    height: 65px
}
  }

@media print, screen and (min-width: 769px) {

.header-btn-menu:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.header-btn-menu__text {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1;
    color: #797979;
    color: var(--gray-01);
    text-align: center;
  }

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

.header-btn-menu__text {
      font-size: 0.9rem
  }
    }

.header-btn-menu__in {
    position: relative;
    width: 30px;
    height: 24px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
  }

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

.header-btn-menu__in {
      width: 23px;
      height: 17px;
      margin-top: 16px
  }
    }

.header-btn-menu__line {
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    transition: 0.3s ease-in-out;
  }

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

.header-btn-menu__line {
      height: 3px
  }
    }

.header-btn-menu__line:nth-child(2) {
    opacity: 0;
    top: 10px;
  }

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

.header-btn-menu__line:nth-child(2) {
      top: 7px
  }
    }

.header-btn-menu__line:nth-child(3) {
    top: 10px;
  }

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

.header-btn-menu__line:nth-child(3) {
      top: 7px
  }
    }

.header-btn-menu__line:nth-child(4) {
    top: 20px;
  }

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

.header-btn-menu__line:nth-child(4) {
      top: 14px
  }
    }

.header-btn-menu--is-active .header-btn-menu__line:nth-child(1) {
    top: 10px;
    left: 50%;
    width: 0;
  }

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

.header-btn-menu--is-active .header-btn-menu__line:nth-child(1) {
      top: 7px
  }
    }

.header-btn-menu--is-active .header-btn-menu__line:nth-child(2) {
    opacity: 1;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

.header-btn-menu--is-active .header-btn-menu__line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

.header-btn-menu--is-active .header-btn-menu__line:nth-child(4) {
    top: 10px;
    left: 50%;
    width: 0;
  }

.header-button {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-right: 20px;
}

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

.header-button {
    display: none
}
  }

.header-button__item {
    margin-right: 20px;
  }

.header-button__item:last-child {
      margin-right: 0;
    }

.header-button__link {
    display: block;
    width: 80px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 5px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
  }

@media print, screen and (min-width: 769px) {

.header-button__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.header-small {
  overflow: hidden;
  min-width: 1160px;
  min-width: var(--contentWidth);
  background: #fff;
  background: var(--white);
  border-bottom: 2px solid #1f2646;
  border-bottom: 2px solid var(--darkBlue-01);
}

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

.header-small {
    min-width: 0
}
  }

.header-small__in {
    overflow: hidden;
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 36px 30px 14px;
  }

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

.header-small__in {
      width: auto;
      padding: 3px 15px 10px
  }
    }

.header-small__logo-img {
    width: 300px;
  }

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

.header-small__logo-img {
      width: 92px
  }
    }

.header-utility {
  display: -webkit-flex;
  display: flex;
  margin-right: 10px;
}

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

.header-utility {
    margin-right: 0
}
  }

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

.header-utility__item {
      border-left: 1px solid #ccc;
      border-left: 1px solid var(--lineGray-01)
  }
    }

.header-utility__link {
    display: block;
    height: 90px;
    padding-top: 22px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 1.2rem;
    line-height: 1;
    color: #797979;
    color: var(--gray-01);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }

@media print, screen and (min-width: 769px) {

.header-utility__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

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

.header-utility__link {
      width: 60px;
      height: 65px;
      padding-top: 14px;
      padding-right: 0;
      padding-left: 0;
      font-size: 0.9rem
  }
    }

@media (max-width: 320px) {

.header-utility__link {
      width: 50px;
      height: 65px
  }
    }

.header-utility__text {
    display: block;
    padding-top: 40px;
  }

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

.header-utility__text {
      padding-top: 29px
  }
    }

.header-utility__text--icon-fav {
      background: url('/images/ico_heart_01.svg') top center no-repeat;
      background-size: 32px 28px;
    }

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

.header-utility__text--icon-fav {
        background-size: 22px 20px
    }
      }

.header-utility__text--icon-contact {
      background: url('/images/ico_phone_01.svg') top center no-repeat;
      background-size: 30px;
    }

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

.header-utility__text--icon-contact {
        background-size: 21px
    }
      }

.header-utility__text--icon-store {
      background: url('/images/ico_store_01.svg') top center no-repeat;
      background-size: 32px 28px;
    }

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

.header-utility__text--icon-store {
        background-size: 22px 20px
    }
      }

.header {
  position: relative;
  z-index: 3;
  border-bottom: 2px solid #1f2646;
  border-bottom: 2px solid var(--darkBlue-01);
  background-color: #fff;
  background-color: var(--white);
}

.header__in {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    min-width: 1160px;
    min-width: var(--contentWidth);
  }

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

.header__in {
      min-width: 0
  }
    }

.header__logo-wrapper {
    padding-top: 15px;
    padding-left: 30px;
  }

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

.header__logo-wrapper {
      padding-top: 3px;
      padding-left: 15px
  }
    }

.header__logo-img {
    width: 400px;
  }

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

.header__logo-img {
      width: 92px
  }
    }

.header__keyword {
    margin-bottom: 8px;
    color: #797979;
    color: var(--gray-01);
    font-size: 1.2rem;
    line-height: 1;
  }

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

.header__keyword {
      display: none
  }
    }

.header__menu-wrapper {
    display: -webkit-flex;
    display: flex;
  }

.no-margin {
  margin: 0 !important;
}

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

.mb-00-sp {
    margin-bottom: 0 !important
}
  }

.mb-00 {
  margin-bottom: 0 !important;
}

.mb-01 {
  margin-bottom: 1px !important;
}

.mb-05 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-00 {
  margin-top: 0 !important;
}

.mt-01 {
  margin-top: 1px !important;
}

.mt-05 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.no-padding {
  padding: 0 !important;
}

.overflow-visible {
  overflow: visible !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

.height-auto {
  height: auto !important;
  overflow: auto !important;
}

.content-hide {
  display: none !important;
}

.content-hide-sp {
  display: none !important;
}

@media print, screen and (min-width: 769px) {

.content-hide-sp {
    display: block !important
}
  }

/* BACKGROUND-COLOR */

.bg-white {
  background-color: #fff !important;
  background-color: var(--white) !important;
}

.bg-orange-01 {
  background-color: #e85210 !important;
  background-color: var(--orange-01) !important;
}

.bg-gold-01 {
  background-color: #706b4a !important;
  background-color: var(--gold-01) !important;
}

.bg-light-brown {
  background-color: #9a8379 !important;
  background-color: var(--lightBrown) !important;
}

/* WIDTH */

.full-width {
  width: 100% !important;
}

.width-70 {
  width: 100% !important;
}

@media print, screen and (min-width: 769px) {

.width-70 {
    width: 71.1538% !important
}
  }

/* CONTENT POSITION */

.flex-column {
  -webkit-flex-direction: column !important;
          flex-direction: column !important;
}

.justify-content-center {
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
}

/* CONTAINER */

.box-between-space {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  padding: 25px 30px;
  background-color: #fff;
  background-color: var(--white);
  margin-bottom: 50px;
}

.box-between-space * {
    width: 100%;
    margin-bottom: 10px;
  }

.box-between-space *:last-child {
      margin-bottom: 0;
    }

@media print, screen and (min-width: 769px) {

.box-between-space * {
      width: auto;
      margin-bottom: 0
  }
    }

/* TYPOGRAPHY */

.text-small {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 769px) {

.text-small {
    font-size: 1.4rem
}
  }

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

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

@media print, screen and (min-width: 769px) {

.text-center-sp {
    text-align: left
}
  }

/* LINK DEFAULT */

.link-default-01 {
  padding-left: 14px;
  display: block;
}

.link-default-01::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 8px;
    height: 14px;
    background-image: url('/images/ico_arrow_right_03.svg');
    background-repeat: no-repeat;
    background-size: 8px 14px;
    margin-top: -8px;
  }

@media print, screen and (min-width: 769px) {

.link-default-01 {
    font-size: 1.8rem;
    padding-left: 22px
}

    .link-default-01::before {
      width: 10px;
      height: 18px;
      background-size: 10px 18px;
      margin-top: -9px;
    }
  }

/* text */

.fw-b {
  font-weight: 700 !important;
}

.fw-n {
  font-weight: 400 !important;
}

/* Link */

.link-normal {
  transition: opacity 0.2s ease-in-out;
  display: block;
}

.link-normal:hover {
    opacity: 0.7;
    opacity: var(--opacity);
  }

.link-blue {
  color: #00b7e1;
  color: var(--lightBlue-01);
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
  display: inline-block;
}

.link-blue:hover {
    opacity: 0.7;
    opacity: var(--opacity);
  }

/* color */

.col-orange-01 {
  color: #fda007 !important;
}

.col-blue-01 {
  color: #00a3e5;
}

/* text align */

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

/* fixed content */

.fixed-content {
  width: 100%;
  position: fixed;
  bottom: -25px;
  z-index: 100;
}

/* Table */

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

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}
  }

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

.table-fixed {
    min-width: 730px
}
  }

/* Image */

.img-responsive {
  width: 100%;
  display: block;
}

/* Display */

.display-inline-block {
  display: inline-block !important;
}

.margin-auto {
  margin: 0 auto;
}

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

.hero-main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse
}
  }

.hero-main__container {
    position: relative;
    background-color: #f8f7f3;
  }

.hero-main__item {
    position: relative;
  }

.hero-main__image {
    width: 100%;
    padding-top: 34.72%;
    background-position: center;
    background-size: cover;
  }

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

.hero-main__image {
      padding-top: 66.66%;
  }
    }

.hero-main__text-wrapper {
    top: 50%;
    left: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding-right: 60px;
    padding-left: 60px;
    text-align: center;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

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

.hero-main__text-wrapper {
      padding-right: 40px;
      padding-left: 40px
  }
    }

.hero-main__text {
    display: inline-block;
    padding: 20px 70px;
    font-size: 4.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: #293357;
    color: var(--darkBlue-02);
    background-color: rgba(255,255,255,0.8);
    /*background-color: var(--white);*/
    text-align: left;
  }

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

.hero-main__text {
      padding: 12px;
      font-size: 2rem
  }
    }

/* slick-carousel customize css */

.hero-main .slick-arrow {
    overflow: hidden;
    top: 50%;
    left: 0;
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: url('/images/ico_arrow_02.svg') no-repeat;
    background-size: 50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-indent: -999px;
    opacity: 0.9;
  }

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

.hero-main .slick-arrow {
      width: 30px;
      height: 30px;
      background-size: 30px
  }
    }

.hero-main .slick-arrow.slick-next {
      left: auto;
      right: 0;
      -webkit-transform: translateY(-50%) rotate(180deg);
              transform: translateY(-50%) rotate(180deg);
    }

@media print, screen and (min-width: 769px) {

.hero-main .slick-arrow:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

/* slide-dot */
.hero-main__container .slider__dots {
  padding-top: 20px;
}

 @media (max-width: 768px) {

 .hero-main__container .slider__dots {
          padding-top: 15px;
          padding-bottom: 15px;
      }
        }

.img-main-visual-01 {
  overflow: hidden;
  height: 240px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

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

.img-main-visual-01 {
    height: auto;
    padding-top: 30.379%
}
  }

.img-main-visual-02 {
  overflow: hidden;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

 @media only screen and (max-width: 768px) {
.img-main-visual-02 {
  height: auto;
  padding-top: 50.379%
 }
}

.layout-condition-01 {
  overflow: hidden;
  padding-bottom: 60px;
  background: #fff;
  background: var(--white);
}

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

.layout-condition-01 {
    padding: 13px 15px 30px
}

    .layout-condition-01 .title-content-01--layout-condition {
      padding: 0;
    }

    .layout-condition-01 .list-button-01--layout-condition {
      padding: 0;
    }

    .layout-condition-01 .selectbox--layout-condition {
      height: 48px;
    }
  }

.layout-condition-01--edit {
    padding-bottom: 0;
  }

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

.layout-condition-01--edit {
      padding: 13px 0 0
  }
    }

.layout-condition-02 {
  overflow: hidden;
  background: #fff;
  background: var(--white);
}

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

.layout-condition-02 {
    padding: 26px 15px 60px;
    background: #f7f6f2;
    border-top: 1px solid #e4e4e4
}

    .layout-condition-02 .list-button-01--layout-condition {
      padding: 0;
    }
  }

.layout-form-01__content {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    margin-top: 40px;
  }

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

.layout-form-01__content {
      display: block;
      margin-top: 28px
  }
    }

.layout-form-01__content:first-child {
      margin-top: 54px;
    }

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

.layout-form-01__content:first-child {
        margin-top: 0
    }
      }

.layout-form-01__title {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 364px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 14px 40px 0 0;
  }

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

.layout-form-01__title {
      display: block;
      width: 100%;
      -webkit-flex: none;
              flex: none;
      margin-bottom: 13px;
      padding: 0;
      font-size: 0
  }
    }

.layout-form-01__form {
    overflow: hidden;
    -webkit-flex: 1;
            flex: 1;
  }

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

.layout-form-01__form {
      -webkit-flex: none;
              flex: none
  }
    }

.layout-form-01__text-note {
    margin-top: 13px;
    color: #797979;
    color: var(--gray-01);
    font-size: 1.4rem;
    line-height: 1.2;
  }

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

.layout-form-01__text-note {
      margin-top: 7px
  }
    }

.layout-form-01__title-01 {
    margin: 35px 0 14px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.layout-form-01__title-01 {
      margin: 23px 0 10px;
      font-size: 1.6rem
  }
    }

.layout-form-01__text-link {
    color: #00b7e1;
    color: var(--lightBlue-01);
    text-decoration: underline;
    font-size: 1.4rem;
    line-height: 1.2;
  }

@media print, screen and (min-width: 769px) {

.layout-form-01__text-link:hover {
        text-decoration: none
    }
      }

.layout-form-01 .layout-form-01__selectbox {
    width: 585px;
  }

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

.layout-form-01 .layout-form-01__selectbox {
      width: 100%;
      height: 48px
  }
    }

.layout-form-01__button-01 {
    margin-top: 20px;
    width: 150px;
  }

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

.layout-form-01__button-01 {
      width: 114px
  }
    }

.layout-form-01__button-01 .button-white {
      padding-top: 7px;
      padding-bottom: 8px;
      font-size: 1.4rem;
    }

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

.layout-form-01__button-01 .button-white {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 1.6rem
    }
      }

.layout-form-01 .text-content-01 {
    margin: 52px 0 0;
  }

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

.layout-form-01 .text-content-01 {
      margin: 22px 0 0
  }
    }

.layout-tab-search-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

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

.layout-tab-search-01 {
    display: block
}
  }

.layout-tab-search-01__item-left {
    -webkit-flex: 0 0 576px;
            flex: 0 0 576px;
  }

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

.layout-tab-search-01__item-left {
      width: 100%
  }
    }

.layout-tab-search-01__item-right {
    -webkit-flex: 0 0 144px;
            flex: 0 0 144px;
  }

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

.layout-tab-search-01__item-right {
      width: 100%;
      margin-top: 10px
  }
    }

.layout-table-detail-01 {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 40px;
}

.layout-table-detail-01__info {
    -webkit-flex: 1;
            flex: 1;
    padding-right: 30px;
  }

.layout-table-detail-01__contact {
    -webkit-flex: 0 0 280px;
            flex: 0 0 280px;
  }

.link-content-01 {
  font-size: 1.4rem;
  color: #00b7e1;
  color: var(--lightBlue-01);
  text-decoration: underline;
}

@media print, screen and (min-width: 769px) {

.link-content-01 {
    font-size: 1.6rem
}

    .link-content-01:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }
  }

.link-content-02 {
  color: #00b7e1;
  color: var(--lightBlue-01);
}

@media print, screen and (min-width: 769px) {
    .link-content-02:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }
  }

.link-mail-subscribe {
  margin-bottom: 30px;
}

.link-more-01 {
  text-align: right;
}

.link-more-01--align-left {
    text-align: left;
  }

.link-more-01__link {
    position: relative;
    display: inline-block;
    padding-left: 20px;
  }

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

.link-more-01__link {
      padding-left: 12px
  }
    }

@media print, screen and (min-width: 769px) {

.link-more-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.link-more-01__link::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.link-more-01__link::before {
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.link-more-02 {
  margin-top: 15px;
  text-align: right;
}

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

.link-more-02 {
    margin-top: 20px;
    text-align: center
}
  }

.link-more-02__link {
    position: relative;
    display: inline-block;
    padding-left: 20px;
  }

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

.link-more-02__link {
      padding: 10px 15px;
      border-radius: 6px;
      background-color: #fff;
      background-color: var(--white);
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      box-shadow: inset 0 -4px rgba(8, 0, 0, 0.15);
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.link-more-02__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.link-more-02__link::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.link-more-02__link::before {
        display: none
    }
      }

.link-news-break {
  width: 100%;
  font-size: 2.4rem;
  background-color: #999;
  background-color: var(--gray-02);
  text-align: center;
  padding: 2px 30px;
  margin: 15px 0 50px;
  display: block;
}

.link-news-break:hover {
    opacity: 0.7;
    opacity: var(--opacity);
  }

@media print, screen and (min-width: 769px) {

.link-news-break {
    font-size: 2.2rem;
    padding: 24px 30px
}
  }

.link-search-results-01 {
  overflow: hidden;
}

.link-search-results-01__link {
    display: block;
    position: relative;
    padding: 16px 45px 17px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
    border-bottom: 1px solid #fff;
    border-bottom: 1px solid var(--white);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
  }

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

.link-search-results-01__link {
      padding: 12px 30px 12px 15px;
      background: #f0ebe2;
      border-bottom: 1px solid #e6e4df;
      font-size: 1.6rem
  }
    }

.link-search-results-01__link::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 20px;
      width: 11px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 11px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.link-search-results-01__link::before {
        right: 15px;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

@media print, screen and (min-width: 769px) {

.link-search-results-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.box-link-seminars {
  margin-top: 15px;
  text-align: right;
  display: block;
}

.box-link-seminars__link {
    font-size: 1.6rem;
    position: relative;
  }

.box-link-seminars__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.box-link-seminars__link::before {
      content: '';
      width: 10px;
      height: 18px;
      background-repeat: no-repeat;
      background-image: url('/images/ico_arrow_right_03.svg');
      background-size: 10px 18px;
      position: absolute;
      top: 50%;
      left: -20px;
      margin-top: -9px;
    }

@media print, screen and (min-width: 769px) {

.box-link-seminars__link {
      font-size: 1.8rem
  }
    }

.list-article__item {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.list-article__item:first-child {
      padding-top: 0;
    }

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

.list-article__item {
      padding: 0
  }
    }

.list-article--no-border .list-article__item {
    border-bottom: none;
  }

.list-article__link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    width: 100%;
  }

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

.list-article__link {
      padding-top: 15px;
      padding-bottom: 15px
  }
    }

@media print, screen and (min-width: 769px) {

.list-article__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-article__item:first-child .list-article__link {
    padding-top: 0;
  }

.list-article__image {
    display: block;
    width: 140px;
    height: 105px;
    -webkit-flex: 0 0 140px;
            flex: 0 0 140px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.list-article__image {
      width: 120px;
      height: 90px;
      -webkit-flex: 0 0 120px;
              flex: 0 0 120px
  }
    }

.list-article__detail {
    padding-left: 20px;
  }

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

.list-article__detail {
      padding-left: 15px
  }
    }

.list-article__title-01 {
    font-size: 1.8rem;
  }

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

.list-article__title-01 {
      font-size: 1.4rem
  }
    }

.list-article__tag {
    display: inline-block;
    margin-bottom: 5px;
    padding: 4px 5px;
    border: 1px solid #ffa000;
    border: 1px solid var(--mainOrange);
    font-size: 1.1rem;
    color: #ffa000;
    color: var(--mainOrange);
    line-height: 1;
    vertical-align: top;
  }

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

.list-article__tag {
      padding: 2px 5px;
      font-size: 1rem
  }
    }

.list-article__date {
    font-size: 1.6rem;
    color: #999;
    color: var(--gray-02);
  }

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

.list-article__date {
      font-size: 1.2rem
  }
    }

.list-article__title-02 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.28;
  }

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

.list-article__title-02 {
      margin-bottom: 7px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.list-article__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }

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

.list-article__text {
      font-size: 1.4rem
  }
    }

.list-banner-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.list-banner-01--col-03 {
    margin-top: -20px;
    margin-right: -10px;
    margin-left: -10px;
  }

.list-banner-01--col-03 .list-banner-01__item {
    width: 255px;
    margin-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }

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

.list-banner-01--col-03 .list-banner-01__item {
      width: 33.333%
  }
    }

.list-banner-01__link {
    display: block;
  }

@media print, screen and (min-width: 769px) {

.list-banner-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-banner-01__image {
    width: 100%;
    height: 86px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.list-banner-01__image {
      width: 100%;
      height: auto;
      padding-top: 36.36%
  }
    }

.list-banner-02__item {
    display: block;
    width: 715px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }

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

.list-banner-02__item {
      width: auto;
      margin-bottom: 10px
  }
    }

.list-banner-02__item:last-child {
      margin-bottom: 0;
    }

.list-banner-02__image {
    display: block;
    width: 100%;
  }

.list-banner-02__link {
    display: block;
  }

@media print, screen and (min-width: 769px) {

.list-banner-02__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-banner-03 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -12px -6px 20px;
}

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

.list-banner-03 {
    margin: -14px -7px 20px
}
  }

.list-banner-03__item {
    width: 33.333%;
    margin-top: 12px;
    padding: 0 6px;
  }

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

.list-banner-03__item {
      width: 50%;
      margin-top: 14px;
      padding: 0 7px
  }
    }

.list-banner-03__link {
    display: block;
  }

@media print, screen and (min-width: 769px) {

.list-banner-03__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-banner-03__image {
    width: 100%;
    height: 85px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.list-banner-03__image {
      width: 100%;
      height: auto;
      padding-top: 36.36%
  }
    }

.list-bullet-01 {
  overflow: hidden;
}

.list-bullet-01__text {
    overflow: hidden;
    position: relative;
    padding-left: 14px;
    line-height: 1.8;
  }

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

.list-bullet-01__text {
      padding-left: 12px
  }
    }

.list-bullet-01__text::before {
      content: '繝ｻ';
      position: absolute;
      top: 0;
      left: 0;
    }

.list-bullet-02__item {
    position: relative;
    padding-left: 20px;
  }

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

.list-bullet-02__item {
      padding-left: 15px
  }
    }

.list-bullet-02__item::before {
      top: 4px;
      left: 0;
      position: absolute;
      width: 14px;
      height: 14px;
      background-color: #333;
      background-color: var(--black-01);
      content: '';
    }

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

.list-bullet-02__item::before {
        top: 5px;
        width: 10px;
        height: 10px
    }
      }

.list-bullet-03 {
  overflow: hidden;
  margin-bottom: 15px;
}

.list-bullet-03 .text-content-04 {
    position: relative;
    padding-left: 20px;
  }

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

.list-bullet-03 .text-content-04 {
      padding-left: 16px
  }
    }

.list-bullet-03 .text-content-04::before {
      content: '繝ｻ';
      top: 0;
      left: 0;
      position: absolute;
      font-weight: 700;
    }

.list-bullet-03 .text-content-04--icon-star::before {
      content: '窶ｻ';
    }

.list-button-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 30px;
  margin-right: -7px;
  margin-left: -7px;
}

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

.list-button-01 {
    margin-top: 15px;
    margin-right: -5px;
    margin-left: -5px;
    padding: 0 15px
}
  }

.list-button-01__item {
    overflow: hidden;
    width: 264px;
    padding-right: 7px;
    padding-left: 7px;
  }

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

.list-button-01__item {
      width: 50%;
      padding-right: 5px;
      padding-left: 5px
  }
    }

.list-button-01__item--width-01 {
      width: 364px;
    }

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

.list-button-01__item--width-01 {
        width: 100%
    }
      }

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

.list-button-01__item .button-white__button {
        padding: 10px;
        font-size: 1.2rem
    }
      }

.list-button-01--terms-01 {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    margin-top: 15px;
    margin-right: -7px;
    margin-left: -7px;
  }

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

.list-button-01--terms-01 {
      margin-top: 15px;
      margin-right: -5px;
      margin-left: -5px
  }
    }

.list-button-01--terms-01 .button-white {
      padding: 11px 0 10px;
    }

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

.list-button-01--terms-01 .button-white {
        padding: 8px 0;
        font-size: 1.3rem
    }
      }

.list-button-02 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 30px;
  margin-right: -5px;
  margin-left: -5px;
}

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

.list-button-02 {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 15px 0 0
}
  }

.list-button-02__item {
    overflow: hidden;
    width: 460px;
    padding-right: 5px;
    padding-left: 5px;
  }

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

.list-button-02__item {
      width: 100%;
      margin-top: 15px;
      padding: 0
  }
    }

.list-button-02__item .button__link {
      display: block;
      width: 100%;
      padding: 20px 10px 21px;
      line-height: 1.4;
    }

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

.list-button-02__item .button__link {
        padding: 17px 10px
    }
      }

.list-button-02__item .button-white {
      padding: 19px 10px 20px;
    }

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

.list-button-02__item .button-white {
        padding: 16px 10px
    }
      }

.list-button-02__item--small {
      width: 260px;
    }

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

.list-button-02__item--small {
        width: 100%;
        -webkit-order: 2;
                order: 2
    }
      }

.list-button-03 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  margin: -10px -10px 0;
}

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

.list-button-03 {
    display: block;
    margin: -10px 0 0
}
  }

.list-button-03__item {
    overflow: hidden;
    width: 50%;
    margin-top: 10px;
    padding: 0 10px;
  }

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

.list-button-03__item {
      width: 100%;
      padding: 0
  }
    }

.list-button-03--width-01 {
    -webkit-justify-content: center;
            justify-content: center;
  }

.list-button-03--width-01 .list-button-03__item {
    width: 315px;
  }

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

.list-button-03--width-01 .list-button-03__item {
      width: 100%
  }
    }

.list-checkbox-01 {
  overflow: hidden;
  margin-top: -21px;
}

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

.list-checkbox-01 {
    margin-top: -19px
}
  }

.list-checkbox-01__item {
    overflow: hidden;
    margin-top: 21px;
  }

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

.list-checkbox-01__item {
      margin-top: 19px
  }
    }

.list-city-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -12px;
  margin-right: -6px;
  margin-left: -6px;
}

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

.list-city-01 {
    margin: 0
}
  }

.list-city-01__item {
    overflow: hidden;
    width: 25%;
    margin-top: 12px;
    padding-right: 6px;
    padding-left: 6px;
  }

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

.list-city-01__item {
      width: 100%;
      margin-top: 0;
      padding: 0
  }
    }

.list-city-01__link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    height: 100%;
    padding: 13px 5px 14px;
    background: #fff;
    background: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
    text-align: center;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .list-city-01__link.select-none {
    background: #e4e4e4;
    background: var(--gray-03);
    box-shadow: none;
  }

  .list-city-01__link.select-none:hover {
    opacity: 1.0;
  }


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

.list-city-01__link {
      display: block;
      position: relative;
      height: auto;
      padding: 13px 30px 13px 15px;
      background: #efebe1;
      border: none;
      border-bottom: 1px solid #fff;
      border-bottom: 1px solid var(--white);
      border-radius: 0;
      box-shadow: none;
      text-align: left;
      font-size: 1.6rem
  }

      .list-city-01__link::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        width: 8px;
        height: 12px;
        background: url('/images/ico_arrow_right_03.svg') no-repeat;
        background-size: 8px 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
      }
    }

@media print, screen and (min-width: 769px) {

.list-city-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-column-01 {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--lineGray-01);
  display: block;
}

@media print, screen and (min-width: 769px) {

.list-column-01 {
    padding: 30px 0
}
  }

.list-column-01__item {
    display: block;
  }

.list-column-01__item:not(:last-child) {
      margin-bottom: 15px;
    }

@media print, screen and (min-width: 769px) {

.list-column-01__item:not(:last-child) {
        margin-bottom: 30px
    }
      }

.list-column-01__link {
    transition: opacity 0.2s ease-in-out;
    display: block;
  }

.list-column-01__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.list-condition-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -15px -7px 25px;
}

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

.list-condition-01 {
    margin: -5px 0 26px
}
  }

.list-condition-01__item {
    overflow: hidden;
    width: 33.333%;
    margin-top: 15px;
    padding: 0 7px;
  }

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

.list-condition-01__item {
      width: 100%;
      margin-top: 5px;
      padding: 0
  }
    }

.list-contact-button-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  margin: -10px -10px 10px;
  padding-top: 55px;
}

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

.list-contact-button-01 {
    display: block;
    margin: -13px 0 0
}
  }

.list-contact-button-01__item {
    overflow: hidden;
    width: 50%;
    margin-top: 10px;
    padding: 0 10px;
  }

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

.list-contact-button-01__item {
      width: 100%;
      margin-top: 13px;
      padding: 0
  }
    }

.list-contact-city-01 {
  overflow: hidden;
}

.list-contact-city-01__item {
    overflow: hidden;
    margin-bottom: 53px;
  }

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

.list-contact-city-01__item {
      margin-bottom: 0
  }
    }

.list-contact-city-01__item:last-child {
      margin-bottom: 0;
    }

.list-content-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -10px 40px;
}

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

.list-content-01 {
    margin: 0 -5px 15px
}
  }

.list-content-01__item {
    width: 33.333%;
    padding: 0 10px;
  }

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

.list-content-01__item {
      width: 50%;
      padding: 0 5px
  }
    }

.list-content-01__text {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.72;
  }

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

.list-content-01__text {
      padding: 9px 0;
      font-size: 1.6rem;
      line-height: 1.69
  }
    }

.list-content-02 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.list-content-02 {
    margin-bottom: 15px
}
  }

.list-content-02__item {
    width: 33.333%;
    margin-bottom: 5px;
    border-right: 5px solid #fff;
    border-right: 5px solid var(--white);
  }

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

.list-content-02__item {
      width: 50%
  }
    }

.list-content-02__item:nth-child(3n) {
      border-right: none;
    }

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

.list-content-02__item:nth-child(3n) {
        border-right: 5px solid #fff;
        border-right: 5px solid var(--white)
    }
      }

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

.list-content-02__item:nth-child(even) {
        border-right: none
    }
      }

.list-content-02__text {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    padding: 14px 20px;
    background: #f5f4ee;
    background: var(--gray-05);
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.72;
    border-radius: 8px;
  }

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

.list-content-02__text {
      padding: 14px 10px 14px 15px;
      font-size: 1.6rem;
      line-height: 1.31
  }
    }

.list-content-03 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -10px -5px 0;
}

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

.list-content-03 {
    display: block;
    margin: -10px 0 0
}
  }

.list-content-03__item {
    width: 50%;
    margin-top: 10px;
    padding: 0 5px;
  }

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

.list-content-03__item {
      width: 100%;
      padding: 0
  }
    }

.list-content-03__text {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    padding: 15px 10px 15px 20px;
    background: #f5f4ee;
    background: var(--gray-05);
    border-radius: 8px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.72;
  }

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

.list-content-03__text {
      padding: 9px 10px 10px;
      border-radius: 6px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.list-form-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -16px -8px 0;
}

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

.list-form-01 {
    margin: -6px -3px 0
}
  }

.list-form-01__item {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    width: 25%;
    margin-top: 16px;
    padding-right: 8px;
    padding-left: 8px;
  }

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

.list-form-01__item {
      width: 50%;
      margin-top: 6px;
      padding-right: 3px;
      padding-left: 3px
  }
    }

.list-form-01--col-02 .list-form-01__item {
    width: 50%;
  }

.list-form-01--sp-col-03 {
    margin: -12px -6px 0;
  }

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

.list-form-01--sp-col-03 {
      margin: -6px -3px 0
  }
    }

.list-form-01--sp-col-03 .list-form-01__item {
    margin-top: 12px;
    padding-right: 6px;
    padding-left: 6px;
  }

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

.list-form-01--sp-col-03 .list-form-01__item {
      width: 33.333%;
      margin-top: 6px;
      padding-right: 3px;
      padding-left: 3px
  }
    }

.list-form-01--radio-button {
    margin: -12px -6px 0;
  }

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

.list-form-01--radio-button {
      margin: -6px -3px 0
  }
    }

.list-form-01--radio-button .list-form-01__item {
    margin-top: 12px;
    padding-right: 6px;
    padding-left: 6px;
  }

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

.list-form-01--radio-button .list-form-01__item {
      margin-top: 6px;
      padding-right: 3px;
      padding-left: 3px
  }
    }

.list-image-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

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

.list-image-01 {
    display: block
}
  }

.list-image-01--col-02 {
    margin-top: -30px;
    margin-right: -15px;
    margin-left: -15px;
  }

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

.list-image-01--col-02 {
      margin: 0
  }
    }

.list-image-01--col-02 .list-image-01__item {
    width: 50%;
    margin-top: 30px;
    padding-right: 15px;
    padding-left: 15px;
  }

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

.list-image-01--col-02 .list-image-01__item {
      width: 100%;
      margin-top: 15px;
      padding: 0
  }
    }

.list-image-01__link {
    display: block;
  }

@media print, screen and (min-width: 769px) {

.list-image-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-image-01__image {
    width: 100%;
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.list-image-01__image {
      width: 100%;
      height: 136px
  }
    }

.list-input-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

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

.list-input-01 {
    margin-right: -10px;
    margin-left: -10px
}
  }

.list-input-01__item {
    position: relative;
    width: 144px;
    padding-right: 12px;
    padding-left: 12px;
  }

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

.list-input-01__item {
      width: 33.333%;
      padding-right: 10px;
      padding-left: 10px
  }
    }

.list-input-01__item::before {
      content: '-';
      position: absolute;
      top: 50%;
      right: -3px;
      color: #333;
      color: var(--black-01);
      font-size: 1.8rem;
      line-height: 1.2;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-input-01__item::before {
        font-size: 1.6rem
    }
      }

.list-input-01__item:last-child::before {
        content: '';
        top: inherit;
        right: inherit;
        font-size: 0;
        -webkit-transform: none;
                transform: none;
      }

.list-link-group-01 {
  margin: 15px -15px 0;
}

.list-link-group-01::before,
  .list-link-group-01::after {
    content: '';
    display: table;
  }

.list-link-group-01::after {
    clear: both;
  }

.list-link-group-01__item {
    width: 50%;
    margin-bottom: 10px;
    float: left;
    padding: 0 15px;
  }

.list-link-group-01__item:last-child {
      margin-bottom: 0;
    }

.list-link-group-01__item:nth-last-child(2) {
      margin-bottom: 0;
    }

@media print, screen and (min-width: 769px) {

.list-link-group-01__item {
      width: 25%;
      margin-bottom: 0
  }
    }

.list-news-02__item {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.list-news-02__item:first-child {
      padding-top: 0;
    }

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

.list-news-02__item {
      padding-top: 15px;
      padding-bottom: 15px
  }
    }

.list-news-02__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    padding-right: 38px;
    position: relative;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.list-news-02__title:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-news-02__title::before {
      content: '';
      width: 10px;
      height: 18px;
      background-repeat: no-repeat;
      background-image: url('/images/ico_arrow_right_03.svg');
      background-size: 10px 18px;
      position: absolute;
      top: 50%;
      right: 0;
      margin-top: -9px;
    }

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

.list-news-02__title {
      font-size: 1.6rem;
      padding-right: 20px
  }
    }

.list-news-02__title--new::after {
      display: inline-block;
      padding: 4px 5px;
      background-color: #eb0f32;
      background-color: var(--red-01);
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      color: var(--white);
      text-align: center;
      line-height: 1;
      vertical-align: middle;
      margin-left: 10px;
      content: '邱�蛻�髢楢ｿ�';
    }

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

.list-news-02__title--new::after {
        padding-top: 3px;
        padding-bottom: 2px;
        font-size: 1rem
    }
      }

.list-news-02__title--new-02::after {
      display: inline-block;
      padding: 4px 5px;
      background-color: #eb0f32;
      background-color: var(--red-01);
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      color: var(--white);
      text-align: center;
      line-height: 1;
      vertical-align: middle;
      margin-left: 10px;
      content: '貅�蟶ｭ';
    }

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

.list-news-02__title--new-02::after {
        padding-top: 3px;
        padding-bottom: 2px;
        font-size: 1rem
    }
      }

.list-news-02__title-in {
    display: inline;
  }

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

.list-news-02__title-in {
      display: block
  }
    }

.list-news-02__link {
    color: #333;
    color: var(--black-01);
    vertical-align: middle;
  }

.list-news-02__title--new .list-news-02__link {
    margin-right: 10px;
  }

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

.list-news-02__title--new .list-news-02__link {
      margin-right: 0
  }
    }

.list-news-02__date {
    font-size: 1.6rem;
    color: #999;
    color: var(--gray-02);
  }

.list-news-02--side-panel .list-news-02__title {
    font-size: 1.6rem;
  }

.list-news-02--side-panel .list-news-02__title-in {
    display: block;
  }

.list-news-02--side-panel .list-news-02__link {
    margin-right: 0;
  }

.list-news-02--side-panel .list-news-02__date {
    font-size: 1.4rem;
  }

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

.list-news-02--side-panel .list-news-02__date {
      font-size: 1.2rem
  }
    }

.list-news-03 {
  overflow: hidden;
  width: 100%;
}

.list-news-03__item {
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.list-news-03__link-01 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    position: relative;
    padding: 18px 15px 18px 0;
  }

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

.list-news-03__link-01 {
      display: block;
      padding: 10px 15px 15px 0
  }
    }

@media print, screen and (min-width: 769px) {

.list-news-03__link-01:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-news-03__link-01::before {
      content: '';
      top: 50%;
      right: 4px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-news-03__link-01::before {
        top: 50%;
        right: 0;
        position: absolute;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.list-news-03__text-01 {
    width: 470px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.33;
  }

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

.list-news-03__text-01 {
      width: 100%;
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.list-news-03__detail {
    overflow: hidden;
    -webkit-flex: 1;
            flex: 1;
    font-size: 0;
  }

.list-news-03__date {
    display: inline;
    position: relative;
    top: 1px;
    padding-right: 17px;
    color: #999;
    color: var(--gray-02);
    font-size: 1.6rem;
    line-height: 1.33;
    float: right;
  }

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

.list-news-03__date {
      top: 0;
      padding-right: 7px;
      font-size: 1.2rem;
      line-height: 1.2
  }
    }

.list-news-03__category {
    display: inline-block;
    padding: 3px 5px;
    background: #1f2646;
    background: var(--darkBlue-01);
    color: #fff;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.2;
  }

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

.list-news-03__category {
      padding: 2px 5px;
      font-size: 1rem;
      font-weight: 700
  }
    }

.list-news-03__link-02 {
    display: block;
    position: relative;
    padding: 16px 15px 15px 0;
  }

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

.list-news-03__link-02 {
      padding: 10px 15px 10px 0
  }
    }

@media print, screen and (min-width: 769px) {

.list-news-03__link-02:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-news-03__link-02::before {
      content: '';
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-news-03__link-02::before {
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.list-news-03__text-02 {
    font-size: 1.6rem;
    line-height: 1.5;
  }

.list-news__item {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.list-news__item:first-child {
      padding-top: 0;
    }

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

.list-news__item {
      padding-top: 15px;
      padding-bottom: 15px
  }
    }

.list-news__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }

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

.list-news__title {
      font-size: 1.6rem
  }
    }

.list-news__title--new::after {
      display: inline-block;
      padding: 4px 5px;
      background-color: #ffa000;
      background-color: var(--mainOrange);
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      color: var(--white);
      text-align: center;
      line-height: 1;
      vertical-align: middle;
      content: 'NEW';
    }

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

.list-news__title--new::after {
        padding-top: 3px;
        padding-bottom: 2px;
        font-size: 1rem
    }
      }

.list-news__title-in {
    display: inline;
  }

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

.list-news__title-in {
      display: block
  }
    }

.list-news__link {
    color: #333;
    color: var(--black-01);
    vertical-align: middle;
  }

@media print, screen and (min-width: 769px) {

.list-news__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-news__title--new .list-news__link {
    margin-right: 10px;
  }

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

.list-news__title--new .list-news__link {
      margin-right: 0
  }
    }

.list-news__date {
    font-size: 1.6rem;
    color: #999;
    color: var(--gray-02);
  }

.list-news--side-panel .list-news__title {
    font-size: 1.6rem;
  }

.list-news--side-panel .list-news__title-in {
    display: block;
  }

.list-news--side-panel .list-news__link {
    margin-right: 0;
  }

.list-news--side-panel .list-news__date {
    font-size: 1.4rem;
  }

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

.list-news--side-panel .list-news__date {
      font-size: 1.2rem
  }
    }

.list-number-01 {
  overflow: hidden;
  margin-bottom: 20px;
  counter-reset: item;
}

.list-number-01__text-01 {
    position: relative;
    padding-left: 57px;
    color: #333;
    color: var(--black-01);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
  }

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

.list-number-01__text-01 {
      padding-left: 25px;
      font-size: 2rem
  }
    }

.list-number-01__text-01::before {
      content: counter(item);
      counter-increment: item;
      top: 0;
      left: 0;
      position: absolute;
    }

.list-number-01--fs-small-01 .list-number-01__text-01 {
    padding-left: 45px;
    font-size: 2.2rem;
    line-height: 1.32;
  }

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

.list-number-01--fs-small-01 .list-number-01__text-01 {
      padding-left: 25px;
      font-size: 1.6rem
  }
    }

.list-number-01--fs-small-02 .list-number-01__text-01 {
    padding-left: 35px;
    font-size: 1.8rem;
    line-height: 1.61;
  }

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

.list-number-01--fs-small-02 .list-number-01__text-01 {
      padding-left: 20px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.list-number-01--info .list-number-01__item {
    margin-bottom: 30px;
  }

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

.list-number-01--info .list-number-01__item {
      margin-bottom: 20px
  }
    }

.list-number-01--info .list-number-01__item:last-child {
      margin-bottom: 0;
    }

.list-number-01--info .list-number-01__text-01 {
    margin-bottom: 10px;
  }

.list-owner-reason-01__item {
    padding: 10px 15px;
    background-color: #f5f4ee;
    background-color: var(--gray-05);
    border-bottom: 1px solid #fff;
    border-bottom: 1px solid var(--white);
    text-align: center;
  }

.list-owner-reason-01__item:last-child {
      border-bottom: none;
    }

.list-owner-reason-01__text {
    font-size: 1.6rem;
  }

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

.list-owner-reason-01__text {
      font-size: 1.4rem
  }
    }

.list-owner-reason-01__title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.list-owner-reason-01__title {
      font-size: 1.6rem
  }
    }

.list-owner-reason-01__title:last-child {
      margin-bottom: 0;
    }

.list-owner-reason-01__link {
    position: relative;
    display: block;
    text-align: left;
  }

.list-owner-reason-01__link::before {
      content: '';
      top: 50%;
      right: 10px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-owner-reason-01__link::before {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

@media print, screen and (min-width: 769px) {

.list-owner-reason-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-owner-reason-02__item {
    padding: 10px 15px;
    background-color: #f5f4ee;
    background-color: var(--gray-05);
    border-bottom: 1px solid #fff;
    border-bottom: 1px solid var(--white);
    display: -webkit-flex;
    display: flex;
  }

.list-owner-reason-02__item:last-child {
      border-bottom: none;
    }

.list-owner-reason-02__item__image {
      width: 110px;
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      margin-right: 15px;
    }

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

.list-owner-reason-02__item__image {
        width: 55px
    }
      }

.list-owner-reason-02__item__detail {
      width: calc(100% - 125px);
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: start;
              justify-content: start;
      -webkit-align-items: center;
              align-items: center;
    }

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

.list-owner-reason-02__item__detail {
        width: calc(100% - 70px)
    }
      }

.list-owner-reason-02__text {
    font-size: 1.6rem;
  }

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

.list-owner-reason-02__text {
      font-size: 1.4rem
  }
    }

.list-owner-reason-02__title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.list-owner-reason-02__title {
      font-size: 1.6rem
  }
    }

.list-owner-reason-02__title:last-child {
      margin-bottom: 0;
    }

.list-owner-reason-02__link {
    position: relative;
    display: block;
    text-align: left;
  }

.list-owner-reason-02__link::before {
      content: '';
      top: 50%;
      right: 10px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-owner-reason-02__link::before {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

@media print, screen and (min-width: 769px) {

.list-owner-reason-02__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-pm-info-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px -10px 20px;
}

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

.list-pm-info-01 {
    display: block;
    margin: 0 0 20px
}
  }

.list-pm-info-01:last-child {
    margin-bottom: 0;
  }

.list-pm-info-01__item {
    width: 50%;
    margin-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }

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

.list-pm-info-01__item {
      width: 100%;
      margin-top: 15px;
      padding: 0
  }

      .list-pm-info-01__item:first-child {
        margin-top: 0;
      }
    }

.list-pm-info-01__card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

.list-pm-info-01__box-image {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75px;
    margin-right: 20px;
  }

.list-pm-info-01__image {
    width: 100%;
  }

.list-pm-info-02 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -16px -8px 20px;
}

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

.list-pm-info-02 {
    margin-top: -15px;
    margin-bottom: 20px
}
  }

.list-pm-info-02:last-child {
    margin-bottom: 0;
  }

.list-pm-info-02__item {
    width: 25%;
    margin-top: 16px;
    padding-right: 8px;
    padding-left: 8px;
  }

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

.list-pm-info-02__item {
      width: 50%;
      margin-top: 15px
  }
    }

.list-pm-info-02__card {
    display: -webkit-flex;
    display: flex;
    height: 60px;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    border-radius: 8px;
  }

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

.list-pm-info-02__card {
      border-radius: 6px
  }
    }

.list-pm-info-03 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px -10px 20px;
}

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

.list-pm-info-03 {
    display: block;
    margin: 0 0 20px
}
  }

.list-pm-info-03:last-child {
    margin-bottom: 0;
  }

.list-pm-info-03__item {
    width: 33.33%;
    margin-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }

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

.list-pm-info-03__item {
      width: 100%;
      margin-top: 15px;
      padding: 0
  }

      .list-pm-info-03__item:first-child {
        margin-top: 0;
      }
    }

.list-pm-info-03__card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    height: 100%;
    padding: 18px;
    background-color: #f5f4ee;
    background-color: var(--gray-05);
  }

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

.list-pm-info-03__card {
      height: auto
  }
    }

.list-pm-info-03__box-image {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75px;
    margin-right: 20px;
  }

.list-pm-info-03__image {
    width: 100%;
  }

.list-pm-info-04 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

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

.list-pm-info-04 {
    display: block;
    margin: 0
}
  }

.list-pm-info-04__item {
    width: 33.33%;
    padding: 10px;
  }

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

.list-pm-info-04__item {
      width: 100%;
      border-top: 1px solid #e4e4e4;
      border-top: 1px solid var(--lineGray-02)
  }

      .list-pm-info-04__item:last-child {
        border-bottom: 1px solid #e4e4e4;
        border-bottom: 1px solid var(--lineGray-02);
      }
    }

.list-pm-info-04__text {
    padding-left: 30px;
    background: url('/images/static/owner/ico_checklist_01.png') 0 0 no-repeat;
    background-size: 26px 22px;
  }

.list-point-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -15px;
  margin-right: -15px;
  margin-left: -15px;
}

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

.list-point-01 {
    margin-top: -10px;
    margin-right: -10px;
    margin-left: -10px
}
  }

.list-point-01__item {
    width: 33.333%;
    margin-top: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }

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

.list-point-01__item {
      width: 50%;
      margin-top: 10px;
      padding-right: 5px;
      padding-left: 5px
  }
    }

.list-point-01__card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    height: 100%;
    padding: 8px;
    border: 1px solid #d6d6d6;
  }

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

.list-point-01__card {
      padding: 3px
  }
    }

.list-point-01__icon {
    -webkit-flex: 0 0 65px;
            flex: 0 0 65px;
    width: 65px;
    height: 65px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.list-point-01__icon {
      -webkit-flex: 0 0 32px;
              flex: 0 0 32px;
      width: 32px;
      height: 32px
  }
    }

.list-point-01__info {
    -webkit-flex: 1;
            flex: 1;
    padding-left: 18px;
  }

.list-profile-01 {
  overflow: hidden;
  margin-top: 34px;
  padding-bottom: 8px;
}

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

.list-profile-01 {
    margin-top: 35px;
    padding-bottom: 6px
}
  }

.list-profile-01__list {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    padding: 13px 0 12px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

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

.list-profile-01__list {
      padding: 17px 0
  }
    }

.list-profile-01__title {
    overflow: hidden;
    width: 126px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.78;
  }

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

.list-profile-01__title {
      width: auto;
      padding-right: 18px;
      font-size: 1.6rem;
      line-height: 1.31
  }
    }

.list-profile-01__text {
    -webkit-flex: 1;
            flex: 1;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.78;
  }

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

.list-profile-01__text {
      font-size: 1.6rem;
      line-height: 1.31
  }
    }

.list-props-data {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -30px;
  margin-right: -15px;
  margin-left: -15px;
}

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

.list-props-data {
    display: block;
    margin: 0
}
  }

.list-props-data__item {
    margin-top: 30px;
    padding-right: 15px;
    padding-left: 15px;
  }

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

.list-props-data__item {
      width: 100%;
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #ccc;
      border-bottom: 1px solid var(--lineGray-01)
  }
    }

@media print, screen and (min-width: 769px) {

.list-props-data--col-03 .list-props-data__item {
      width: 33.33%
  }
    }

@media print, screen and (min-width: 769px) {

.list-props-data--col-04 .list-props-data__item {
      width: 25%
  }
    }

.list-question {
  position: relative;
}

.list-question::before,
  .list-question::after {
    content: '';
    display: table;
  }

.list-question::after {
    clear: both;
  }

@media print, screen and (min-width: 769px) {

.list-question {
    margin: 0 -15px
}
  }

.list-question__item {
    width: 100%;
    display: block;
  }

.list-question__item:not(:last-child) {
      margin-bottom: 10px;
    }

@media print, screen and (min-width: 769px) {

.list-question__item {
      width: 25%;
      padding: 0 15px;
      float: left
  }
    }

@media print, screen and (min-width: 769px) {
      .list-question__full .list-question__item {
        width: 100% !important;
        float: none !important;
      }
    }

.list-question__link {
    padding: 4px 4px 8px;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    border: 1px solid rgba(7, 0, 0, 0.15);
    border-radius: 6px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

@media print, screen and (min-width: 769px) {

.list-question__link {
      height: 90px;
      padding: 7px 7px 11px
  }

      .list-question__link:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }
    }

.list-question__image {
    -webkit-flex: 0 0 32px;
            flex: 0 0 32px;
    height: 32px;
    margin-right: 10px;
    background-color: #ccc;
    background-color: var(--lineGray-01);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

@media print, screen and (min-width: 769px) {

.list-question__image {
      -webkit-flex: 0 0 65px;
              flex: 0 0 65px;
      height: 65px
  }
    }

.list-question__label {
    font-size: 1.2rem;
  }

@media print, screen and (min-width: 769px) {

.list-question__label {
      font-size: 1.8rem;
      display: block
  }
    }

.list-question__sublabel {
    font-size: 1.2rem;
  }

@media print, screen and (min-width: 769px) {

.list-question__sublabel {
      font-size: 1.4rem;
      display: block
  }
    }

.list-region {
  margin-bottom: 70px;
}

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

.list-region {
    margin-bottom: 50px
}
  }

.list-region:last-child {
    margin-bottom: 0;
  }

.list-region__prefecture {
    margin-bottom: 25px;
  }

.list-region__prefecture:last-child {
      margin-bottom: 0;
    }

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

.list-region__prefecture {
      margin-bottom: 0
  }
    }

.list-region__title {
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
  }

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

.list-region__title {
      position: relative;
      margin-bottom: 0;
      padding: 15px 30px 15px 15px;
      background-color: #293357;
      background-color: var(--darkBlue-02);
      border-bottom: 1px solid #515874;
      font-size: 1.6rem;
      color: #fff;
      color: var(--white);
      text-align: left
  }

      .list-region__title::after {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 12px;
        height: 12px;
        background: url('/images/ico_plus_02.svg') no-repeat;
        background-size: 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }

      .list-region__title--is-active::after,
      .list-region__title.accordion--is-active::after {
        background: url('/images/ico_minus_02.svg') no-repeat;
        background-size: 12px;
      }
    }

.list-region__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: -10px -5px 0;
  }

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

.list-region__list {
      display: none;
      margin: 0;
      background-color: #efebe1
  }
    }

.list-region__list-item {
    width: 25%;
    margin-top: 10px;
    padding-right: 5px;
    padding-left: 5px;
  }

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

.list-region__list-item {
      width: auto;
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #f7f5f0
  }

      .list-region__list-item:last-child {
        border-bottom: none;
      }
    }

.list-region__link {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 175px;
    height: 54px;
    border-radius: 8px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
    text-align: center;
  }

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

.list-region__link {
      position: relative;
      display: block;
      width: 100%;
      height: auto;
      padding: 12px 30px 12px 15px;
      border-radius: 0;
      box-shadow: none;
      border: none;
      background-color: #efebe1;
      font-size: 1.6rem;
      text-align: left
  }

      .list-region__link::after {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 8px;
        height: 12px;
        background: url('/images/ico_arrow_right_03.svg') no-repeat;
        background-size: 8px 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }
    }

@media print, screen and (min-width: 769px) {

.list-region__link--is-disabled {
        color: #ddd;
        color: var(--gray-03)
    }
      }

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

.list-region__link--is-disabled {
        opacity: 0.7
    }
      }

@media print, screen and (min-width: 769px) {

a.list-region__link:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.list-search-result {
  margin-bottom: 10px;
}

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

.list-search-result {
    margin-right: -15px;
    margin-bottom: 20px;
    margin-left: -15px
}
  }

.list-search-result:last-child {
    margin-bottom: 0;
  }

.list-search-result__item {
    margin-bottom: 10px;
  }

.list-search-result__item:last-child {
      margin-bottom: 0;
    }

.list-search-support {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -20px;
  margin-right: -5px;
  margin-left: -5px;
}

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

.list-search-support {
    display: block;
    margin: 0
}
  }

.list-search-support__item {
    width: 50%;
    margin-top: 20px;
    padding-right: 5px;
    padding-left: 5px;
  }

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

.list-search-support__item {
      width: 100%;
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #e4e4e4
  }
    }

.list-search-support__link {
    display: -webkit-flex;
    display: flex;
    text-decoration: none;
  }

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

.list-search-support__link {
      padding-top: 15px;
      padding-bottom: 15px
  }
    }

@media print, screen and (min-width: 769px) {

.list-search-support__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-search-support__item:first-child .list-search-support__link {
    padding-top: 0;
  }

.list-search-support__image {
    display: block;
    -webkit-flex: 0 0 140px;
            flex: 0 0 140px;
    height: 105px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.list-search-support__image {
      -webkit-flex: 0 0 120px;
              flex: 0 0 120px;
      height: 90px
  }
    }

.list-search-support__detail {
    -webkit-flex: 1;
            flex: 1;
    padding-left: 20px;
    font-size: 1.6rem;
  }

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

.list-search-support__detail {
      padding-left: 12px;
      font-size: 1.4rem
  }
    }

.list-search-support__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.list-search-support__title {
      font-size: 1.4rem
  }
    }

.list-selectbox-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  margin-right: -5px;
  margin-left: -5px;
}

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

.list-selectbox-01 {
    margin-right: -3px;
    margin-left: -3px
}
  }

.list-selectbox-01__item {
    width: 210px;
    padding-right: 5px;
    padding-left: 5px;
  }

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

.list-selectbox-01__item {
      width: 50%;
      padding-right: 3px;
      padding-left: 3px
  }
    }

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

.list-selectbox-01__item .selectbox {
        height: 48px
    }
      }

.list-selectbox-01--style-01 {
    margin-right: -17px;
    margin-left: -17px;
  }

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

.list-selectbox-01--style-01 {
      margin-right: -15px;
      margin-left: -15px
  }
    }

.list-selectbox-01--style-01 .list-selectbox-01__item {
    position: relative;
    padding-right: 17px;
    padding-left: 17px;
  }

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

.list-selectbox-01--style-01 .list-selectbox-01__item {
      padding-right: 15px;
      padding-left: 15px
  }
    }

.list-selectbox-01--style-01 .list-selectbox-01__item::before {
      content: '縲�';
      position: absolute;
      top: 50%;
      right: -9px;
      color: #333;
      color: var(--black-01);
      font-size: 1.8rem;
      line-height: 1.2;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-selectbox-01--style-01 .list-selectbox-01__item::before {
        right: -8px;
        font-size: 1.6rem
    }
      }

.list-selectbox-01--style-01 .list-selectbox-01__item:last-child::before {
        content: '';
        top: inherit;
        right: inherit;
        font-size: 0;
        -webkit-transform: none;
                transform: none;
      }

.list-selectbox-02 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.list-selectbox-02__item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    width: 33.333%;
  }

.list-selectbox-02 .list-selectbox-02__selectbox {
    width: 200px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.list-selectbox-02 .list-selectbox-02__selectbox {
      width: calc(100% - 34px)
  }
    }

.list-selectbox-02__text {
    -webkit-flex: 1;
            flex: 1;
    padding-left: 9px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

.list-selectbox-02__text {
      width: 34px;
      padding-left: 7px;
      font-size: 1.6rem
  }
    }

.list-service-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

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

.list-service-01 {
    display: block
}
  }

.list-service-01--col-02 {
    margin-right: -14px;
    margin-left: -14px;
  }

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

.list-service-01--col-02 {
      margin: 0
  }
    }

.list-service-01__item {
    width: 100%;
  }

.list-service-01--col-02 .list-service-01__item {
    width: 50%;
    padding-right: 14px;
    padding-left: 14px;
  }

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

.list-service-01--col-02 .list-service-01__item {
      width: 100%;
      padding: 0
  }
    }

.list-service-01__link {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    height: 100%;
    padding: 14px 20px 14px 0;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
    font-size: 1.8rem;
  }

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

.list-service-01__link {
      display: block;
      height: auto;
      padding: 13px 27px 12px 0;
      font-size: 1.6rem
  }
    }

.list-service-01__link::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.list-service-01__link::before {
        right: 15px;
        width: 8px;
        height: 12px;
        background: url('/images/ico_arrow_right_03.svg') no-repeat;
        background-size: 8px 12px
    }
      }

@media print, screen and (min-width: 769px) {

.list-service-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.list-service-01__text {
    position: relative;
  }

.list-service-01__text--new::after {
        content: 'NEW';
        display: inline;
        position: relative;
        top: -2px;
        margin-left: 7px;
        padding: 2px 7px;
        background: #e80033;
        color: #fff;
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.2;
      }

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

.list-service-01__text--new::after {
          margin-left: 5px;
          padding: 1px 6px;
          font-size: 1rem
      }
        }

.list-service-02::before,
  .list-service-02::after {
    content: '';
    display: table;
  }

.list-service-02::after {
    clear: both;
  }

.list-service-02__item {
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
    display: block;
  }

.list-service-02__link {
    padding: 16px 0 20px;
    display: block;
    transition: opacity 0.2s ease-in-out;
  }

.list-service-02__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.list-service-02__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.list-service-02__title {
      font-size: 1.8rem
  }
    }

.list-service-02__content {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    position: relative;
  }

.list-service-02__content::after {
      width: 7.5px;
      height: 12.5px;
      content: '';
      position: absolute;
      right: 0;
      top: 45px;
      background-image: url('/images/ico_arrow_right_04.svg');
      background-repeat: no-repeat;
      background-size: 7.5px 12.5px;
      margin-top: -7.5px;
    }

@media print, screen and (min-width: 769px) {

.list-service-02__content::after {
        width: 10px;
        height: 18px;
        background-size: 10px 18px;
        margin-top: -10px
    }
      }

.list-service-02__content__image {
      width: 120px;
      height: 90px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      margin-right: 15px;
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
    }

@media print, screen and (min-width: 769px) {

.list-service-02__content__image {
        width: 140px;
        height: 105px;
        margin-right: 20px
    }
      }

.list-service-02__content__text {
      width: calc(100% - 135px);
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      font-size: 1.4rem;
      padding-right: 20px;
    }

@media print, screen and (min-width: 769px) {

.list-service-02__content__text {
        width: calc(100% - 160px);
        font-size: 1.8rem;
        padding-right: 15px
    }
      }

.list-service-02__badge {
    color: #fff;
    color: var(--white);
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    line-height: 1;
    padding: 5px 8px;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
  }

.list-service-02--step .list-service-02__item {
    border-bottom: none;
    position: relative;
  }

.list-service-02--step .list-service-02__item::after {
      width: 28px;
      height: 14px;
      content: '';
      position: absolute;
      left: 46px;
      bottom: -5px;
      background-image: url('/images/ico_arrow_down_02.svg');
      background-repeat: no-repeat;
      background-size: 28px 14px;
    }

@media print, screen and (min-width: 769px) {

.list-service-02--step .list-service-02__item::after {
        width: 38px;
        height: 19px;
        background-size: 38px 19px;
        left: 51px;
        bottom: -9px
    }
      }

.list-service-02--step .list-service-02__item:last-child::after {
        content: none;
      }

.list-staff-01 {
  overflow: hidden;
}

.list-staff-01__list {
    overflow: hidden;
    padding: 24px 0 25px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

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

.list-staff-01__list {
      padding: 18px 0 16px
  }
    }

.list-staff-01__list:first-child {
      padding: 0 0 25px;
    }

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

.list-staff-01__list:first-child {
        padding: 0 0 16px
    }
      }

.list-staff-01__list:last-child {
      border-bottom: none;
    }

.list-step-01 {
  overflow: hidden;
  margin-bottom: 60px;
}

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

.list-step-01 {
    margin-bottom: 30px
}
  }

.list-step-01__item {
    overflow: hidden;
    margin-bottom: 30px;
  }

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

.list-step-01__item {
      margin-bottom: 20px
  }
    }

.list-step-01__item:last-child {
      margin-bottom: 0;
    }

.list-video-01 {
  overflow: hidden;
}

.list-video-01__item {
    margin-bottom: 52px;
  }

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

.list-video-01__item {
      margin-bottom: 25px
  }
    }

.list-video-01__item:last-child {
      margin-bottom: 0;
    }

.map-region {
  position: relative;
  height: 556px;
  margin-bottom: 30px;
  background: url('/images/img_map_01.png') top center no-repeat;
}

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

.map-region {
    height: auto;
    margin-bottom: 25px;
    background: none
}
  }

.map-region:last-child {
    margin-bottom: 0;
  }

.map-region__prefecture {
    position: absolute;
  }

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

.map-region__prefecture {
      position: static
  }
    }

@media print, screen and (min-width: 769px) {
      .map-region__prefecture--hokkaido {
        top: 102px;
        right: 0;
        width: 218px;
      }

      .map-region__prefecture--kanto {
        top: 295px;
        right: 0;
        width: 218px;
      }

      .map-region__prefecture--koshinetsu {
        top: 48px;
        left: 230px;
        width: 218px;
      }

      .map-region__prefecture--tokai {
        right: 230px;
        bottom: 70px;
        width: 160px;
      }

      .map-region__prefecture--kansai {
        top: 48px;
        left: 0;
        width: 218px;
      }

      .map-region__prefecture--chougoku {
        top: 180px;
        left: 0;
        width: 310px;
      }

      .map-region__prefecture--kyushu-okinawa {
        bottom: 0;
        left: 20px;
        width: 310px;
      }
    }

.map-region__title {
    position: relative;
    margin-bottom: 8px;
    font-size: 2rem;
    color: #999;
    color: var(--gray-02);
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

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

.map-region__title {
      margin-bottom: 0;
      padding: 15px 30px 15px 15px;
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
      border-bottom: 1px solid #515874;
      font-size: 1.6rem;
      color: #fff;
      color: var(--white);
      text-align: left
  }

      .map-region__title::after {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 12px;
        height: 12px;
        background: url('/images/ico_plus_02.svg') no-repeat;
        background-size: 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }

      .map-region__title--is-active::after,
      .map-region__title.accordion--is-active::after {
        background: url('/images/ico_minus_02.svg') no-repeat;
        background-size: 12px;
      }
    }

@media print, screen and (min-width: 769px) {

.map-region__city {
      padding: 15px 0;
      border-radius: 8px;
      border: 1px solid #999;
      border: 1px solid var(--gray-02);
      background-color: #fff;
      background-color: var(--white);
      box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
      font-size: 1.8rem;
      text-align: center
  }
    }

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

.map-region__city {
      display: none;
      background-color: #efebe1;
      font-size: 1.3rem;
      text-align: left
  }
    }

.map-region__city-row {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    margin-bottom: 10px;
  }

.map-region__city-row:last-child {
      margin-bottom: 0;
    }

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

.map-region__city-row {
      display: block;
      margin-bottom: 0
  }
    }

.map-region__link {
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
    color: #333;
    color: var(--black-01);
    border-left: 1px solid #e6e6e6;
    line-height: 1;
  }

.map-region__link:first-child {
      border-left: none;
    }

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

.map-region__link {
      display: block;
      padding: 15px 30px 15px 15px;
      border-bottom: 1px solid #f7f5f0;
      background-color: #efebe1;
      font-size: 1.6rem;
      color: #424242;
      color: var(--mainBlack)
  }

      .map-region__link::after {
        top: 50%;
        right: 15px;
        position: absolute;
        width: 8px;
        height: 12px;
        background: url('/images/ico_arrow_right_03.svg') no-repeat;
        background-size: 8px 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: '';
      }
    }

.map-region__link--is-disabled {
      opacity: 0.2;
    }

@media print, screen and (min-width: 769px) {

a.map-region__link:hover {
      opacity: 0.2;
      opacity: var(--opacity)
  }
    }

.map-search-keyword {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 65px;
}

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

.map-search-keyword {
    display: block;
    margin-bottom: 30px
}
  }

.map-search-keyword:last-child {
    margin-bottom: 0;
  }

.map-search-keyword__title {
    -webkit-flex: 0 0 180px;
            flex: 0 0 180px;
    font-size: 2rem;
    color: #333;
    color: var(--black-01);
    font-weight: 700;
  }

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

.map-search-keyword__title {
      display: none
  }
    }

.map-search-keyword__input {
    -webkit-flex: 1;
            flex: 1;
  }

.map-search-submit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}

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

.map-search-submit {
    display: block
}
  }

.map-search-submit__title {
    -webkit-flex: 1;
            flex: 1;
  }

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

.map-search-submit__title {
      margin-bottom: 25px
  }
    }

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

.map-search-submit .title-icon__text-icon {
      display: block;
      text-align: left
  }
    }

.map-search-submit .title-icon__text-small {
    display: block;
    margin-top: 8px;
    padding-left: 55px;
  }

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

.map-search-submit .title-icon__text-small {
      padding-left: 0;
      text-align: left
  }
    }

.map-search-submit__submit {
    -webkit-flex: 0 0 280px;
            flex: 0 0 280px;
  }

.map-search-submit__button {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 30px;
  }

.map-search-submit__button::after {
      top: 50%;
      right: 14px;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_01.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.map-search-submit__button::after {
        display: none
    }
      }

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

.map-search-submit__button {
      max-width: 284px;
      margin-right: auto;
      margin-left: auto;
      padding-right: 20px
  }
    }

.member-quote {
  display: -webkit-flex;
  display: flex;
}

.member-quote__avatar {
    width: 110px;
    height: 110px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 25px;
  }

@media print, screen and (min-width: 769px) {

.member-quote__avatar {
      width: 140px;
      height: 140px;
      margin-right: 30px
  }
    }

.member-quote__avatar__image {
      width: 110px;
      height: 110px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
    }

@media print, screen and (min-width: 769px) {

.member-quote__avatar__image {
        width: 140px;
        height: 140px
    }
      }

.member-quote__quote {
    width: calc(100% - 135px);
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

@media print, screen and (min-width: 769px) {

.member-quote__quote {
      width: calc(100% - 170px)
  }
    }

.member-quote__quote__content {
      background-color: #fff5e5;
      background-color: var(--lightOrange);
      border-radius: 8px;
      font-weight: 700;
      padding: 12px 15px;
      margin-bottom: 5px;
      font-size: 1.4rem;
      position: relative;
    }

@media print, screen and (min-width: 769px) {

.member-quote__quote__content {
        padding: 18px;
        font-size: 1.8rem
    }
      }

.member-quote__quote__content::before {
        content: '';
        position: absolute;
        left: -8.5px;
        top: 22px;
        width: 17px;
        height: 17px;
        background-color: #fff5e5;
        background-color: var(--lightOrange);
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
      }

@media print, screen and (min-width: 769px) {

.member-quote__quote__content::before {
          left: -12.5px;
          top: 50%;
          width: 25px;
          height: 25px;
          margin-top: -12.5px
      }
        }

.member-quote__quote__position {
      text-align: right;
      font-size: 1.4rem;
    }

@media print, screen and (min-width: 769px) {

.member-quote__quote__position {
        font-size: 1.8rem
    }
      }

.modal-main {
  overflow: auto;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 20;
  width: 100%;
  height: 100%;
  min-width: 1160px;
  min-width: var(--contentWidth);
  background-color: rgba(0, 0, 0, 0.6);

  /* doiuse-disable transforms3d */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* doiuse-enable transforms3d */

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

.modal-main {
    min-width: 0;
    padding-right: 60px
}
  }

.modal-main__content {
    position: relative;
    width: 1100px;
    margin-right: auto;
    margin-left: auto;
  }

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

.modal-main__content {
      width: 100%;
      min-height: 100%;
      background: #fff;
      background: var(--white)
  }
    }

.modal-main__in {
    margin-top: 25px;
    padding: 80px 100px;
    background-color: #fff;
    background-color: var(--white);
  }

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

.modal-main__in {
      margin-top: 0;
      padding: 0
  }
    }

.modal-main__btn-close {
    top: 25px;
    left: calc(50% + 565px);
    position: fixed;
    z-index: 2;
    padding-top: 36px;
    background: url('/images/ico_cross_01.svg') top center no-repeat;
    background-size: 28px;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    color: var(--white);
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
  }

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

.modal-main__btn-close {
      left: auto;
      top: 16px;
      right: 30px;
      background-size: 18px;
      font-size: 0.9rem;
      -webkit-transform: translateX(50%);
              transform: translateX(50%)
  }
    }

@media print, screen and (min-width: 769px) {

.modal-main__btn-close:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.modal-props-slider {
  overflow: auto;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);

  /* doiuse-disable transforms3d */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* doiuse-enable transforms3d */

.modal-props-slider__btn-close {
    top: 18px;
    right: 18px;
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    background: url('/images/ico_cross_01.svg') center no-repeat;
    background-size: 18px;
    cursor: pointer;
  }

.modal-props-slider__label {
    top: 20px;
    left: 30px;
    position: absolute;
    display: -webkit-flex;
    display: flex;
    color: #fff;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
  }

.modal-props-slider__label-count {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

.modal-props-slider__label-name {
    -webkit-flex: 1;
            flex: 1;
    overflow: hidden;
    display: -webkit-box;
    padding-right: 40px;
    padding-left: 18px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;

    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical;
  }

.modal-props-slider__content {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding-top: 18px;
    padding-right: 30px;
    padding-left: 30px;
  }

.modal-props-slider__in {
    margin-top: 60px;
  }

.modal-props-slider__slider {
    position: relative;
  }

.modal-props-slider__figure {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 460px;
  }

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

.modal-props-slider__figure {
      height: 350px
  }
    }

.modal-props-slider__image {
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 0;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

.modal-props-slider__name {
    display: none;
  }

.modal-props-slider__caption {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
  }

.modal-props-slider .slick-arrow {
    overflow: hidden;
    top: 206px;
    left: -28px;
    position: absolute;
    z-index: 2;
    width: 28px;
    height: 48px;
    background: url('/images/ico_arrow_right_06.svg') center no-repeat;
    background-size: 14px 24px;
    text-indent: -999px;
    opacity: 0.8;
  }

.modal-props-slider .slick-arrow.slick-next {
      left: auto;
      right: -28px;
    }

.modal-props-slider .slick-arrow.slick-prev {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }

.modal-props-slider .slick-arrow.slick-disabled {
      display: none !important;
    }

.nav-content-accordion {
  background-color: #f8f7f3;
  background-color: var(--mainBg);
  padding: 0 15px;
  margin: 0 -15px;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.nav-content-accordion {
    padding: 30px 32px;
    margin: 0
}
  }

.nav-content-accordion__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

.nav-content-accordion__col {
    max-width: 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 20px 0;
  }

.nav-content-accordion__col:not(:last-child) {
      border-bottom: 1px solid #e4e4e4;
      border-bottom: 1px solid var(--lineGray-02);
    }

@media print, screen and (min-width: 769px) {

.nav-content-accordion__col {
      -webkit-flex-basis: 0;
              flex-basis: 0;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      padding: 0;
      border-bottom: none !important
  }
    }

.nav-global-sub {
  top: 100%;
  left: 0;
  position: absolute;
  z-index: 10;
  display: none;
  width: 100%;
  background-color: #f8f7f3;
  background-color: var(--mainBg);
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--lineGray-01);
}

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

.nav-global-sub {
    position: static;
    background-color: #ebe6da;
    border-top: none;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01)
}
  }

.nav-global-sub__in {
    position: relative;
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 55px 30px 65px;
  }

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

.nav-global-sub__in {
      width: auto;
      padding: 26px 15px
  }
    }

/*
.nav-global-sub__section {
    margin-bottom: 35px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
  }
*/
@media only screen and (max-width: 768px) {

.nav-global-sub__section {
      margin-bottom: 40px;
      padding-bottom: 0;
      border: none
  }
    }

/*
.nav-global-sub__section:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none;
    }
*/
.nav-global-sub__title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
  }

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

.nav-global-sub__title {
      margin-bottom: 15px;
      font-size: 2rem;
      text-align: center
  }
    }

.nav-global-sub__column {
    display: -webkit-flex;
    display: flex;
  }

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

.nav-global-sub__column {
      display: block
  }
    }

.nav-global-sub__column-main {
    -webkit-flex: 1;
            flex: 1;
    padding-right: 30px;
  }

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

.nav-global-sub__column-main {
      padding-right: 0
  }
    }

.nav-global-sub__column-side {
    -webkit-flex: 0 0 280px;
            flex: 0 0 280px;
    width: 280px;
  }

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

.nav-global-sub__column-side {
      width: auto
  }
    }

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

.nav-global-sub__column--sp-swap {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column-reverse;
              flex-direction: column-reverse
  }
    }

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

.nav-global-sub__column--sp-swap .nav-global-sub__column-main {
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto
  }
    }

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

.nav-global-sub__column--sp-swap .nav-global-sub__column-side {
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      margin-bottom: 35px
  }
    }

/*
.nav-global-sub__list-button {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: -10px;
    margin-right: -10px;
    margin-left: -10px;
  }

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

.nav-global-sub__list-button {
      margin: -8px -8px 28px
  }
    }
*/
.nav-global-sub__list-button-item {
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    /*flexbox*/
      display:-webkit-box;
      display:-moz-box;
      display:-webkit-flexbox;
      display:-moz-flexbox;
      display:-ms-flexbox;
      display:-webkit-flex;
      display:-moz-flex;
      display:flex;
  }

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

.nav-global-sub__list-button-item {
      width: 50%;
      margin-top: 8px;
      padding-right: 8px;
      padding-left: 8px;
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__list-button--col-02 .nav-global-sub__list-button-item {
      width: 50%
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__list-button--col-03 .nav-global-sub__list-button-item {
      width: 33.33%
  }
    }


.nav-global-sub__button-link {
  /* 菫ｮ豁｣蜑�
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 2rem;
    color: #333;
    color: var(--black-01);
    letter-spacing: -0.5px;
    text-align: center;
    */
    /* 竊薙�懊ち繝ｳ蜀�譁�蟄嶺ｽ咲ｽｮ菫ｮ豁｣蠕� 201090628竊� */
    /*
    display:-webkit-box;
    display:-moz-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    width: 100%;
    min-height: 100%;
    padding: 12px 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 2rem;
    color: #333;
    color: var(--black-01);
    letter-spacing: -0.5px;
    text-align: center;
    */
    /*flexbox險ｭ螳�*/
    /*
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    */
  }

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

.nav-global-sub__button-link {
      padding: 10px;
      border-radius: 6px;
      font-size: 1.6rem;
      color: #00b7e1;
      color: var(--lightBlue-01)
  }
    }
*/
.nav-global-sub__button-link--narrow {
      letter-spacing: -1.6px;
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__button-link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.nav-global-sub__list-link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -14px;
    margin-left: -14px;
  }

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

.nav-global-sub__list-link {
      display: block;
      margin: 0
  }
    }

.nav-global-sub__list-link-item {
    width: 50%;
    padding-right: 14px;
    padding-left: 14px;
  }

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

.nav-global-sub__list-link-item {
      width: auto;
      padding: 0
  }
    }

.nav-global-sub__text-link {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-right: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
  }

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

.nav-global-sub__text-link {
      padding-top: 11px;
      padding-right: 15px;
      padding-bottom: 11px;
      border-color: #f5f4ee;
      border-color: var(--gray-05);
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__text-link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.nav-global-sub__text-link::after {
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.nav-global-sub__text-link::after {
        right: 0;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.nav-global-sub__link-more {
    margin-top: 15px;
  }

.nav-global {
  position: relative;
  z-index: 3;
  background-color: #fff;
  background-color: var(--white);
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--lineGray-01);
}

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

.nav-global {
    border-bottom: none
}
  }

.nav-global__in {
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
    padding: var(--contentPadding);
  }

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

.nav-global__in {
      width: auto;
      padding: 0
  }
    }

.nav-global__list-nav {
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }

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

.nav-global__list-nav {
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      border-right: none
  }
    }

.nav-global__list-item {
    width: 20%;
    border-left: 1px solid #ccc;
    border-left: 1px solid var(--lineGray-01);
  }

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

.nav-global__list-item {
      width: 50%;
      border-bottom: 1px solid #ccc;
      border-bottom: 1px solid var(--lineGray-01)
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global__list-item--border-pc {
        border-right: 1px solid #ccc;
        border-right: 1px solid var(--lineGray-01)
    }
      }

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

.nav-global__list-sub-item {
      width: 100%
  }
    }

.nav-global__link {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
    height: 38px;
    color: #333;
    color: var(--black-01);
    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
  }

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

.nav-global__link {
      height: 49px;
      font-size: 1.6rem;
      font-weight: 700;
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
      color: #fff;
      color: var(--white)
  }
    }

/* &:hover {
      @media (--viewport-pc) {
        color: var(--white) var(--darkBlue-01);
      }
    } */

.nav-global__link--is-active {
      color: #fff;
      color: var(--white);
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
    }

@media print, screen and (min-width: 769px) {

.nav-global__link--is-active {
        color: #fff;
        color: var(--white);
        background-color: #1f2646;
        background-color: var(--darkBlue-01)
    }
      }

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

.nav-global__link::after {
        width: 8px;
        height: 12px;
        top: 50%;
        right: 15px;
        position: absolute;
        background: url('/images/ico_arrow_right_01.svg') no-repeat;
        background-size: 8px 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: ''
    }
      }

.nav-global__link--icon-plus::after {
      width: 12px;
      height: 12px;
      background: url('/images/ico_plus_02.svg') no-repeat;
      background-size: 12px;
    }

.nav-global__link--icon-minus::after {
      width: 12px;
      height: 12px;
      background: url('/images/ico_minus_02.svg') no-repeat;
      background-size: 12px;
    }

.nav-menu__section {
    overflow: hidden;
    margin-bottom: 50px;
  }

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

.nav-menu__section {
      margin-bottom: 0
  }
    }

.nav-menu__section:last-child {
      margin-bottom: 0;
    }

.nav-menu__list-column {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -15px !important;
    margin-left: -15px !important;
    width: 930px;
  }

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

.nav-menu__list-column {
      display: block;
      margin: 0 !important;
      width: auto;
  }
    }

.nav-menu__list-item {
    width: 33.33%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 !important;
  }

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

.nav-menu__list-item {
      width: auto;
      padding: 0
  }
    }

.nav-menu__list-item-two-thirds {
    width: 66.66%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 !important;
  }

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

.nav-menu__list-item-two-thirds {
      width: auto;
      padding: 0;
  }
    }

.nav-menu__list-column--full .nav-menu__list-item {
    width: 100%;
  }

.nav-menu__link {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-right: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
  }

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

.nav-menu__link {
      padding: 12px 25px 12px 15px;
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.nav-menu__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.nav-menu__link::after {
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

.nav-menu__link::after {
        right: 15px;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

@media print, screen and (min-width: 769px) {

.nav-menu__link--narrow {
        letter-spacing: -1px
    }
      }

.nav-menu__icon {
    position: relative;
    display: inline-block;
    padding-left: 35px;
  }

.nav-menu__icon--mansion {
      background: url('/images/ico_mansion_01.svg') left 0 no-repeat;
      background-size: 18px 22px;
    }

.nav-menu__icon--house {
      background: url('/images/ico_house_01.svg') left 0 no-repeat;
      background-size: 25px 20px;
    }

.nav-menu__icon--park {
      background: url('/images/ico_park_01.svg') left 0 no-repeat;
      background-size: 26px 25px;
    }

.nav-menu__icon--construct {
      background: url('/images/ico_mansion_02.svg') left 0 no-repeat;
      background-size: 18px 22px;
    }

.nav-menu__title-link {
    position: relative;
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 2px solid #1f2646;
    border-bottom: 2px solid var(--darkBlue-01);
    font-size: 2.2rem;
    color: #1f2646;
    color: var(--darkBlue-01);
    font-weight: 700;
  }

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

.nav-menu__title-link {
      padding: 12px 15px;
      border: none;
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
      font-size: 1.6rem;
      color: #fff !important;
      color: var(--white) !important
  }
    }

a.nav-menu__title-link::after {
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background-image: url('/images/ico_arrow_right_04.svg');
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

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

a.nav-menu__title-link::after {
        right: 15px;
        width: 8px;
        height: 12px;
        background-image: url('/images/ico_arrow_right_01.svg');
        background-size: 8px 12px
    }
      }

.nav-menu__text-small {
    padding-left: 20px;
    font-size: 1.6rem;
    color: var(--black-02);
    color: var(--black-02);
  }

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

.nav-menu__text-small {
      display: block;
      padding-top: 4px;
      padding-left: 0;
      font-size: 1.3rem;
      color: #999;
      color: var(--gray-02)
  }
    }

.nav-section-01 {
  height: 50px;
  padding: 0 15px;
  margin: 30px -15px;
  color: #fff;
  color: var(--white);
  background-color: #293357;
  background-color: var(--darkBlue-02);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: start;
          justify-content: start;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}

@media print, screen and (min-width: 769px) {

.nav-section-01 {
    margin-left: auto;
    margin-right: auto
}
  }

.nav-section-01__title {
    font-size: 1.6rem;
    font-weight: 700;
  }

.nav-section-01__hint {
    font-size: 1.4rem;
    font-weight: 400;
    margin-left: 5px;
    display: inline-block;
  }

.nav-section-01--accordion {
    margin-bottom: 0;
    translate: all 0.18s ease-in-out;
    overflow: hidden;
    cursor: pointer;
  }

.nav-section-01--accordion::before,
    .nav-section-01--accordion::after {
      content: '';
      width: 18px;
      height: 3px;
      background-color: #a9adbc;
      background-color: var(--lightBlue-03);
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: rotate(0deg) translateY(-50%);
              transform: rotate(0deg) translateY(-50%);
    }

.nav-section-01--accordion::before {
      right: 21px;
      top: calc(50% - 1.5px);
      -webkit-transform: rotate(90deg) translateY(-50%);
              transform: rotate(90deg) translateY(-50%);
    }

.nav-section-01--accordion.is-open::before {
        content: none;
      }

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

.nav-section-01--accordion-02 {
      margin-bottom: 27px
  }
    }

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

.nav-section-01--accordion-02.is-open {
        margin-bottom: 0
    }
      }

.overlay-nav-global {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.pagetop-btn {
  display: none;
}

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

.pagetop-btn {
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: #0aaadc;
    background-color: var(--lightBlue-02);
    text-align: center
}
  }

.pagetop-btn__text {
    display: inline-block;
    padding-right: 22px;
    background: url('/images/ico_pagetop.svg') right center no-repeat;
    background-size: 21px 11px;
    font-size: 1.5rem;
    color: #fff;
    color: var(--white);
  }

.post-image-01 {
  width: 100%;
  position: relative;
}

.post-image-01::before,
  .post-image-01::after {
    content: '';
    display: table;
  }

.post-image-01::after {
    clear: both;
  }

.post-image-01__image {
    width: 100%;
    height: 180px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: 15px;
  }

@media print, screen and (min-width: 769px) {

.post-image-01__image {
      height: 380px;
      margin-bottom: 30px
  }
    }

.post {
  position: relative;
}

.post__title,
  .post__content,
  .post__footer {
    position: relative;
  }

.post__title::before,
    .post__title::after,
    .post__content::before,
    .post__content::after,
    .post__footer::before,
    .post__footer::after {
      content: '';
      display: table;
    }

.post__title::after, .post__content::after, .post__footer::after {
      clear: both;
    }

.post__footer {
    margin-top: 20px;
  }

@media print, screen and (min-width: 769px) {

.post__footer {
      margin-top: 50px
  }
    }

.post__footer__box--pagetop {
      text-align: right;
      margin-top: 15px;
      display: block;
    }

.post__footer__box--pagetop:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

.post__footer__box--pagetop__link {
        padding: 0 0 0 18px;
        position: relative;
      }

.post__footer__box--pagetop__link::after {
          content: '';
          position: absolute;
          left: 0;
          width: 10px;
          height: 18px;
          background-image: url('/images/ico_arrow_right_03.svg');
          background-size: 10px 18px;
          top: 50%;
          margin-top: -9px;
        }

.post__footer__page--list {
      padding: 0;
      border-top: 1px solid #ccc;
      border-top: 1px solid var(--lineGray-01);
      border-bottom: 1px solid #ccc;
      border-bottom: 1px solid var(--lineGray-01);
    }

.post__footer__page--list__item {
        padding: 15px 0;
      }

.post__footer__page--list__item:first-child {
          text-align: left;
          border-bottom: 1px solid #ccc;
          border-bottom: 1px solid var(--lineGray-01);
        }

.post__footer__page--list__item:last-child {
          text-align: right;
        }

.post__footer__page--list__item:first-child .post__footer__page--list__link::after {
          -webkit-transform: scaleX(-1);
                  transform: scaleX(-1);
        }

.post__footer__page--list__item:last-child .post__footer__page--list__link {
        padding: 0 18px 0 0;
      }

.post__footer__page--list__item:last-child .post__footer__page--list__link::after {
          left: auto;
          right: 0;
        }

.post__footer__sns {
      position: relative;
    }

.post__footer__sns::before,
      .post__footer__sns::after {
        content: '';
        display: table;
      }

.post__footer__sns::after {
        clear: both;
      }

.post__footer__sns__date {
        width: 100%;
        font-size: 1.2rem;
        color: #999;
        color: var(--gray-02);
        text-align: right;
        line-height: 28px;
        float: left;
      }

@media print, screen and (min-width: 769px) {

.post__footer__sns__date {
          font-size: 1.6rem;
          line-height: 28px
      }
        }

.post__footer__tags {
      margin-top: 20px;
    }

.post h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.post h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
  }

.post ol {
    padding-left: 30px;
    list-style: decimal;
  }

@media print, screen and (min-width: 769px) {

.post ol {
      padding-left: 45px
  }
    }

.post ul::before,
    .post ul::after {
      content: '';
      display: table;
    }

.post ul::after {
      clear: both;
    }

.post ul li {
      position: relative;
    }

.post ul a {
      padding: 0 0 0 18px;
      position: relative;
      cursor: pointer;
    }

.post ul a:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

.post ul a::after {
        content: '';
        position: absolute;
        left: 0;
        width: 10px;
        height: 18px;
        background-image: url('/images/ico_arrow_right_03.svg');
        background-size: 10px 18px;
        top: 50%;
        margin-top: -9px;
      }

.post__end {
    font-size: 1.6rem;
    text-align: center;
    width: calc(100% - 65px);
    padding: 11px 0 13px;
    margin: 30px auto 0;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    border: 1px solid rgba(7, 0, 0, 0.15);
    border-radius: 6px;
    display: block;
  }

.props-detail-contact-sp {
  margin-bottom: 25px;
}

.props-detail-contact-sp:last-child {
    margin-bottom: 0;
  }

.props-detail-contact-sp__detail {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }

.props-detail-contact-sp__detail-title {
    color: #666;
    color: var(--gray-06);
  }

.props-detail-contact-sp__link {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
  }

.props-detail-contact-sp__link-text {
    display: block;
  }

.props-detail-contact-sp__icon-tel {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-weight: 700;
    font-style: normal;
    font-size: 1.6rem;
  }

.props-detail-contact-sp__icon-tel::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 20px;
      height: 20px;
      background: url('/images/ico_phone_02.svg') no-repeat;
      background-size: 20px;
      content: '';
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

.props-detail-contact-sp__number {
    color: inherit;
    text-decoration: underline;
  }

.props-detail-contact-sp__contact-note {
    margin-top: 6px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #797979;
    color: var(--gray-01);
  }

.props-detail-contact-sp__contact-note:last-child {
      margin-bottom: 0;
    }

.props-detail-contact-sp__contact-note--right {
      text-align: right;
    }

.radio-btn {
  position: relative;
  display: block;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

@media print, screen and (min-width: 769px) {

.radio-btn:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.radio-btn__input {
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.radio-btn__text {
    overflow: hidden;
    display: block;
    padding: 15px 20px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    color: #333;
    color: var(--black-01);
  }

.radio-btn__icon {
    position: relative;
    display: block;
    padding-left: 35px;
  }

.radio-btn__icon::before {
      top: 0;
      left: 0;
      position: absolute;
      z-index: 1;
      width: 24px;
      height: 24px;
      background: url('/images/ico_radio_01.svg') no-repeat;
      background-size: 24px;
      content: '';
    }

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

.radio-btn__icon::before {
        width: 20px;
        height: 20px;
        background-size: 20px
    }
      }

.radio-btn__input:checked + .radio-btn__text {
    border-color: #ddd;
    border-color: var(--gray-03);
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    color: #fff;
    color: var(--white);
    font-weight: 700;
  }

.radio-btn__input:checked + .radio-btn__text .radio-btn__icon::before {
    background: url('/images/ico_radio_02.svg') no-repeat;
    background-size: 24px;
  }

.rangeSlider,
.rangeSlider__fill {
  display: block;
  border-radius: 3px;
}

.rangeSlider {
  position: relative;
  background-color: #ccc;
  background-color: var(--lineGray-01);
}

.rangeSlider__horizontal {
  height: 6px;
  width: 100%;
}

.rangeSlider__vertical {
  height: 100%;
  width: 6px;
}

.rangeSlider--disabled {
  opacity: 0.4;
}

.rangeSlider__fill {
  background-color: #ffa000;
  background-color: var(--mainOrange);
  position: absolute;
}

.rangeSlider__fill__horizontal {
  height: 100%;
  top: 0;
  left: 0;
}

.rangeSlider__fill__vertical {
  width: 100%;
  bottom: 0;
  left: 0;
}

.rangeSlider__handle {
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: #ffa000;
  background-color: var(--mainOrange);
  border-radius: 50%;
}

.rangeSlider__handle__horizontal {
  top: -7px;
}

.rangeSlider__handle__vertical {
  left: -10px;
  bottom: 0;
}

.rangeSlider__handle:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
}

input[type='range']:focus + .rangeSlider .rangeSlider__handle {
  box-shadow: 0 0 8px rgba(142, 68, 173, 0.9);
}

.rangeSlider__buffer {
  position: absolute;
  top: 3px;
  height: 14px;
  background: #2c3e50;
  border-radius: 10px;
}

.result-inquiry {
  margin-bottom: 8px;
}

.result-inquiry--is-bottom {
    margin-bottom: 30px;
  }

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

.result-inquiry {
    display: none
}
  }

.result-inquiry:last-child {
    margin-bottom: 0;
  }

.result-inquiry__in {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    padding: 15px 30px;
    background-color: #f1f0e8;
    font-size: 1.8rem;
  }

.result-inquiry__button-column {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }

.result-inquiry__button {
    margin-left: 15px;
  }

.result-inquiry__label {
    position: relative;
    display: inline-block;
  }

.result-inquiry__checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.result-inquiry__label-text {
    position: relative;
    display: block;
    padding-left: 30px;
    cursor: pointer;
  }

.result-inquiry__label-text::before {
      top: 2px;
      left: 0;
      position: absolute;
      width: 20px;
      height: 20px;
      background: url('/images/icon_checkbox_01_no.svg') no-repeat;
      background-size: 20px;
      content: '';
    }

.result-inquiry__checkbox:checked + .result-inquiry__label-text::before {
    background: url('/images/icon_checkbox_01_on.svg') no-repeat;
    background-size: 20px;
  }

.result-pager {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 50px;
  font-size: 1.8rem;
}

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

.result-pager {
    margin-bottom: 30px;
    font-size: 1.6rem
}
  }

.result-pager:last-child {
    margin-bottom: 0;
  }

.result-pager__total {
    font-weight: 700;
    color: #333;
    color: var(--black-01);
  }

.result-pager__pager-list {
    display: -webkit-flex;
    display: flex;
  }

.result-pager__pager-item {
    padding-right: 5px;
    padding-left: 5px;
  }

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

.result-pager__pager-item {
      display: none
  }
    }

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

.result-pager__pager-item--direction {
        display: block;
        padding-right: 0;
        padding-left: 10px
    }

        .result-pager__pager-item--direction:first-child {
          padding-left: 0;
        }
      }

.result-pager__link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-radius: 8px;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
  }

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

.result-pager__link {
      height: 48px
  }
    }

.result-pager__link--large {
      width: 80px;
    }

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

.result-pager__link--large {
        display: -webkit-flex;
        display: flex;
        width: 70px;
        height: 48px
    }
      }

.result-pager__link--is-active {
      background-color: #00b7e1;
      background-color: var(--lightBlue-01);
      border-color: #00b7e1;
      border-color: var(--lightBlue-01);
      color: #fff;
      color: var(--white);
      font-weight: 700;
    }

.result-pager__link--is-disabled {
      color: #999;
      color: var(--gray-02);
    }

@media print, screen and (min-width: 769px) {

a.result-pager__link:hover {
      opacity: 0.7;
      opacity: var(--opacity)
  }
    }

.result-view-option {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 15px;
}

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

.result-view-option {
    -webkit-align-items: center;
            align-items: center
}
  }

.result-view-option__result {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
  }

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

.result-view-option__result {
      font-size: 1.4rem
  }
    }

.result-view-option__result-number {
    padding-left: 5px;
    color: #eb0f32;
    color: var(--red-01);
    font-size: 2.6rem;
  }

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

.result-view-option__result-number {
      font-size: 1.8rem
  }
    }

.result-view-option__option {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

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

.result-view-option__option {
      -webkit-flex: 1;
              flex: 1;
      max-width: 200px;
      margin-left: 10px
  }
    }

.result-view-option__sort {
    width: 160px;
    margin-left: 10px;
  }

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

.result-view-option__sort {
      width: 100%;
      margin-left: 0
  }
    }

.search-checkbox-01 {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  color: #333;
  color: var(--black-01);
  font-size: 0;

  /* &__text {
    display: inline-block;
    padding-left: 30px;
    background: resolve('icon_checkbox_01_no.svg') no-repeat left 2px;
    background-size: 20px 20px;
    vertical-align: top;
    color: var(--black-01);
    font-size: 1.6rem;

    @media (--viewport-sp) {
      padding-left: 24px;
      background: resolve('icon_checkbox_01_no.svg') no-repeat left 5px;
      background-size: 15px 15px;
    }
  }

  &__input:checked + &__text {
    background: resolve('icon_checkbox_01_on.svg') no-repeat left 2px;
    background-size: 20px 20px;

    @media (--viewport-sp) {
      background: resolve('icon_checkbox_01_on.svg') no-repeat left 5px;
      background-size: 15px 15px;
    }
  } */
}

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

.search-checkbox-01 {
    display: block;
    position: relative;
    padding: 12px 30px 12px 15px
}

    .search-checkbox-01::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 15px;
      width: 8px;
      height: 12px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 8px 12px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }
  }

.search-checkbox-01__label {
    overflow: hidden;
    float: left;
    margin-right: 10px;
    padding-top: 2px;
    cursor: pointer;
  }

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

.search-checkbox-01__label {
      margin-right: 9px;
      padding-top: 5px
  }
    }

.search-checkbox-01__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

  input[class^="search-checkbox-01__input"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.search-checkbox-01__icon {
    display: block;
    width: 20px;
    height: 20px;
    background: url('/images/icon_checkbox_01_no.svg') no-repeat left top;
    background-size: 20px 20px;
    cursor: pointer;
  }

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

.search-checkbox-01__icon {
      width: 15px;
      height: 15px;
      background: url('/images/icon_checkbox_01_no.svg') no-repeat left top;
      background-size: 15px 15px
  }
    }

.search-checkbox-01__input:checked + .search-checkbox-01__icon {
    background: url('/images/icon_checkbox_01_on.svg') no-repeat left top;
    background-size: 20px 20px;
  }

  input[class^="search-checkbox-01__input"]:checked + .search-checkbox-01__icon {
    background: url('/images/icon_checkbox_01_on.svg') no-repeat left top;
    background-size: 20px 20px;
  }

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

.search-checkbox-01__input:checked + .search-checkbox-01__icon {
      background: url('/images/icon_checkbox_01_on.svg') no-repeat left top;
      background-size: 15px 15px
  }
    }

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

input[class^="search-checkbox-01__input"]:checked + .search-checkbox-01__icon {
      background: url('/images/icon_checkbox_01_on.svg') no-repeat left top;
      background-size: 15px 15px
  }
    }

.search-checkbox-01__text {
    overflow: hidden;
    font-size: 1.6rem;
  }

@media print, screen and (min-width: 769px) {

.search-checkbox-01__text:hover {
        text-decoration: underline
    }
      }

.search-checkbox-02 {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.search-checkbox-02__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.search-checkbox-02__text {
    display: inline-block;
    padding-left: 30px;
    background: url('/images/icon_checkbox_01_no.svg') no-repeat left 3px;
    background-size: 20px 20px;
    vertical-align: top;
    color: #fff;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.search-checkbox-02__text {
      padding-left: 24px;
      background: url('/images/icon_checkbox_01_no.svg') no-repeat left 5px;
      background-size: 15px 15px;
      font-size: 1.6rem
  }
    }

.search-checkbox-02__input:checked + .search-checkbox-02__text {
    background: url('/images/icon_checkbox_01_on.svg') no-repeat left 3px;
    background-size: 20px 20px;
  }

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

.search-checkbox-02__input:checked + .search-checkbox-02__text {
      background: url('/images/icon_checkbox_01_on.svg') no-repeat left 5px;
      background-size: 15px 15px
  }
    }

.search-condition-input {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #d6d6d6;
  border-radius: 28px;
}

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

.search-condition-input {
    border-radius: 24px
}
  }

.search-condition-input__input {
    overflow: hidden;
    width: calc(100% - 60px);
    height: 54px;
    padding-right: 20px;
    padding-left: 20px;
    background: #fff;
    background: var(--white);
    border: none;
    font-size: 1.6rem;
  }

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

.search-condition-input__input {
      width: calc(100% - 58px);
      height: 46px;
      padding-right: 12px;
      padding-left: 12px
  }
    }

.search-condition-input__input::-webkit-input-placeholder {
      color: #999;
      color: var(--gray-02);
    }

.search-condition-input__input:-ms-input-placeholder {
      color: #999;
      color: var(--gray-02);
    }

.search-condition-input__input::-ms-input-placeholder {
      color: #999;
      color: var(--gray-02);
    }

.search-condition-input__input::placeholder {
      color: #999;
      color: var(--gray-02);
    }

.search-condition-input__button {
    overflow: hidden;
    width: 60px;
    height: 54px;
    background: url('/images/ico_search_01.svg') 15px center #00b7e1 no-repeat;
    background: url('/images/ico_search_01.svg') 15px center var(--lightBlue-01) no-repeat;
    background-size: 25px;
    border: none;
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;

    /* doiuse-disable outline */
    outline: none;
  }

/* doiuse-disable outline */

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

.search-condition-input__button {
      width: 58px;
      height: 46px;
      background: url('/images/ico_search_01.svg') 17px center #00b7e1 no-repeat;
      background: url('/images/ico_search_01.svg') 17px center var(--lightBlue-01) no-repeat;
      background-size: 21px
  }
    }

@media print, screen and (min-width: 769px) {

.search-condition-input__button:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.search-condition-keyword {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 25px;
}

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

.search-condition-keyword {
    display: block;
    margin-bottom: 30px
}
  }

.search-condition-keyword__title {
    overflow: hidden;
    -webkit-flex: 0 0 107px;
            flex: 0 0 107px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    font-weight: 700;
  }

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

.search-condition-keyword__title {
      margin-bottom: 7px;
      font-size: 1.4rem
  }
    }

.search-condition-keyword__input {
    overflow: hidden;
    -webkit-flex: 1;
            flex: 1;
  }

.search-input {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  border-radius: 28px;
  border: 1px solid #ccc;
  border: 1px solid var(--lineGray-01);
  background-color: #fff;
  background-color: var(--white);
}

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

.search-input {
    border-radius: 24px
}
  }

.search-input__input {
    -webkit-flex: 1;
            flex: 1;
    min-width: 0;
    height: 55px;
    padding-right: 20px;
    padding-left: 20px;
    border: none;
    background: #fff;
    background: var(--white);
    font-size: 1.6rem;
  }

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

.search-input__input {
      height: 46px;
      padding-right: 15px;
      padding-left: 15px;
      font-size: 1.4rem
  }
    }

.search-input__input::-webkit-input-placeholder {
      color: #999;
      color: var(--gray-02);
      opacity: 1;
    }

.search-input__input:-ms-input-placeholder {
      color: #999;
      color: var(--gray-02);
      opacity: 1;
    }

.search-input__input::-ms-input-placeholder {
      color: #999;
      color: var(--gray-02);
      opacity: 1;
    }

.search-input__input::placeholder {
      color: #999;
      color: var(--gray-02);
      opacity: 1;
    }

.search-input__button {
    -webkit-flex: 0 0 62px;
            flex: 0 0 62px;
    height: 55px;
    border: none;
    background: url('/images/ico_search_01.svg') #00b7e1 center no-repeat;
    background-size: 25px;
    cursor: pointer;

    /* doiuse-disable outline */
    outline: none;
  }

/* doiuse-disable outline */

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

.search-input__button {
      -webkit-flex: 0 0 58px;
              flex: 0 0 58px;
      height: 46px;
      background-size: 21px
  }
    }

@media print, screen and (min-width: 769px) {

.search-input__button:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.search-results-01 {
  overflow: hidden;
  padding: 28px 20px;
  background: #f8f7f3;
  background: var(--mainBg);
}

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

.search-results-01 {
    padding: 0;
    background: none
}
  }

.search-results-01__list {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: -16px;
    margin-right: -5px;
    margin-left: -5px;
  }

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

.search-results-01__list {
      display: -webkit-flex;
      display: flex;
      margin: 0;
      background: #f8f7f3;
      background: var(--mainBg)
  }
    }

.search-results-01__item {
    overflow: hidden;
    width: 25%;
    margin-top: 16px;
    padding-right: 5px;
    padding-left: 5px;
  }

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

.search-results-01__item {
      width: 100%;
      margin-top: 0;
      padding: 0;
      border-bottom: 1px solid #eaeae8
  }
    }

.section-banner {
  position: relative;
}

.section-banner::before,
  .section-banner::after {
    content: '';
    display: table;
  }

.section-banner::after {
    clear: both;
  }

.section-banner__fig {
    margin: 0 -15px;
    padding: 0;
    position: relative;
    display: block;
  }

@media print, screen and (min-width: 769px) {

.section-banner__fig {
      margin: 0
  }
    }

.section-banner__image {
    width: 100%;
    display: block;
  }

.section-company-white {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-company-white {
    margin-right: -15px;
    margin-bottom: 0;
    margin-left: -15px;
    padding: 25px 15px 60px
}
  }

.section-company-white__in {
    margin-bottom: 50px;
  }

.section-company-white__in:last-child {
      margin-bottom: 0;
    }

.section-news-01 {
  padding: 34px 30px 26px;
  background: #fff;
  background: var(--white);
}

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

.section-news-01 {
    padding: 30px 15px
}
  }

.section-news-01 .title-border--news-01 {
    margin-bottom: 10px;
  }

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

.section-news-01 .title-border--news-01 {
      margin-bottom: 5px
  }
    }

.section-news-01 .link-more-02__link--news-01 {
    font-size: 1.8rem;
  }

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

.section-news-01 .link-more-02__link--news-01 {
      font-size: 1.6rem
  }
    }

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

.contents__main--office {
    padding-bottom: 0
}
  }

.section-office-01 {
  padding: 30px 30px 54px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-office-01 {
    padding: 10px 15px 52px
}
  }

.list-contact-button-01--office {
  padding-top: 34px;
}

.section-office-02 {
  padding: 0 30px 30px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-office-02 {
    padding: 0 15px 30px
}
  }

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

.box-staff-01--office {
    margin-top: 11px
}
  }

.box-staff-01--office .box-staff-01__image {
    width: 140px;
    height: 187px;
  }

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

.box-staff-01--office .box-staff-01__image {
      /* width: 110px;
      height: 110px */
  }
    }

.button-staff-01 {
  width: 240px;
  margin: 40px auto 0;
}

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

.button-staff-01 {
    width: 100%;
    margin: 30px auto 0
}
  }

.box-tab-office-01 {
  overflow: hidden;
}

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

.box-tab-office-01 {
    margin-bottom: 20px
}
  }

.box-tab-office-01 .tab-normal-sp__button {
    padding: 11px 0;
  }

.slider-props-detail--office {
  margin-bottom: 60px !important;
}

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

.slider-props-detail--office {
    margin-bottom: 40px !important
}
  }

.slider-props-detail--office .slider-props-detail__main-container {
    width: 100%;
    height: 548px;
  }

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

.slider-props-detail--office .slider-props-detail__main-container {
      height: auto
  }
    }

.slider-props-detail--office .slider-props-detail__slider-figure {
    width: 100%;
    height: 548px;
  }

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

.slider-props-detail--office .slider-props-detail__slider-figure {
      height: 257px
  }
    }

.slider-props-detail--office .slider-props-detail__lower {
    padding-top: 24px;
  }

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

.slider-props-detail--office .slider-props-detail__lower {
      padding-top: 14px
  }
    }

.slider-props-detail--office .slider-props-detail__lower-in {
    padding: 15px 10px 30px;
  }

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

.slider-props-detail--office .slider-props-detail__lower-in {
      padding: 10px 0 10px 10px
  }
    }

.slider-props-detail--office .slider-props-detail__lower-in::after {
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }

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

.box-text-02--office {
    padding: 0 15px
}
  }

.section-office-03 {
  margin-bottom: 60px;
  padding: 30px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-office-03 {
    margin-bottom: 10px;
    padding: 26px 15px 30px
}
  }

.map-region--office {
  margin-bottom: 53px;
}

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

.map-region--office {
    display: none
}
  }

.section-office-04 {
  padding: 24px 30px 30px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-office-04 {
    padding: 24px 15px 15px
}
  }

.section-pager {
  padding: 0 15px 20px;
  background-color: #fff;
  background-color: var(--white);
}

@media print, screen and (min-width: 769px) {

.section-pager {
    padding: 30px 0 40px;
    background-color: #f8f7f3;
    background-color: var(--mainBg)
}
  }

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

.section-property-01 {
    padding: 24px 15px
}
  }

.section-props-detail {
  margin-bottom: 50px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-props-detail {
    margin-bottom: 25px
}
  }

.section-props-detail:last-child {
    margin-bottom: 0;
  }

.section-props-detail__in {
    padding: 15px 30px 35px;
    font-size: 1.8rem;
  }

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

.section-props-detail__in {
      padding: 15px 15px 25px;
      font-size: 1.4rem
  }
    }

.section-props-detail__section {
    margin-bottom: 50px;
  }

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

.section-props-detail__section {
      margin-bottom: 30px
  }
    }

.section-props-detail__section:last-child {
      margin-bottom: 0;
    }

.section-side-office-01 {
  overflow: hidden;
  margin-bottom: 35px;
}

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

.section-side-office-01 {
    margin-bottom: 0;
    padding: 0 15px 55px
}
  }

.section-side-office-02 {
  overflow: hidden;
  margin-bottom: 35px;
}

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

.section-side-office-02 {
    margin-bottom: 0;
    padding: 25px 15px 55px
}
  }

.section-side-office-03 {
  overflow: hidden;
}

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

.section-side-office-03 {
    padding: 0 15px 30px
}
  }

.box-property-01--office {
  margin-bottom: 36px;
}

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

.box-property-01--office {
    margin-bottom: 0
}
  }

.box-recommended-01--office {
  margin-bottom: 0;
}

.section-side {
  margin-bottom: 50px;
}

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

.section-side {
    margin: 0;
    padding: 0 15px 40px
}
  }

.section-side:last-child {
    margin-bottom: 0;
  }

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

.section-side--bg-white-sp {
      padding-top: 35px;
      background-color: #fff;
      background-color: var(--white)
  }
    }

.section-side__in {
    margin-bottom: 50px;
  }

.section-side__in:last-child {
      margin-bottom: 0;
    }

.section-slider {
  margin-bottom: 25px;
}

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

.section-slider {
    padding-right: 15px;
    padding-left: 15px
}
  }

.section-slider__text {
    font-size: 1.4rem;
  }

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

.section-slider__text {
      font-size: 1.2rem
  }
    }

.section-staff-01 {
  overflow: hidden;
  padding: 30px 30px 0;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-staff-01 {
    padding: 13px 15px 25px
}
  }

.section-staff-02 {
  overflow: hidden;
  margin-bottom: 10px;
  padding: 0 30px 30px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-staff-02 {
    margin-bottom: 0;
    padding: 25px 15px 26px
}
      .section-staff-02 .box-profile-01:first-child {
        margin-top: 0;
      }
  }

.section-staff-03 {
  overflow: hidden;
  padding: 15px 30px;
  background-color: #f1f0e8;
}

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

.section-staff-03 {
    padding: 30px 15px
}
  }

.section-white {
  margin-bottom: 50px;
  padding: 25px 30px 30px;
  background-color: #fff;
  background-color: var(--white);
}

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

.section-white {
    margin-bottom: 40px;
    padding: 40px 15px
}
  }

.section-white:last-child {
    margin-bottom: 0;
  }

.section-white__in {
    margin-bottom: 50px;
  }

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

.section-white__in {
      margin-bottom: 40px
  }
    }

.section-white__in:last-child {
      margin-bottom: 0;
    }

.section {
  margin-bottom: 50px;
}

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

.section {
    margin-bottom: 40px;
    padding-right: 15px;
    padding-left: 15px
}
  }

.section:last-child {
    margin-bottom: 0;
  }

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

.section--bg-white-sp {
      padding-top: 35px;
      padding-bottom: 40px;
      background-color: #fff;
      background-color: var(--white)
  }
    }

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

.section--full-width-sp {
      padding-right: 0;
      padding-left: 0
  }
    }

.selectbox-condition-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -18px;
  margin-bottom: 25px;
  margin-left: -18px;
}

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

.selectbox-condition-01 {
    margin-right: -12px;
    margin-bottom: 26px;
    margin-left: -12px
}
  }

.selectbox-condition-01__col {
    position: relative;
    width: 236px;
    padding-right: 18px;
    padding-left: 18px;
  }

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

.selectbox-condition-01__col {
      width: 60%;
      padding-right: 12px;
      padding-left: 12px
  }
    }

.selectbox-condition-01__col::after {
      content: '縲�';
      position: absolute;
      top: 50%;
      right: -9px;
      font-size: 1.8rem;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

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

.selectbox-condition-01__col::after {
        right: -7px;
        font-size: 1.4rem
    }
      }

.selectbox-condition-01__col:last-child::after {
        content: '';
        top: 0;
        right: 0;
        -webkit-transform: none;
                transform: none;
      }

.selectbox {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #999;
  border: 1px solid var(--gray-02);
  background-color: #fff;
  background-color: var(--white);
  cursor: pointer;
}

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

.selectbox {
    height: 46px;
    border-radius: 4px
}
  }

.selectbox::after {
    top: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    width: 35px;
    height: 100%;
    background-color: #fff;
    background-color: var(--white);
    background-image: url('/images/ico_arrow_down_01.svg');
    background-position: 8px center;
    background-repeat: no-repeat;
    background-size: 15px 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    pointer-events: none;
    content: '';
  }

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

.selectbox::after {
      background-size: 12px 6px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px
  }
    }

.selectbox__select {
    width: 100%;
    height: 100%;
    padding-right: 15px;
    padding-left: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
    cursor: pointer;
  }

.selectbox__select::-ms-expand {
      display: none;
    }

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

.selectbox__select {
      font-size: 1.6rem
  }
    }

.slider-props-detail {
  margin-bottom: 50px;
}

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

.slider-props-detail {
    margin-bottom: 20px
}
  }

.slider-props-detail:last-child {
    margin-bottom: 0;
  }

.slider-props-detail__upper {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

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

.slider-props-detail__upper {
      display: block
  }
    }

.slider-props-detail__lower {
    overflow: hidden;
    padding-top: 20px;
  }

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

.slider-props-detail__lower {
      padding-top: 14px;
      margin-right: -15px;
      margin-left: -15px
  }
    }

.slider-props-detail__lower-in {
    position: relative;
    padding: 15px 11px 30px;
    background-color: #f5f4ee;
  }

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

.slider-props-detail__lower-in {
      padding: 10px 0 10px 10px
  }
    }

.slider-props-detail__lower-in::after {
      top: -15px;
      left: 305px;
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 15px 15px 15px;
      border-color: transparent transparent #f5f4ee transparent;
      content: '';
    }

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

.slider-props-detail__lower-in::after {
        top: -5px;
        left: 50%;
        border-width: 0 5px 5px 5px;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%)
    }
      }

.slider-props-detail__main-container {
    position: relative;
    width: 640px;
    height: 480px;
    border: 1px solid #d6d6d6;
  }

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

.slider-props-detail__main-container {
      width: auto;
      height: auto
  }
    }

.slider-props-detail__plan-container {
    position: relative;
    width: 380px;
    height: 480px;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #d6d6d6;
  }

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

.slider-props-detail__plan-container {
      display: none
  }
    }

.slider-props-detail__plan-image {
    top: 50%;
    left: 50%;
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

.slider-props-detail__slider-figure {
    position: relative;
    width: 638px;
    height: 478px;
  }

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

.slider-props-detail__slider-figure {
      width: 100%;
      height: auto;
      padding-top: 74.493%
  }
    }

.slider-props-detail__slider-image {
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 0;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

.slider-props-detail__slider-caption {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 1.6rem;
    color: #fff;
    color: var(--white);
  }

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

.slider-props-detail__slider-caption {
      padding: 4px 10px;
      font-size: 1.3rem
  }
    }

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

.slider-props-detail__caption-text {
      overflow: hidden;
      position: relative;
      display: -webkit-box;
      width: 100%;
      text-overflow: ellipsis;
      -webkit-line-clamp: 2;

      /* autoprefixer: ignore next */
      -webkit-box-orient: vertical
  }
    }

.slider-props-detail__thumb-item {
    float: left;
    padding-right: 2px;
    padding-left: 2px;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;

    /* doiuse-disable outline */
    outline: none;
    width: 120px;
  }

/* doiuse-enable outline */

.slider-props-detail__thumb-item.slick-current:hover {
      opacity: 1;
    }

@media print, screen and (min-width: 769px) {

.slider-props-detail__thumb-item:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.slider-props-detail__thumb-image {
    position: relative;
    width: 140px;
    height: 105px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

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

.slider-props-detail__thumb-image {
      width: 80px;
      height: 60px
  }
    }

.thumb-active .slider-props-detail__thumb-image::after {
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 4px solid #00b7e1;
    border: 4px solid var(--lightBlue-01);
    content: '';
  }

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

.thumb-active .slider-props-detail__thumb-image::after {
      border-width: 2px
  }
    }

.slider-props-detail__thumb .slick-track {
    margin-left: 0;
  }

.slider-props-detail .slick-arrow {
    overflow: hidden;
    top: 50%;
    left: 0;
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: url('/images/ico_arrow_02.svg') no-repeat;
    background-size: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-indent: -999px;
    opacity: 0.9;
  }

.slider-props-detail .slick-arrow.slick-next {
      left: auto;
      right: 0;
      -webkit-transform: translateY(-50%) rotate(180deg);
              transform: translateY(-50%) rotate(180deg);
    }

.slider-props-detail .slick-arrow.slick-disabled {
      display: none !important;
    }

@media print, screen and (min-width: 769px) {

.slider-props-detail .slick-arrow:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.slider-props-detail .slider-props-detail__thumb .slick-arrow {
    left: -11px;
    opacity: 1;
  }

.slider-props-detail .slider-props-detail__thumb .slick-arrow.slick-next {
      left: auto;
      right: -11px;
    }

.slider-props-detail__thumb .slick-dots {
    bottom: -20px;
    position: absolute;
    width: 100%;
    text-align: center;
  }

.slider {
  margin-bottom: 20px;
}

.slider:last-child {
    margin-bottom: 0;
  }

.slider__item {
    position: relative;
  }

.slider__image {
    position: relative;
    height: 240px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.slider__image {
      height: auto;
      padding-top: 30.379%
  }
    }

.slider__link {
    display: block;
  }

@media print, screen and (min-width: 769px) {

.slider__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.slider__dots {
    padding-top: 10px;
  }

.slider .slick-arrow {
    overflow: hidden;
    top: 50%;
    left: 0;
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: url('/images/ico_arrow_02.svg') no-repeat;
    background-size: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-indent: -999px;
    opacity: 0.9;
  }

.slider .slick-arrow.slick-next {
      left: auto;
      right: 0;
      -webkit-transform: translateY(-50%) rotate(180deg);
              transform: translateY(-50%) rotate(180deg);
    }

@media print, screen and (min-width: 769px) {

.slider .slick-arrow:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container.storylog {
    font-size: 1.4rem;
    padding-bottom: 100px;
  }

.row {
  position: relative;
  width: 100%;
}

.row [class^=col] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
  content: '';
  display: table;
  clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .container {
    width: 100%;
    max-width: 960px;
  }
}

.story {
  position: relative;
}

.story__heading {
    font-size: 2.4rem;
    font-weight: 300;
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ebebeb;
  }

.tab-content-01 {
  overflow: hidden;
  margin-bottom: 30px;
}

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

.tab-content-01 {
    display: none
}
  }

.tab-content-01__list-tab {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }

.tab-content-01__tab {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 50%;
    height: 100%;
    padding: 13px 10px 14px;
    background: #fff;
    background: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-right: none;
    box-shadow: inset 0 -4px 0 0 rgba(6, 0, 0, 0.15);
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    text-align: center;
    font-size: 1.8rem;
    cursor: pointer;
  }

@media print, screen and (min-width: 769px) {

.tab-content-01__tab:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.tab-content-01__tab:first-child {
      border-radius: 8px 0 0 8px;
    }

.tab-content-01__tab:last-child {
      border-right: 1px solid #999;
      border-right: 1px solid var(--gray-02);
      border-radius: 0 8px 8px 0;
    }

.tab-content-01 .is-active {
    background: #00b7e1;
    background: var(--lightBlue-01);
    border-color: #00b7e1 !important;
    border-color: var(--lightBlue-01) !important;
    border-left: none;
    color: #fff;
    color: var(--white);
    font-weight: 700;
    opacity: 1 !important;
  }

.tab-content-container-02 {
  margin-bottom: 50px;
}

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

.tab-content-container-02 {
    margin-bottom: 30px
}
  }

.tab-content-container-02:last-child {
    margin-bottom: 0;
  }

.tab-content-container-02__content {
    display: none;
  }

.tab-content-container__head {
    margin-bottom: 40px;
  }

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

.tab-content-container__head {
      margin-bottom: 20px
  }
    }

.tab-content-container__content {
    display: none;
  }

.tab-content-container__content:first-child {
      display: block;
    }

.tab-content-container__in {
    margin-bottom: 60px;
  }

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

.tab-content-container__in {
      margin-bottom: 30px
  }
    }

.tab-content-container__in:last-child {
      margin-bottom: 0;
    }

.tab-normal-sp {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin-bottom: 18px;
}

.tab-normal-sp:last-child {
    margin-bottom: 0;
  }

.tab-normal-sp__button {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    padding: 10px;
    border-left: 1px solid #d6d6d6;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 1.6rem;
    text-align: center;
  }

.tab-normal-sp__button:first-child {
      border-top-left-radius: 6px;
      border-bottom-left-radius: 6px;
    }

.tab-normal-sp__button:last-child {
      border-top-right-radius: 6px;
      border-bottom-right-radius: 6px;
      border-right: 1px solid #d6d6d6;
    }

.tab-normal-sp--col-03 .tab-normal-sp__button {
    width: 33.333%;
  }

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

.tab-normal {
    margin-right: -15px;
    margin-left: -15px;
    padding-top: 6px;
    background-color: #eee;
    border-bottom: 3px solid #00b7e1;
    border-bottom: 3px solid var(--lightBlue-01)
}
  }

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

.tab-normal__in {
      overflow: auto;
      display: -webkit-flex;
      display: flex;
      white-space: nowrap
  }

      .tab-normal__in::-webkit-scrollbar {
        width: 0;
        height: 0;
      }
    }

.tab-normal__list {
    display: -webkit-flex;
    display: flex;
  }

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

.tab-normal__list {
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      padding-right: 15px;
      padding-left: 15px
  }
    }

.tab-normal__item {
    overflow: hidden;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-right: none;
  }

@media print, screen and (min-width: 769px) {

.tab-normal__item:first-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px
    }
      }

.tab-normal__item:last-child {
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      border-right: 1px solid #999;
      border-right: 1px solid var(--gray-02);
    }

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

.tab-normal__item {
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      border: none !important
  }
    }

@media print, screen and (min-width: 769px) {

.tab-normal--col-06 .tab-normal__item {
      width: 16.667%
  }
    }

.tab-normal__button {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 14px 5px;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    text-align: center;
  }

@media print, screen and (min-width: 769px) {

.tab-normal__button:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

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

.tab-normal__button {
      padding: 12px 15px;
      background: none;
      box-shadow: none;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      font-size: 1.4rem
  }
    }

@media print, screen and (min-width: 769px) {

.tab-normal__item--is-active {
      background-color: #00b7e1;
      background-color: var(--lightBlue-01);
      border-top-color: #00b7e1;
      border-top-color: var(--lightBlue-01);
      border-bottom-color: #00b7e1;
      border-bottom-color: var(--lightBlue-01)
  }
    }

.tab-normal__item--is-active .tab-normal__button {
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    color: #fff;
    color: var(--white);
    font-weight: 700;
    opacity: 1 !important;
  }

@media print, screen and (min-width: 769px) {

.tab-normal__item:first-child .tab-normal__button {
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px
  }
    }

@media print, screen and (min-width: 769px) {

.tab-normal__item:last-child .tab-normal__button {
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px
  }
    }

.tab-radio-01 {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 20px;
}

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

.tab-radio-01 {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: -10px;
    margin-right: -5px;
    margin-left: -5px
}
  }

.tab-radio-01:last-child {
    margin-bottom: 0;
  }

.tab-radio-01--margin-btm {
    margin-bottom: 40px;
  }

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

.tab-radio-01--margin-btm {
      margin-bottom: 20px
  }
    }

.tab-radio-01__label {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
  }

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

.tab-radio-01__label {
      width: calc(50% - 10px);
      margin-top: 10px;
      margin-right: 5px;
      margin-left: 5px
  }
    }

@media print, screen and (min-width: 769px) {

.tab-radio-01--col-04 .tab-radio-01__label {
      width: 25%
  }
    }

@media print, screen and (min-width: 769px) {

.tab-radio-01--col-02 .tab-radio-01__label {
      width: 50%
  }
    }

.tab-radio-01__text {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
    height: 56px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    border-right: none;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 1.8rem;
    text-align: center;
  }

@media print, screen and (min-width: 769px) {

.tab-radio-01__text:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

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

.tab-radio-01__text {
      -webkit-justify-content: flex-start;
              justify-content: flex-start;
      height: 100%;
      padding: 12px 12px 12px 42px;
      border-radius: 4px;
      border: 1px solid #ccc;
      border: 1px solid var(--lineGray-01);
      box-shadow: none;
      font-size: 1.5rem;
      text-align: left
  }
    }

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

.tab-radio-01__text::before {
        top: 50%;
        left: 15px;
        position: absolute;
        z-index: 1;
        width: 20px;
        height: 20px;
        background: url('/images/ico_radio_01.svg') no-repeat;
        background-size: 20px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: ''
    }
      }

@media print, screen and (min-width: 769px) {

.tab-radio-01__label:first-child .tab-radio-01__text {
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px
  }
    }

@media print, screen and (min-width: 769px) {

.tab-radio-01__label:last-child .tab-radio-01__text {
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      border-right: 1px solid #ccc;
      border-right: 1px solid var(--lineGray-01)
  }
    }

.tab-radio-01__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.tab-radio-01__input:checked + .tab-radio-01__text,
  .tab-radio-01__label.is-active .tab-radio-01__text {
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    color: #fff;
    color: var(--white);
    font-weight: 700;
    opacity: 1 !important;
  }

@media only screen and (max-width: 768px) {

.tab-radio-01__input:checked + .tab-radio-01__text::before,
  .tab-radio-01__label.is-active .tab-radio-01__text::before {
      background: url('/images/ico_radio_02.svg') no-repeat;
      background-size: 20px
  }
    }

.tab-radio-01--module-mb {
    margin-bottom: 50px;
  }

@media only screen and (max-width: 768px) {

.tab-radio-01--module-mb {
      margin-bottom: 30px
  }
    }

.tab-radio-02 {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.tab-radio-02__label {
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

.tab-radio-02--col-02 .tab-radio-02__label {
    width: 50%;
  }

.tab-radio-02__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

.tab-radio-02__text {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    height: 56px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-right: none;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -4px rgba(7, 0, 0, 0.15);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
  }

@media only screen and (max-width: 768px) {

.tab-radio-02__text {
      height: 48px;
      border-color: #ddd;
      border-color: var(--gray-03)
  }
    }

@media print, screen and (min-width: 769px) {

.tab-radio-02__text:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.tab-radio-02__label:first-child .tab-radio-02__text {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

@media only screen and (max-width: 768px) {

.tab-radio-02__label:first-child .tab-radio-02__text {
      border-top-left-radius: 6px;
      border-bottom-left-radius: 0
  }
    }

.tab-radio-02__label:last-child .tab-radio-02__text {
    border-right: 1px solid #999;
    border-right: 1px solid var(--gray-02);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

@media only screen and (max-width: 768px) {

.tab-radio-02__label:last-child .tab-radio-02__text {
      border-top-right-radius: 6px;
      border-bottom-right-radius: 0;
      border-color: #ddd;
      border-color: var(--gray-03)
  }
    }

.tab-radio-02__input:checked + .tab-radio-02__text {
    border-left: none;
    border-color: #00b7e1;
    border-color: var(--lightBlue-01);
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    color: #fff;
    color: var(--white);
    opacity: 1 !important;
  }

.tab-search-by-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -10px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {

.tab-search-by-01 {
    margin: -10px -5px 15px;
    padding: 0 15px
}
  }

.tab-search-by-01__item {
    overflow: hidden;
    width: 50%;
    margin-top: 10px;
  }

@media only screen and (max-width: 768px) {

.tab-search-by-01__item {
      padding-right: 5px;
      padding-left: 5px
  }
    }

.tab-search-by-01__link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    height: 100%;
    padding: 13px 5px 14px;
    background: #fff;
    background: var(--white);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-right: none;
    box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
    text-align: center;
    color: #424242;
    color: var(--mainBlack);
    font-size: 1.8rem;
  }

@media only screen and (max-width: 768px) {

.tab-search-by-01__link {
      border: 1px solid #e4e4e4;
      box-shadow: none;
      font-size: 1.4rem
  }
    }

@media print, screen and (min-width: 769px) {

.tab-search-by-01__link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.tab-search-by-01__item--is-active .tab-search-by-01__link {
    background: #00b7e1;
    background: var(--lightBlue-01);
    border-color: #00b7e1 !important;
    border-color: var(--lightBlue-01) !important;
    border-left: none;
    color: #fff;
    color: var(--white);
    font-weight: 700;
    opacity: 1 !important;
  }

@media only screen and (max-width: 768px) {

.tab-search-by-01__item--is-active .tab-search-by-01__link {
      border-left: 1px solid #00b7e1;
      border-left: 1px solid var(--lightBlue-01)
  }
    }

.tab-search-by-01__item:first-child .tab-search-by-01__link {
    border-radius: 8px 0 0 8px;
  }

@media only screen and (max-width: 768px) {

.tab-search-by-01__item:first-child .tab-search-by-01__link {
      border-radius: 4px
  }
    }

.tab-search-by-01__item:last-child .tab-search-by-01__link {
    border-right: 1px solid #999;
    border-right: 1px solid var(--gray-02);
    border-radius: 0 8px 8px 0;
  }

@media only screen and (max-width: 768px) {

.tab-search-by-01__item:last-child .tab-search-by-01__link {
      border-right: 1px solid #e4e4e4;
      border-radius: 4px
  }
    }

@media only screen and (max-width: 768px) {
    .tab-search-by-01__text {
      padding-left: 23px;
      background: url('/images/ico_radio_01.svg') no-repeat left 3px;
      background-size: 15px 15px;
      text-align: left;
    }

    .tab-search-by-01__item--is-active .tab-search-by-01__text {
      background: url('/images/ico_radio_02.svg') no-repeat left 3px;
      background-size: 15px 15px;
    }
  }

.confirm-table {
  min-width: 100%;
}

.confirm-table__body,
  .confirm-table__row {
    width: 100%;
  }

.confirm-table__head,
  .confirm-table__content {
    width: 100%;
    padding: 3px 0;
    display: block;
  }

.confirm-table__head {
    font-size: 1.8rem;
    text-align: left;
    vertical-align: top;
  }

@media print, screen and (min-width: 769px) {

.confirm-table__head {
      width: 360px;
      display: table-cell;
      padding: 15px 0
  }
    }

.confirm-table__content {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

@media print, screen and (min-width: 769px) {

.confirm-table__content {
      width: auto;
      display: table-cell;
      padding: 15px 0;
      font-size: 1.8rem
  }
    }

.confirm-table__content__list {
      margin: 0;
      padding-left: 3px;
    }

.confirm-table__content__list__inner {
        margin-left: 30px;
      }

.confirm-table__content__item::before {
        content: '繝ｻ';
      }

.table-contact-city-01 {
  width: 100%;
}

.table-contact-city-01 th {
    width: 21.8%;
    padding: 17px 5px 17px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
    vertical-align: top;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01 th {
      display: block;
      width: 100%;
      margin-top: 30px;
      padding: 0 0 5px;
      background: none;
      border-bottom: 2px solid #ddd;
      border-bottom: 2px solid var(--gray-03)
  }
    }

.table-contact-city-01__title-01 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__title-01 {
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.table-contact-city-01 td {
    width: 78.2%;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01 td {
      display: block;
      width: 100%;
      padding: 15px 0;
      border-bottom: none
  }
    }

@media only screen and (max-width: 768px) {

.table-contact-city-01 tr:first-child th {
          margin-top: 0
      }
        }

@media only screen and (max-width: 768px) {

.table-contact-city-01 .table-contact-city-01--sp-border-top {
      border-top: 1px solid #ddd;
      border-top: 1px solid var(--gray-03)
  }
    }

.table-contact-city-01__list-tag-01 {
    overflow: hidden;
    margin: -5px 0 3px;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__list-tag-01 {
      margin: -5px 0 8px
  }
    }

.table-contact-city-01__tag {
    overflow: hidden;
    float: left;
    margin: 5px 10px 0 0;
    padding: 2px 5px;
    border: 1px solid #eb0f32;
    border: 1px solid #eb0f32;
    border: 1px solid var(--red-01);
    color: #eb0f32;
    color: var(--red-01);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__tag {
      padding: 3px 5px 2px;
      font-size: 1.1rem
  }
    }

.table-contact-city-01__tag:last-child {
      margin: 5px 0 0 0;
    }

.table-contact-city-01__tag--bg-red {
      background: #eb0f32;
      background: var(--red-01);
      color: #fff;
      color: var(--white);
    }

.table-contact-city-01__tag--bg-darkblue {
      background: #1f2646;
      background: var(--darkBlue-01);
      border: 1px solid #1f2646;
      border: 1px solid var(--darkBlue-01);
      color: #fff;
      color: var(--white);
    }

.table-contact-city-01__text-01 {
    margin-bottom: 14px;
    font-size: 1.8rem;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__text-01 {
      margin-bottom: 15px;
      font-size: 1.6rem;
      line-height: 1.5
  }
    }

.table-contact-city-01__box-contact {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
            align-items: center;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__box-contact {
      display: block
  }
    }

.table-contact-city-01__info-number {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 173px;
    padding-right: 5px;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__info-number {
      -webkit-flex: none;
              flex: none;
      width: 100%;
      padding: 0
  }
    }

.table-contact-city-01__tel-link {
    color: #333;
    color: var(--black-01);
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__tel-link {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: center;
              justify-content: center;
      padding: 14px 0;
      background: #ffa000;
      background: var(--mainOrange);
      box-shadow: inset 0 -4px 0 0 rgba(7, 0, 0, 0.15);
      border-radius: 6px;
      text-align: center;
      color: #fff;
      color: var(--white);
      font-weight: 700;
      line-height: 1.3
  }
    }

.table-contact-city-01__tel-text {
    display: none;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__tel-text {
      display: inline;
      position: relative;
      padding: 0 8px 0 30px;
      font-size: 1.6rem
  }

      .table-contact-city-01__tel-text::before {
        content: '';
        position: absolute;
        top: 1px;
        left: 0;
        width: 20px;
        height: 20px;
        background: url('/images/ico_phone_02.svg') no-repeat left top;
        background-size: 20px 20px;
      }
    }

.table-contact-city-01__tel-number {
    position: relative;
    padding-left: 26px;
    font-size: 1.8rem;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__tel-number {
      position: relative;
      padding-left: 0;
      font-size: 1.6rem
  }
    }

.table-contact-city-01__tel-number::before {
      content: '';
      position: absolute;
      top: 1px;
      left: 0;
      width: 21px;
      height: 21px;
      background: url('/images/ico_phone_01.svg') no-repeat left top;
      background-size: 21px 21px;
    }

@media only screen and (max-width: 768px) {

.table-contact-city-01__tel-number::before {
        top: 0;
        width: 0;
        height: 0;
        background: none;
        background-size: 0
    }
      }

.table-contact-city-01__list-links-01 {
    -webkit-flex: 1;
            flex: 1;
    margin: -10px 0 0 -10px;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__list-links-01 {
      display: -webkit-flex;
      display: flex;
      -webkit-flex: none;
              flex: none;
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      margin: 0 -5px
  }
    }

.table-contact-city-01__item {
    float: left;
    margin: 10px 0 0 10px;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__item {
      float: none;
      width: 50%;
      margin: 10px 0 0;
      padding: 0 5px
  }
    }

.table-contact-city-01__link {
    width: auto;
    min-width: 110px;
    padding: 8px 10px 7px;
    font-size: 1.4rem;
  }

@media only screen and (max-width: 768px) {

.table-contact-city-01__link {
      width: 100%;
      min-width: 0;
      padding: 12px 5px;
      font-size: 1.6rem
  }
    }

.table-detail-01 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.table-detail-01__content {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.table-detail-01__content--col-02 {
      width: 50%;
    }

@media only screen and (max-width: 768px) {

.table-detail-01__content--col-02 {
        width: 100%
    }
      }

.table-detail-01__title {
    overflow: hidden;
    width: 190px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 15px 5px 15px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
    text-align: left;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.table-detail-01__title {
      width: 25.4%;
      padding: 9px 5px 9px 10px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.table-detail-01__title--bg-none {
      background-color: transparent;
    }

.table-detail-01__box {
    -webkit-flex: 1;
            flex: 1;
    padding: 15px 10px 15px 20px;
    background: #fff;
    background: var(--white);
    text-align: left;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.table-detail-01__box {
      padding: 9px 5px 9px 10px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.table-detail-01__text-note {
    width: 100%;
    margin-top: 10px;
    font-size: 1.6rem;
    text-align: right;
  }

@media only screen and (max-width: 768px) {

.table-detail-01__text-note {
      font-size: 1.4rem
  }
    }

.table-detail-01--bg-02 .table-detail-01__title {
    background-color: #fff;
    background-color: var(--white);
  }

.table-detail-01--bg-02 .table-detail-01__box {
    background-color: transparent;
  }

.table-detail-01__title.table-detail-01__title--bg-none,
  .table-detail-01__box.table-detail-01__box--bg-none {
    background-color: transparent;
  }

.table-detail-02__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
            align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

.table-detail-02__row--small-padding {
      padding-top: 12px;
      padding-bottom: 12px;
    }

.table-detail-02__row:first-child {
      padding-top: 0;
    }

.table-detail-02__title {
    -webkit-flex: 0 0 95px;
            flex: 0 0 95px;
    font-weight: 700;
  }

.table-detail-02__data {
    -webkit-flex: 1;
            flex: 1;
  }

.table-detail-02__column {
    display: -webkit-flex;
    display: flex;
    width: 50%;
  }

.table-detail-02__data-block {
    display: inline-block;
    padding-right: 20px;
    vertical-align: middle;
  }

.table-detail-03 {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.table-detail-03__content {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid var(--gray-03);
  }

@media only screen and (max-width: 768px) {

.table-detail-03__content {
      -webkit-flex-direction: column;
              flex-direction: column;
      border-bottom: none
  }
    }

.table-detail-03__content--col-02 {
      width: 50%;
    }

@media only screen and (max-width: 768px) {

.table-detail-03__content--col-02 {
        width: 100%
    }
      }

.table-detail-03__title {
    overflow: hidden;
    width: 250px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 15px 5px 15px 20px;
    background: #f8f7f3;
    background: var(--mainBg);
    text-align: left;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.table-detail-03__title {
      width: 100%;
      padding: 9px 5px 9px 10px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.table-detail-03__box {
    -webkit-flex: 1;
            flex: 1;
    padding: 15px 10px 15px 20px;
    background: #fff;
    background: var(--white);
    text-align: left;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.table-detail-03__box {
      width: 100%;
      padding: 14px 5px 20px 10px;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.table-detail-03__box--02 {
      padding: 0;
    }

@media only screen and (max-width: 768px) {

.table-detail-03__box--02 {
        padding: 9px 5px 15px 10px
    }
      }

.table-detail-03__box__list {
      padding: 0;
    }

.table-detail-03__box__item {
      display: block;
      border-bottom: 1px solid #ddd;
      border-bottom: 1px solid var(--gray-03);
    }

.table-detail-03__box__item:last-child {
        border-bottom: none;
      }

@media only screen and (max-width: 768px) {

.table-detail-03__box__item {
        border-bottom: none
    }
      }

.table-detail-03__box__link {
      padding: 15px;
      text-decoration: underline;
      transition: opacity 0.2s ease-in-out;
      display: inline-block;
    }

.table-detail-03__box__link:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

@media only screen and (max-width: 768px) {

.table-detail-03__box__link {
        transition: none;
        padding: 5px 0
    }
      }

.table-detail-03__text-note {
    width: 100%;
    margin-top: 10px;
    font-size: 1.6rem;
    text-align: right;
  }

@media only screen and (max-width: 768px) {

.table-detail-03__text-note {
      font-size: 1.4rem
  }
    }

.tag-01 {
  position: relative;
  display: inline-block;
  padding: 13px 10px 11px 38px;
  background-color: #f3f3f3;
  font-size: 1.6rem;
  color: #666;
  color: var(--gray-06);
  font-weight: 700;
  line-height: 1.1;
}

@media only screen and (max-width: 768px) {

.tag-01 {
    font-size: 1.2rem;
    padding: 6px 8px 6px 26px
}
  }

.tag-01--icon::before {
    top: 50%;
    right: 0;
    bottom: 0;
    left: 10px;
    position: absolute;
    width: 21px;
    height: 21px;
    background: url('/images/ico_tag_01.svg') no-repeat;
    background-size: 21px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: '';
  }

@media only screen and (max-width: 768px) {

.tag-01--icon::before {
      left: 8px;
      width: 16px;
      height: 16px;
      background-size: 16px
  }
    }

.tag {
  font-size: 1.4rem;
  border: 1px solid #1f2646;
  border: 1px solid var(--darkBlue-01);
  padding: 2px 9px;
  margin-bottom: 5px;
  text-align: center;
  color: #1f2646;
  color: var(--darkBlue-01);
  display: inline-block;
}

.tag:not(:last-child) {
    margin-right: 5px;
  }

@media print, screen and (min-width: 769px) {

.tag {
    font-size: 1.8rem;
    padding: 0 5px
}

    .tag:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }
  }

.title-template-01 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {

.title-template-01 {
    margin-bottom: 15px;
    font-size: 1.5rem
}
  }

.box-template-01 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {

.box-template-01 {
    margin-bottom: 30px
}
  }

.text-article-01 {
  margin-bottom: 16px;
  text-align: right;
  color: #333;
  color: var(--black-01);
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {

.text-article-01 {
    font-size: 1.2rem
}
  }

.text-content-01 {
  font-size: 1.4rem;
  line-height: 1.82;
  margin-bottom: 12px;
}

@media print, screen and (min-width: 769px) {

.text-content-01 {
    font-size: 1.6rem;
    line-height: 1.81
}
  }

.text-content-01--mb-20 {
    margin-bottom: 15px;
  }

@media print, screen and (min-width: 769px) {

.text-content-01--mb-20 {
      margin-bottom: 20px
  }
    }

.text-content-01--mb-40 {
    margin-bottom: 20px;
  }

@media print, screen and (min-width: 769px) {

.text-content-01--mb-40 {
      margin-bottom: 40px
  }
    }

.text-content-02 {
  margin-top: 60px;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {

.text-content-02 {
    margin-top: 58px;
    font-size: 1.2rem
}
  }

.text-content-03 {
  margin-bottom: 30px;
  color: #333;
  color: var(--black-01);
  font-size: 1.8rem;
  line-height: 1.61;
}

@media only screen and (max-width: 768px) {

.text-content-03 {
    margin-bottom: 23px;
    font-size: 1.6rem;
    line-height: 1.5
}
  }

.text-content-03--mb-00 {
    margin-bottom: 0;
  }

.text-content-03:last-child {
    margin-bottom: 0;
  }

.text-content-04 {
  margin-bottom: 15px;
  font-size: 2.6rem;
}

@media only screen and (max-width: 768px) {

.text-content-04 {
    margin-bottom: 12px;
    font-size: 2rem
}
  }

.text-content-04--font-size-01 {
    font-size: 2.2rem;
  }

@media only screen and (max-width: 768px) {

.text-content-04--font-size-01 {
      font-size: 1.6rem
  }
    }

.text-content-04--font-size-02 {
    font-size: 1.8rem;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.text-content-04--font-size-02 {
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.text-content-04--font-size-03 {
    font-size: 1.6rem;
  }

@media only screen and (max-width: 768px) {

.text-content-04--font-size-03 {
      font-size: 1.2rem
  }
    }

.text-content-04--font-size-04 {
    font-size: 1.6rem;
  }

@media only screen and (max-width: 768px) {

.text-content-04--font-size-04 {
      font-size: 1.4rem
  }
    }

.text-content-04--font-size-05 {
    font-size: 1.4rem;
  }

@media only screen and (max-width: 768px) {

.text-content-04--font-size-05 {
      font-size: 1.2rem
  }
    }

.text-content-04:last-child {
    margin-bottom: 0;
  }

.text-detail-01 {
  font-size: 0;
}

.text-detail-01__text {
    display: inline;
    position: relative;
    margin-right: 20px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.text-detail-01__text {
      margin-right: 0;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.text-detail-01__text--is-new::after {
      content: '譁ｰ萓｡譬ｼ';
      position: relative;
      top: -2px;
      display: inline-block;
      margin-left: 10px;
      padding: 3px 6px;
      background-color: #eb0f32;
      background-color: var(--red-01);
      font-size: 1.2rem;
      color: #fff;
      color: var(--white);
      line-height: 1.1;
      vertical-align: middle;
    }

@media only screen and (max-width: 768px) {

.text-detail-01__text--is-new::after {
        font-size: 1rem
    }
      }

.text-detail-01__button {
    display: inline-block;
  }

@media only screen and (max-width: 768px) {

.text-detail-01__button {
      display: block;
      margin-top: 4px
  }
    }

.text-detail-03 {
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  font-size: 0;
}

@media only screen and (max-width: 768px) {

.text-detail-03 {
    display: block
}
  }

@media only screen and (max-width: 768px) {

.text-detail-03__fixed {
      margin-top: 5px
  }
    }

.text-detail-03__text {
    -webkit-flex: 0 0 500px;
            flex: 0 0 500px;
    position: relative;
    margin-right: 20px;
    color: #333;
    color: var(--black-01);
    font-size: 1.8rem;
    line-height: 1.61;
  }

@media only screen and (max-width: 768px) {

.text-detail-03__text {
      margin-right: 0;
      font-size: 1.4rem;
      line-height: 1.5
  }
    }

.text-detail-03__text--is-new::after {
      content: '譁ｰ萓｡譬ｼ';
      position: relative;
      top: -2px;
      display: inline-block;
      margin-left: 10px;
      padding: 3px 6px;
      background-color: #eb0f32;
      background-color: var(--red-01);
      font-size: 1.2rem;
      color: #fff;
      color: var(--white);
      line-height: 1.1;
      vertical-align: middle;
    }

@media only screen and (max-width: 768px) {

.text-detail-03__text--is-new::after {
        font-size: 1rem
    }
      }

.text-detail-03__button {
    display: inline-block;
  }

@media only screen and (max-width: 768px) {

.text-detail-03__button {
      display: block;
      margin-top: 4px
  }
    }

.text-detail-tag-01::after {
    top: -2px;
    position: relative;
    display: inline-block;
    margin-left: 8px;
    padding: 3px 5px 2px;
    background-color: #eb0f32;
    background-color: var(--red-01);
    font-weight: 400;
    font-size: 1.2rem;
    color: #fff;
    color: var(--white);
    line-height: 1.1;
    vertical-align: middle;
  }

@media only screen and (max-width: 768px) {

.text-detail-tag-01::after {
      font-size: 1rem
  }
    }

.text-detail-tag-01--new-price::after {
    content: '譁ｰ萓｡譬ｼ';
  }

.text-detail-tag-01--new-build::after {
    content: '譁ｰ遽�';
  }

.text-error-01 {
  padding: 8px 20px 0;
  color: #eb0f32;
  color: var(--red-01);
  font-size: 1.8rem;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {

.text-error-01 {
    padding: 7px 0 0;
    font-size: 1.6rem
}
  }

.text-highlight-01 {
  margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {

.text-highlight-01 {
    margin-bottom: 15px
}
  }

.text-highlight-01:last-child {
    margin-bottom: 0;
  }

.text-highlight-01__text {
    display: inline-block;
    padding: 4px 6px;
    color: #333;
    color: var(--black-01);
    background-color: #d9f4fb;
  }

.text-highlight-01--is-block .text-highlight-01__text {
    display: block;
  }

.text-indent {
  padding-left: 40px;
}

.text-price-01 {
  font-weight: 700;
}

.text-price-01__number {
    font-size: 2.4rem;
    color: #eb0f32;
    color: var(--red-01);
  }

@media only screen and (max-width: 768px) {

.text-price-01__number {
      font-size: 1.8rem
  }
    }

.text-price-01__tax {
    font-size: 1.4rem;
  }

.text-required-01 {
  display: table;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 2px 9px;
  background: #eb0f32;
  background: var(--red-01);
  border: 1px solid #eb0f32;
  border: 1px solid var(--red-01);
  text-align: center;
  color: #fff;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {

.text-required-01 {
    display: inline-block;
    position: relative;
    top: 2px;
    -webkit-flex: none;
            flex: none;
    margin-left: 15px;
    padding: 1px 10px;
    vertical-align: top;
    font-size: 1rem
}
  }

.text-required-01--is-error {
    background: #fff;
    background: var(--white);
    color: #eb0f32;
    color: var(--red-01);
  }

.title-badge {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 769px) {

.title-badge {
    font-size: 2.8rem;
    margin-bottom: 30px
}
  }

.title-badge__label {
    font-size: 1.1rem;
    margin-left: 5px;
    color: #fff;
    color: var(--white);
    background-color: #eb0f32;
    background-color: var(--red-01);
    padding: 2px 6px;
  }

@media print, screen and (min-width: 769px) {

.title-badge__label {
      font-size: 1.2rem;
      padding: 2px 8px;
      margin-left: 8px
  }
    }

.title-border-02 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ddd;
  border-bottom: 3px solid var(--gray-03);
  color: #333;
  color: var(--black-01);
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-border-02 {
    margin-bottom: 18px;
    padding-bottom: 7px;
    border-bottom: 2px solid #ddd;
    border-bottom: 2px solid var(--gray-03)
}
  }

.title-border-02__tag {
    overflow: hidden;
    display: inline-block;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    min-width: 110px;
    margin-right: 10px;
    padding: 8px 10px;
    background: #1f2646;
    background: var(--darkBlue-01);
    text-align: center;
    vertical-align: top;
    color: #fff;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.4;
  }

@media only screen and (max-width: 768px) {

.title-border-02__tag {
      min-width: 0;
      margin-top: 7px;
      padding: 1px 10px;
      font-size: 1rem
  }
    }

.title-border-02__title {
    -webkit-flex: 1;
            flex: 1;
    font-size: 2.2rem;
    line-height: 1.4;
  }

@media only screen and (max-width: 768px) {

.title-border-02__title {
      font-size: 2rem;
      line-height: 1.5
  }
    }

.title-border-02--is-tag .title-border-02__title {
    padding-top: 3px;
  }

@media only screen and (max-width: 768px) {

.title-border-02--is-tag .title-border-02__title {
      padding-top: 0
  }
    }

.title-border-03 {
  margin-bottom: 25px;
  padding-bottom: 8px;
  border-bottom: 3px solid #ddd;
  border-bottom: 3px solid var(--gray-03);
  font-size: 2.6rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-border-03 {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-width: 2px;
    font-size: 2rem
}
  }

.title-border-04 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 8px;
  border-bottom: 3px solid #ddd;
  border-bottom: 3px solid var(--gray-03);
}

@media only screen and (max-width: 768px) {

.title-border-04 {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none
}
  }

.title-border-04__title {
    -webkit-flex: 1;
            flex: 1;
    font-size: 2.2rem;
    font-weight: 700;
  }

@media only screen and (max-width: 768px) {

.title-border-04__title {
      margin-bottom: 5px;
      padding-bottom: 4px;
      border-bottom: 3px solid #ddd;
      border-bottom: 3px solid var(--gray-03);
      font-size: 2rem
  }
    }

.title-border-04__text {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-top: 6px;
    color: #999;
    color: var(--gray-02);
    font-size: 1.6rem;
  }

@media only screen and (max-width: 768px) {

.title-border-04__text {
      padding-top: 0;
      font-size: 1.2rem;
      text-align: right
  }
    }

.title-border {
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 3px solid #ddd;
  border-bottom: 3px solid var(--gray-03);
  font-size: 2.2rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-border {
    margin-bottom: 15px;
    font-size: 2rem;
    border-width: 2px
}
  }

.title-border--small {
    border-width: 1px;
    font-size: 1.8rem;
  }

@media only screen and (max-width: 768px) {

.title-border--small {
      font-size: 1.6rem
  }
    }

.title-color {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 6px 10px;
  background-color: #d9f4fb;
  background-color: var(--lightBlue-04);
  margin-bottom: 15px;
  display: block;
}

.title-content-01 {
  margin-bottom: 14px;
  color: #333;
  color: var(--black-01);
  font-size: 2.2rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-content-01 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    padding: 0 15px
}
  }

.title-content-02 {
  margin-bottom: 12px;
  color: #333;
  color: var(--black-01);
  font-size: 1.8rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-content-02 {
    margin-bottom: 7px;
    font-size: 1.4rem
}
  }

.title-content-03 {
  margin-bottom: 14px;
  color: #333;
  color: var(--black-01);
  font-size: 2.2rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-content-03 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    padding: 0
}
  }

.title-content-04 {
  margin-top: 60px;
  padding: 12px 20px 11px;
  background: #1f2646;
  background: var(--darkBlue-01);
  color: #fff;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {

.title-content-04 {
    margin: 30px -15px 0;
    padding: 13px 15px 12px;
    font-size: 1.6rem
}
  }

.title-content-04__small-text {
    margin-left: 7px;
    font-size: 1.4rem;
    font-weight: 400;
  }

.title-content-05 {
  margin-bottom: 25px;
  padding: 10px 20px;
  background: #1f2646;
  background: var(--darkBlue-01);
  color: #fff;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.37;
}

@media only screen and (max-width: 768px) {

.title-content-05 {
    margin-bottom: 20px;
    padding: 5px 10px;
    font-size: 2rem;
    line-height: 1.5
}
  }

.title-content-06 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 12px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.37;
}

@media only screen and (max-width: 768px) {

.title-content-06 {
    margin-bottom: 14px;
    padding-left: 10px;
    font-size: 2rem;
    line-height: 1.5
}
  }

.title-content-06::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 2px;
    height: calc(100% - 10px);
    background: #1f2646;
    background: var(--darkBlue-01);
  }

.title-content-07 {
  margin-bottom: 9px;
  font-size: 2.2rem;
  line-height: 1.45;
}

@media only screen and (max-width: 768px) {

.title-content-07 {
    margin-bottom: 5px;
    font-size: 2rem
}
  }

.title-date {
  overflow: hidden;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {

.title-date {
    display: block;
    margin-bottom: 10px
}
  }

.title-date__title {
    float: left;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

@media only screen and (max-width: 768px) {

.title-date__title {
      font-size: 2rem
  }
    }

.title-date__date {
    float: right;
    padding-top: 5px;
    padding-left: 20px;
    font-size: 1.6rem;
    color: #999;
    color: var(--gray-02);
  }

@media only screen and (max-width: 768px) {

.title-date__date {
      font-size: 1.3rem;
      text-align: right
  }
    }

.title-form-01 {
  -webkit-flex: 1;
          flex: 1;
  color: #333;
  color: var(--black-01);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {

.title-form-01 {
    display: inline;
    -webkit-flex: none;
            flex: none
}
  }

.title-form-01--small-text {
    padding-left: 5px;
    font-size: 1.4rem;
    font-weight: 400;
  }

.title-icon-02 {
  margin-bottom: 8px;
  padding-bottom: 4px;
}

@media only screen and (max-width: 768px) {

.title-icon-02 {
    margin-bottom: 16px;
    padding-bottom: 0;
    font-size: 0
}
  }

.title-icon-02__text {
    position: relative;
    padding-left: 58px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
  }

@media only screen and (max-width: 768px) {

.title-icon-02__text {
      display: inline-block;
      padding-left: 37px;
      font-size: 2rem
  }
    }

.title-icon-02__text::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 39px;
      height: 39px;
      background: url('/images/ico_search_02.svg') no-repeat left top;
      background-size: 39px 39px;
    }

@media only screen and (max-width: 768px) {

.title-icon-02__text::before {
        width: 27px;
        height: 27px;
        background-size: 27px 27px
    }
      }

.title-icon {
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {

.title-icon {
    margin-bottom: 20px;
    text-align: center
}
  }

.title-icon:last-child {
    margin: 0;
  }

.title-icon__text-icon {
    position: relative;
    display: inline-block;
    padding-left: 55px;
    font-size: 2.6rem;
    font-weight: 700;
  }

@media only screen and (max-width: 768px) {

.title-icon__text-icon {
      padding-left: 35px;
      font-size: 2rem
  }
    }

.title-icon__text-icon--icon-search::after {
      top: 50%;
      left: 0;
      position: absolute;
      width: 38px;
      height: 38px;
      background: url('/images/ico_search_02.svg') no-repeat;
      background-size: 38px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

@media only screen and (max-width: 768px) {

.title-icon__text-icon--icon-search::after {
        width: 27px;
        height: 27px;
        background-size: 27px
    }
      }

.title-icon__text-small {
    display: inline-block;
    padding-left: 31px;
    font-size: 1.6rem;
    font-weight: 400;
  }

@media only screen and (max-width: 768px) {

.title-icon__text-small {
      display: block;
      margin-top: 12px;
      padding-left: 0;
      font-size: 1.2rem
  }
    }

.title-icon--align-left {
    text-align: left;
  }

@media only screen and (max-width: 768px) {

.title-icon--align-left {
      line-height: 1.2
  }
    }

.title-icon--align-left .title-icon__text-icon.title-icon__text-icon--icon-search::after {
    top: 0;
    -webkit-transform: none;
            transform: none;
  }

@media only screen and (max-width: 768px) {

.title-icon--align-left .title-icon__text-icon.title-icon__text-icon--icon-search::after {
      top: -2px
  }
    }

.title-side {
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-size: 2rem;
  border-bottom: 3px solid #ddd;
  border-bottom: 3px solid var(--gray-03);
}

@media only screen and (max-width: 768px) {

.title-side {
    border-bottom: 2px solid #ddd;
    border-bottom: 2px solid var(--gray-03)
}
  }

@media only screen and (max-width: 768px) {

.title-side--no-border-sp {
      padding-bottom: 0;
      border-bottom: none
  }
    }

.title-tag-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

@media only screen and (max-width: 768px) {

.title-tag-01 {
    display: block
}
  }

.title-tag-01__tag {
    display: block;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 10px;
    padding: 10px 14px;
    background-color: #1f2646;
    background-color: var(--darkBlue-01);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    color: var(--white);
    line-height: 1.1;
  }

@media only screen and (max-width: 768px) {

.title-tag-01__tag {
      display: none
  }
    }

.title-tag-01__title {
    -webkit-flex: 1;
            flex: 1;
    font-size: 2.6rem;
    font-weight: 700;
  }

@media only screen and (max-width: 768px) {

.title-tag-01__title {
      font-size: 1.8rem
  }
    }

.title-tag-01__title--is-new::after {
      position: relative;
      top: -2px;
      display: inline-block;
      -webkit-align-self: center;
              align-self: center;
      margin-left: 10px;
      padding: 3px 5px 2px;
      background-color: #eb0f32;
      background-color: var(--red-01);
      font-size: 1.2rem;
      color: #fff;
      color: var(--white);
      line-height: 1.1;
      vertical-align: middle;
      white-space: nowrap;
      content: 'NEW';
    }

@media only screen and (max-width: 768px) {

.title-tag-01__title--is-new::after {
        font-size: 1rem
    }
      }

.vr-props-detail-sp__in {
    display: -webkit-flex;
    display: flex;
    min-height: 140px;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 1.3rem;
    color: #fff;
    color: var(--white);
  }

.vr-props-detail-sp__title {
    margin-bottom: 10px;
    font-size: 1.9rem;
    text-align: center;
  }

.vr-props-detail-sp__button-wrapper {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px;
  }

.vr-props-detail-sp__button-wrapper:last-child {
      margin-bottom: 0;
    }

.vr-props-detail-sp__button {
    display: block;
    width: 50%;
    padding: 10px;
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    border-left: 1px solid #d6d6d6;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    text-align: center;
  }

.vr-props-detail-sp__button:first-child {
      border-bottom-left-radius: 6px;
    }

.vr-props-detail-sp__button:last-child {
      border-bottom-right-radius: 6px;
      border-right: 1px solid #d6d6d6;
    }

.vr-props-detail-sp__button-icon {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    font-size: 1.6rem;
  }

.vr-props-detail-sp__button-icon::before {
      top: 50%;
      left: 0;
      position: absolute;
      width: 20px;
      height: 20px;
      background: url(/images/ico_play_01.svg) no-repeat;
      background-size: 20px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

.vr-props-detail-sp__note {
    font-size: 1.2rem;
  }

.vr-props-detail__text {
    margin-bottom: 12px;
  }

.widget-banner {
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {

.widget-banner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -8px;
    margin-bottom: 10px;
    margin-left: -8px
}
  }

.widget-banner:last-child {
    margin-bottom: 0;
  }

.widget-banner__item {
    width: 100%;
    margin-bottom: 10px;
  }

@media only screen and (max-width: 768px) {

.widget-banner__item {
      width: 50%;
      padding-right: 8px;
      padding-left: 8px
  }
    }

@media only screen and (max-width: 768px) {

.widget-banner__item--full-width-sp {
        width: 100%
    }
      }

.widget-banner__item:last-child {
      margin-bottom: 0;
    }

.widget-banner__link {
    display: block;
  }

.widget-banner__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.widget-banner__image {
    display: block;
    width: 235px;
    height: 85px;
    margin-right: auto;
    margin-left: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .widget-banner__image02 {
    display: block;
    width: 235px;
    height: 203px;
    margin-right: auto;
    margin-left: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

.widget-banner__image--small {
      width: 225px;
      height: 80px;
    }

.widget-banner__image02--small {
      width: 225px;
      height: 80px;
    }

.widget-banner__image--medium {
      width: 235px;
      height: 75px;
    }

.widget-banner__image02--medium {
      width: 235px;
      height: 75px;
    }

@media print, screen and (min-width: 769px) {

.widget-banner__image--full-width-pc {
        width: 100%;
        height: 80px
    }

.widget-banner__image02--full-width-pc {
        width: 100%;
        height: 80px
    }
      }

@media only screen and (max-width: 768px) {

.widget-banner__image {
      width: 100%;
      height: auto;
      padding-top: 36.36%
  }
.widget-banner__image02 {
      width: 100%;
      height: auto;
      padding-top: 36.36%
  }
    }

@media only screen and (max-width: 768px) {

.widget-banner__item--full-width-sp .widget-banner__image {
      width: 100%;
      height: auto;
      padding-top: 37.1%
  }

  .widget-banner__item--full-width-sp .widget-banner__image02 {
      width: 100%;
      height: auto;
      padding-top: 37.1%
  }
    }

.widget-card {
  position: relative;
  margin-bottom: 20px;
  background-color: #fff;
  background-color: var(--white);

  /*
  &-mod-primary {
    .widget-card__inner {
      padding: 0;
      display: flex;
      flex-wrap: wrap;

      @media (--viewport-pc) {
        display: block;
      }
    }

    .widget-card__heading,
    .widget-card__content {
      display: block;
    }

    .widget-card__heading {
      flex: 0 0 42%;
      margin-right: 12px;

      @media (--viewport-pc) {
        margin-right: 0;
      }

      .widget-card__cover {
        width: 100%;
        height: 93px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        margin: 0 0 10px;
        display: block;

        @media (--viewport-pc) {
          height: 165px;
        }
      }
    }

    .widget-card__content {
      .widget-card__title {
        font-size: 1.4rem;
        font-weight: bold;
        color: var(--black-01);
        margin-bottom: 5px;
        display: block;

        @media (--viewport-pc) {
          font-size: 1.8rem;
        }
      }

      .widget-card__price {
        font-size: 1.4rem;
        color: #eb0f32;
        margin-bottom: 6px;

        @media (--viewport-pc) {
          font-size: 1.6rem;
        }
      }

      .widget-card__desc {
        font-size: 1.4rem;

        @media (--viewport-pc) {
          font-size: 1.6rem;
        }
      }

      .widget-card__info {
        display: flex;
        flex-wrap: wrap;

        .widget-card__name {
          flex: 0 0 30%;
          font-size: 1.2rem;
          align-self: flex-end;

          @media (--viewport-pc) {
            flex: 0 0 28%;
            font-size: 1.4rem;
          }
        }

        .widget-card__value {
          font-size: 1.4rem;
          line-height: 1.6rem;
          align-self: flex-end;

          @media (--viewport-pc) {
            font-size: 1.6rem;
            line-height: 2.15rem;
          }

          .widget-card__sup {
            font-size: 1rem;
          }
        }
      }
    }
  }

  &-mod-order {
    .widget-card__heading {
      position: relative;

      &::before {
        content: attr(data-content);
        width: 32px;
        height: 32px;
        text-align: center;
        color: var(--white);
        font-size: 1.6rem;
        border-radius: 16px;
        background-color: var(--darkBlue-01);
        position: absolute;
        top: -10px;
        left: -10px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
  }
  */
}

.widget-card:last-child {
    margin-bottom: 0;
  }

.widget-card__inner {
    padding: 20px;
  }

.widget-card__heading {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 10px;
  }

.widget-card__item {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%;
    font-size: 1.8rem;
  }

.widget-card__item--icon {
      -webkit-flex: 0 0 44px;
              flex: 0 0 44px;
      margin-right: 10px;
    }

.widget-card__title {
    font-size: 1.8rem;
  }

.widget-card__content {
    font-size: 1.4rem;
  }

.map-iframe {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: -45.45%;
  margin-bottom: 40px;
  display: block;
}

.map-iframe.__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 0;
  }

.widget-panel {
  border: 2px solid #ffa000;
  border: 2px solid var(--mainOrange);
  border-radius: 8px;
  padding: 15px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #797979;
  color: var(--gray-01);
  position: relative;
  display: block;
  background-color: #fff;
  background-color: var(--white);
}

.widget-panel:not(:last-child) {
    margin-bottom: 20px;
  }

.widget-panel--link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.widget-panel--light-blue {
    padding: 0 0 3px;
    background-color: #dad9d9;
    border-color: #00b7e1;
    border-color: var(--lightBlue-01);
    overflow: hidden;
  }

.widget-panel__inner {
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    background-color: var(--white);
    position: relative;
  }

.widget-panel--light-blue .widget-panel__inner {
    padding: 15px 15px 8px !important;
  }

.widget-panel__flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    position: relative;
  }

.widget-panel__flex__item {
      -webkit-flex-basis: 0;
              flex-basis: 0;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      max-width: 100%;
    }

.widget-panel__flex__item .title {
        font-size: 1.8rem;
      }

.widget-panel__flex__item .title.light-blue {
          color: #00b7e1;
          color: var(--lightBlue-01);
        }

.widget-panel__flex-envelope {
      padding-right: 15px;
    }

.widget-panel__flex-envelope .widget-panel__flex__item:first-child {
        -webkit-flex: 0 0 72px;
                flex: 0 0 72px;
        width: 100%;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
                align-items: center;
        -webkit-justify-content: center;
                justify-content: center;
        margin-right: 12px;
      }

.widget-panel__flex-envelope::after {
        content: '';
        width: 10px;
        height: 17px;
        top: 50%;
        right: 0;
        position: absolute;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        background-image: url('/images/ico_arrow_right_03.svg');
      }

.widget-panel__item {
    margin-bottom: 15px;
  }

.widget-panel__item:last-child {
      margin-bottom: 0;
    }

.widget-panel__title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffa000;
    color: var(--mainOrange);
    letter-spacing: -0.12rem;
    border-bottom: 2px solid #ffa000;
    border-bottom: 2px solid var(--mainOrange);
    padding-bottom: 1rem;
    margin-bottom: 15px;
    display: block;
    position: relative;
  }

@media print, screen and (min-width: 769px) {

.widget-panel__title {
      font-size: 1.8rem
  }
    }

.widget-panel__title-icon {
      padding-right: 20px;
    }

.widget-panel__title-icon:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

.widget-panel__title-icon::after {
        content: '';
        width: 10px;
        height: 17px;
        top: calc(50% - 7px);
        right: 0;
        position: absolute;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        background-image: url('/images/ico_arrow_right_02.svg');
      }

.widget-panel__subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffa000;
    color: var(--mainOrange);
    margin-bottom: 5px;
    display: block;
  }

.widget-panel__subtitle--no-margin {
      margin-bottom: 0;
    }

.widget-panel__list {
    margin: 0;
  }

.widget-panel__list-item {
      padding: 10px 20px 10px 0;
      position: relative;
    }

.widget-panel__list-item:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
      }

.widget-panel__list-item::before {
        content: '';
        width: 10px;
        height: 17px;
        top: calc(50%);
        right: 0;
        position: absolute;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        background-image: url('/images/ico_arrow_right_03.svg');
      }

@media print, screen and (min-width: 769px) {

.widget-panel__list-item {
        padding: 4px 0 4px 20px
    }

        .widget-panel__list-item:not(:last-child) {
          border-bottom: none;
        }

        .widget-panel__list-item::before {
          top: 9px;
          right: auto;
          left: 0;
          position: absolute;
          -webkit-transform: none;
                  transform: none;
        }
      }

.widget-panel__list-link {
      font-size: 1.6rem;
      font-weight: 300;
      color: #333;
      color: var(--black-01);
    }

.widget-panel__list-link:hover {
        opacity: 0.7;
        opacity: var(--opacity);
      }

@media print, screen and (min-width: 769px) {

.widget-panel__list-link {
        font-size: 1.8rem
    }
      }

.widget-panel__divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    background-color: var(--gray-03);
    margin-bottom: 15px;
  }

.widget-panel__btn {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    color: var(--white);
    padding: 11px 15px;
    border-radius: 6px;
    background-color: #ffa000;
    background-color: var(--mainOrange);
    box-shadow: 0 5px 0 #da8800;
    display: block;
    position: relative;
  }

.widget-panel__btn img {
      margin-right: 8px;
    }

.widget-panel__btn::after {
      content: '';
      width: 10px;
      height: 17px;
      top: 50%;
      right: 20px;
      position: absolute;
      background-image: url('/images/ico_arrow_right_01.svg');
      background-size: 10px 17px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }

.widget-panel__btn:hover {
      color: #fff;
      color: var(--white);
      opacity: 0.7;
      opacity: var(--opacity);
    }

.widget-panel__btn:last-child {
      margin-bottom: 5px;
    }

.widget-panel__text-note-01 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #666;
    color: var(--gray-06);
  }

.widget-panel__text-note-02 {
    margin-top: 5px;
  }

.widget-simple-list {
  padding: 0;
}

.widget-simple-list__link {
    transition: opacity 0.2s ease-in-out;
  }

.widget-simple-list__link:hover {
      opacity: 0.7;
      opacity: var(--opacity);
    }

.box-step {
  width: 100%;
  margin-bottom: 35px;
  position: relative;
}

.box-step::before,
  .box-step::after {
    content: '';
    display: table;
  }

.box-step::after {
    clear: both;
  }

.box-step__list {
    margin: 0;
  }

.box-step__list::before,
    .box-step__list::after {
      content: '';
      display: table;
    }

.box-step__list::after {
      clear: both;
    }

.box-step__link {
    height: 55px;
    font-size: 1.6rem;
    color: #999;
    color: var(--gray-02);
    background-color: #f6f6f6;
    background-color: var(--gray-08);
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-right: none;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
  }

.box-step__link::after {
      content: '';
      width: 39px;
      height: 39px;
      background-color: #f6f6f6;
      background-color: var(--gray-08);
      border: 1px solid #999;
      border: 1px solid var(--gray-02);
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      border-left: none !important;
      border-bottom: none !important;
      position: absolute;
      right: -20px;
      top: 7px;
      z-index: 1;
    }

.box-step__active .box-step__link {
      color: #fff;
      color: var(--white);
      background-color: #bcbcbc;
      background-color: var(--gray-07);
      border: 1px solid #bcbcbc;
      border: 1px solid var(--gray-07);
    }

.box-step__active .box-step__link::after {
        background-color: #bcbcbc;
        background-color: var(--gray-07);
        border: 1px solid #f6f6f6;
        border: 1px solid var(--gray-08);
      }

.box-step__item {
    width: 33.333%;
    float: left;
  }

.box-step__item:first-child .box-step__link {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
      }

.box-step__item:last-child .box-step__link {
        border-right: 1px solid #999;
        border-right: 1px solid var(--gray-02);
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
      }

.box-step__item:last-child .box-step__link::after {
          content: none !important;
        }

.widget-tab {
  width: 100%;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 769px) {

.widget-tab {
    overflow: hidden
}
  }

.widget-tab__nav-tabs {
    margin: 0 0 40px;
    display: block;
    position: relative;
  }

.widget-tab__nav-item {
    padding-bottom: 3px;
    border: 1px solid #999;
    border: 1px solid var(--gray-02);
    border-right: none;
    position: relative;
    overflow: hidden;
    float: left;
  }

@media print, screen and (min-width: 769px) {

.widget-tab__nav-item {
      width: calc(100% / 6)
  }
    }

.widget-tab__nav-item:first-child {
      border-right: none;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
    }

.widget-tab__nav-item:last-child {
      border-right: 1px solid #999;
      border-right: 1px solid var(--gray-02);
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
    }

.widget-tab__nav-item--is-active {
      border-top: 1px solid #00b7e1;
      border-top: 1px solid var(--lightBlue-01);
      border-bottom: 1px solid #009cbf;
    }

.widget-tab__tab-link {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
    background-color: #fff;
    background-color: var(--white);
    padding: 13px 10px;
    box-shadow: 0 3px 0 #dad9d9;
    transition: all 0.12s ease-in-out;
    display: block;
  }

.widget-tab__nav-item--is-active .widget-tab__tab-link {
    color: #fff;
    color: var(--white);
    background-color: #00b7e1;
    background-color: var(--lightBlue-01);
    box-shadow: 0 3px 0 #009cbf;
  }

.widget-tab__nav-item:first-child .widget-tab__tab-link {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }

.widget-tab__nav-item:last-child .widget-tab__tab-link {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

.widget-tab__content-item {
    display: none;
  }

.widget-tab__content-item--is-active {
      display: block;
    }

.wrapper {
  min-width: 1160px;
  min-width: var(--contentWidth);
}

@media only screen and (max-width: 768px) {

.wrapper {
    min-width: 0
}
  }

.checkbox-condition-01.select-none {
  background: #e4e4e4;
  background: var(--gray-03);
  box-shadow: none;
}





.nav-global-sub {
  top: 100%;
  left: calc(50% - 550px);
  position: absolute;
  z-index: 10;
  display: none;
  width: 1100px;
  background-color: #ffffff;
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--lineGray-01);
  border-bottom: none;
  border-left: none;
  border-right: none;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(209,209,209,1);
  -moz-box-shadow: 0px 2px 5px -1px rgba(209,209,209,1);
  box-shadow: 0px 2px 5px -1px rgba(209,209,209,1);
}

@media only screen and (max-width: 768px) {

.nav-global-sub {
    position: static;
    width: 100%;
    background-color: #ebe6da;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
    box-shadow: none;
}
  }

.nav-global-sub__in {
    position: relative;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding: 50px 50px 50px;
    display: flex;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__in {
      width: auto;
      padding: 26px 15px;
      display: block;
  }
    }

.nav-global-sub__section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width:37.3%;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__section {
      margin-bottom: 40px;
      padding-bottom: 0;
      border: none;
      width:100%;
  }
    }

.nav-global-sub__section:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none;
      width:66.66%;
    }
@media (max-width: 768px) {
.nav-global-sub__section:last-child {
      width:100%;
      }
}

.nav-global-sub__title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__title {
      margin-bottom: 15px;
      font-size: 2rem;
      text-align: center
  }
    }

.nav-global-sub__column {
    display: -webkit-flex;
    display: flex;
  }
  .nav-global-sub__column.length {
    flex-direction: column;
  }
  @media (max-width: 768px) {
  .nav-global-sub__column.length {
    flex-direction: row;
      }
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__column {
      display: block
  }
    }

.nav-global-sub__column-main {
    -webkit-flex: 1;
            flex: 1;
    padding-right: 30px;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__column-main {
      padding-right: 0
  }
    }

.nav-global-sub__column-side {
    -webkit-flex: 0 0 280px;
            flex: 0 0 280px;
    width: 280px;
  }
.nav-global-sub__column-side.searchNumber {
    flex: none;
    width:310px;
  }
.nav-global-sub__column-side.searchNumber .search-input{
    height:55px;
}

@media only screen and (max-width: 768px) {

.nav-global-sub__column-side {
      width: auto
  }
.nav-global-sub__column-side.searchNumber {
      flex: 1;
      width:auto;
  }
 .nav-global-sub__column-side.searchNumber .search-input{
      height:46px;
}
    }

@media only screen and (max-width: 768px) {

.nav-global-sub__column--sp-swap {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column-reverse;
              flex-direction: column-reverse
  }
    }

@media only screen and (max-width: 768px) {

.nav-global-sub__column--sp-swap .nav-global-sub__column-main {
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto
  }
    }

@media only screen and (max-width: 768px) {

.nav-global-sub__column--sp-swap .nav-global-sub__column-side {
      -webkit-flex: 0 0 auto;
              flex: 0 0 auto;
      margin-bottom: 35px
  }
    }

.nav-global-sub__list-button {
    display: block;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 0;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 28px;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__list-button {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
      margin: -8px -8px 28px
  }
    }

.nav-global-sub__list-button-item {
    margin-top: 0;
    padding-right: 10px;
    padding-left: 10px;
    /*flexbox*/
      display:-webkit-box;
      display:-moz-box;
      display:-webkit-flexbox;
      display:-moz-flexbox;
      display:-ms-flexbox;
      display:-webkit-flex;
      display:-moz-flex;
      display:flex;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__list-button-item {
      width: 50%;
      margin-top: 8px;
      padding-right: 8px;
      padding-left: 8px;
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__list-button--col-02 .nav-global-sub__list-button-item {
      width: 100%
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__list-button--col-03 .nav-global-sub__list-button-item {
      width: 100%
  }
    }

.nav-global-sub__button-link {
  /* 修正前
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 2rem;
    color: #333;
    color: var(--black-01);
    letter-spacing: -0.5px;
    text-align: center;
    */
    /* ↓ボタン内文字位置修正後 201090628↓ */
    width:100%;
    position: relative;
    display: block;
    padding-top: 14px;
    padding-right: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
  }

  .nav-global-sub__button-link::after {
    top: 50%;
    right: 0;
    position: absolute;
    width: 10px;
    height: 18px;
    background: url(../../images/ico_arrow_right_03.svg) no-repeat;
    background-size: 10px 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
}

@media (max-width: 768px) {

.nav-global-sub__button-link {
    display:-webkit-box;
    display:-moz-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    width: 100%;
    min-height: 100%;
    padding: 12px 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border: 1px solid var(--lineGray-01);
    background-color: #fff;
    background-color: var(--white);
    box-shadow: inset 0 -3px rgba(7, 0, 0, 0.15);
    font-size: 2rem;
    color: #333;
    color: var(--black-01);
    letter-spacing: -0.5px;
    text-align: center;
    /*flexbox設定*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 1.6rem;
    color: #00b7e1;
    color: var(--lightBlue-01)
  }
.nav-global-sub__button-link::after {
    display: none;
}
    }

.nav-global-sub__button-link--narrow {
      letter-spacing: -1.6px;
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__button-link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.nav-global-sub__list-link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -14px;
    margin-left: -14px;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__list-link {
      display: block;
      margin: 0
  }
    }

.nav-global-sub__list-link-item {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__list-link-item {
      width: auto;
      padding: 0
  }
    }

.nav-global-sub__text-link {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-right: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--lineGray-01);
    font-size: 1.8rem;
    color: #333;
    color: var(--black-01);
  }

@media only screen and (max-width: 768px) {

.nav-global-sub__text-link {
      padding-top: 11px;
      padding-right: 15px;
      padding-bottom: 11px;
      border-color: #f5f4ee;
      border-color: var(--gray-05);
      font-size: 1.6rem
  }
    }

@media print, screen and (min-width: 769px) {

.nav-global-sub__text-link:hover {
        opacity: 0.7;
        opacity: var(--opacity)
    }
      }

.nav-global-sub__text-link::after {
      top: 50%;
      right: 0;
      position: absolute;
      width: 10px;
      height: 18px;
      background: url('/images/ico_arrow_right_03.svg') no-repeat;
      background-size: 10px 18px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      content: '';
    }

@media only screen and (max-width: 768px) {

.nav-global-sub__text-link::after {
        right: 0;
        width: 8px;
        height: 12px;
        background-size: 8px 12px
    }
      }

.nav-global-sub__link-more {
    margin-top: 15px;
  }

.nav-global {
  position: relative;
  z-index: 3;
  background-color: #fff;
  background-color: var(--white);
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--lineGray-01);
}

@media only screen and (max-width: 768px) {

.nav-global {
    border-bottom: none
}
  }

.nav-global__in {
    width: 1160px;
    width: var(--contentWidth);
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
    padding: var(--contentPadding);
  }

@media only screen and (max-width: 768px) {

.nav-global__in {
      width: auto;
      padding: 0
  }
    }

.nav-global__list-nav {
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }

@media only screen and (max-width: 768px) {

.nav-global__list-nav {
      -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
      border-right: none
  }
    }

.nav-global__list-item {
    width: 20%;
    border-left: 1px solid #ccc;
    border-left: 1px solid var(--lineGray-01);
  }

@media only screen and (max-width: 768px) {

.nav-global__list-item {
      width: 50%;
      border-bottom: 1px solid #ccc;
      border-bottom: 1px solid var(--lineGray-01)
  }
.nav-global__list-item.wide100 {
  width: 100%;
}
    }

@media print, screen and (min-width: 769px) {

.nav-global__list-item--border-pc {
        border-right: 1px solid #ccc;
        border-right: 1px solid var(--lineGray-01)
    }
      }

@media only screen and (max-width: 768px) {

.nav-global__list-sub-item {
      width: 100%
  }
    }

.nav-global__link {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
    height: 38px;
    color: #333;
    color: var(--black-01);
    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
  }

@media only screen and (max-width: 768px) {

.nav-global__link {
      height: 49px;
      font-size: 1.6rem;
      font-weight: 700;
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
      color: #fff;
      color: var(--white)
  }
    }

/* &:hover {
      @media (--viewport-pc) {
        color: var(--white) var(--darkBlue-01);
      }
    } */

.nav-global__link--is-active {
      color: #fff;
      color: var(--white);
      background-color: #1f2646;
      background-color: var(--darkBlue-01);
    }

@media print, screen and (min-width: 769px) {

.nav-global__link--is-active {
        color: #fff;
        color: var(--white);
        background-color: #1f2646;
        background-color: var(--darkBlue-01)
    }
      }

@media only screen and (max-width: 768px) {

.nav-global__link::after {
        width: 8px;
        height: 12px;
        top: 50%;
        right: 15px;
        position: absolute;
        background: url('/images/ico_arrow_right_01.svg') no-repeat;
        background-size: 8px 12px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        content: ''
    }
      }

.nav-global__link--icon-plus::after {
      width: 12px;
      height: 12px;
      background: url('/images/ico_plus_02.svg') no-repeat;
      background-size: 12px;
    }

.nav-global__link--icon-minus::after {
      width: 12px;
      height: 12px;
      background: url('/images/ico_minus_02.svg') no-repeat;
      background-size: 12px;
    }









/*# sourceMappingURL=style.css.map */

div#jsServiceOverlay{
left: 4%;
}

.overlay04 {
width: 92%
}

.imgArea img {
width: 96%;
height: auto;
}

.overlay04 .content01 {
margin-bottom: 10px;
}


.disable{
  background-color:#696969;
  background: #696969;
}
.red {
	color: var(--red-01);
}
