/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 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 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

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

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

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

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

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

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

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #404040;
  line-break: strict;
  min-width: 144rem;
  isolation: isolate;
  background: #fff;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
  width: 100%;
  height: auto;
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 1440.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-main {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-main {
    padding-top: 6rem;
  }
}

.f-wrap {
  max-width: 121rem;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .f-wrap {
    width: auto;
    padding: 0 1.7rem;
  }
}
.f-wrap__inner {
  width: 90rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .f-wrap__inner {
    width: auto;
  }
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* link
--------------------------------------------------*/
a {
  color: #404040;
  transition: 0.5s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.5;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #404040;
  transition: 0.5s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(4rem);
  transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.l-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background: #fff;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    padding: 0 1.2rem;
    background: #fff;
    z-index: 1000;
  }
}
.l-header__logo {
  width: 19.1rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 12.4rem;
    justify-self: flex-start;
  }
}
.l-header__wrap {
  width: 128rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    width: 100%;
    justify-items: flex-end;
  }
}
.l-header__menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    margin: 0;
  }
}
.l-header-tools {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-tools {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 6rem);
    opacity: 1;
    overflow-y: scroll;
    background: #fff;
    z-index: 101;
    transform: translateX(100vw);
    transition: 0.5s;
  }
  .is-fixed .l-header-nav {
    transform: translateX(0);
  }
}
.l-header-nav-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu {
    display: block;
  }
}
.l-header-nav-menu__item {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item {
    border-top: 1px solid #808080;
    font-weight: 700;
  }
  .l-header-nav-menu__item.contact {
    font-size: 2rem;
  }
  .l-header-nav-menu__item.contact a {
    background: #EB6120;
    color: #fff;
  }
  .l-header-nav-menu__item.contact a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 1.4rem;
    height: 1.4rem;
    background: url(../img/common/icn_btn_arrow.svg) center center/100% auto no-repeat;
    transform: translateY(-50%);
  }
}
.l-header-nav-menu__item a {
  display: inline-block;
  position: relative;
  color: #404040;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.8rem 3rem 1.8rem 1.6rem;
  }
  .l-header-nav-menu__item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 1.4rem;
    height: 1.4rem;
    background: url(../img/common/icn_btn_arrow_or.svg) center center/100% auto no-repeat;
    transform: translateY(-50%);
  }
}
.l-header-nav-menu__item a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #404040;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .l-header-nav-menu__item a:hover::before {
    width: 100%;
  }
}
.l-header-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    display: block;
    opacity: 1;
    background: transparent;
    pointer-events: all;
  }
  .l-header-toggle.is-scroll {
    background: #B22A00;
  }
  .is-fixed .l-header-toggle.is-scroll {
    background: transparent;
  }
}
.l-header-toggle__inner {
  position: relative;
  width: 1.8rem;
  height: 1.6rem;
  margin: 0 auto;
}
.l-header-toggle__inner span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 0.2rem;
  background: #404040;
  transform: translateX(-50%);
}
.is-open .l-header-toggle__inner span {
  top: 0.7rem;
  transform: translateX(-50%) rotate(-45deg);
}
.l-header-toggle__inner span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 2.8rem;
  margin-top: -1px;
}
.is-open .l-header-toggle__inner span:nth-child(2) {
  opacity: 0;
}
.l-header-toggle__inner span:last-child {
  top: auto;
  bottom: 0;
}
.is-open .l-header-toggle__inner span:last-child {
  bottom: 0.7rem;
  transform: translateX(-50%) rotate(45deg);
}
.l-header-toggle__txt {
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  margin: 0.5rem 0 0;
}
.l-header .c-nav {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.l-header.is-open .c-nav {
  pointer-events: all;
  opacity: 1;
}
.l-header__btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 16rem;
    height: 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    border-radius: 0.8rem;
    background: #EB6120;
    color: #fff;
    padding: 0 2.8rem 0 0;
  }
  .l-header__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 1.2rem;
    height: 0.8rem;
    background: url(../img/common/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
    transform: translateY(-50%);
  }
}

.is-fixed,
.is-over {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-footer {
  margin: 6.4rem 0 0;
  position: relative;
  background: #EAEAEA;
  padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 4rem;
    padding: 4rem 0;
  }
}
.l-footer__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    display: block;
  }
}
.l-footer__logo {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    margin: 0 auto 1rem;
  }
}
.l-footer__txt {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__txt {
    font-size: 1.2rem;
    text-align: center;
  }
}
.l-footer__txt span {
  display: inline-block;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__txt span {
    display: block;
    margin: 0;
  }
}
.l-footer__txt span a {
  color: #fff;
}
.l-footer__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 61rem;
  gap: 0 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    display: block;
    width: auto;
  }
}
.l-footer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    text-align: center;
    font-size: 1.2rem;
    margin: 3rem 0 0;
  }
}
.l-footer__link a {
  color: #fff;
}
.l-footer__copy {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    margin: 2.4rem 0 0;
  }
}
.l-footer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  width: 46rem;
  padding: 0 4rem 8rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer-list {
    width: 100%;
    padding: 0;
    gap: 0;
    margin: 0 0 2.4rem;
  }
}
.l-footer-list__item {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-list__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 4.8rem;
    font-size: 1.4rem;
    line-height: 1.4;
    border-bottom: 1px solid #C9C8C8;
  }
  .l-footer-list__item a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem 0;
  }
}
.l-footer__pagetop {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 10rem;
  height: 10rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    width: 3rem;
    height: 11rem;
  }
}
.l-footer-address {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-footer-address {
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.l-footer-address__tel {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-footer-address__tel + .l-footer-address__tel {
  margin-top: 1.6rem;
}
.l-footer-address__ttl {
  width: 12rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid #808080;
  margin-right: 1.6rem;
  padding: 0.6rem 0;
}
.l-footer-address-content__num {
  position: relative;
  font-size: 2.3rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0 0 0 2.8rem;
}
.l-footer-address-content__num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/common/icn_tel.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.l-footer-address-content__txt {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin: 0.5rem 0 0;
}

.f-main:has(.c-contact__bg) + .l-footer {
  margin: 0;
}

.c-heading__en {
  position: relative;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #EB6120;
  margin: 0 0 2rem;
  padding: 0 0 1.5rem;
}
.c-heading__en::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.6rem;
  height: 1px;
  background: #EB6120;
}
.c-heading__ttl {
  font-size: 4rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-heading__ttl {
    font-size: 3.2rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
.c-heading__ttl.f32,
.c-heading__ttl .f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-heading__ttl.f32,
  .c-heading__ttl .f32 {
    font-size: 2.2rem;
    line-height: 1.8;
  }
}
.c-heading__ttl .normal {
  font-weight: 400;
}
.c-heading__ttl .f36 {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-heading__ttl .f36 {
    font-size: 2.8rem;
  }
}
.c-heading__ttl .f40 {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .c-heading__ttl .f40 {
    font-size: 3.2rem;
  }
}
.c-heading__ttl .or {
  color: #EB6120;
}

.c-bg--white {
  position: relative;
  background: #fff;
  z-index: 8;
}
.c-bg--beige {
  position: relative;
  background: #F8F7F7;
  z-index: 8;
}

.c-estimate {
  width: 90rem;
  background: url(../img/common/bg_estimate.jpg) 0 0/cover no-repeat;
  padding: 2.4rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-estimate {
    width: auto;
    margin: 0 -2rem;
    padding: 2.4rem 2rem;
  }
}
.c-estimate__wrap {
  padding: 5.8rem 0;
}
@media screen and (max-width: 767px) {
  .c-estimate__wrap {
    padding: 2.4rem 0;
  }
}
.c-estimate__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 2.8rem 4rem 2.8rem 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-estimate__inner {
    display: block;
    padding: 2.4rem 1.8rem 1.4rem;
  }
}
.c-estimate__left {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .c-estimate__left {
    width: auto;
  }
}
.c-estimate__right {
  width: 34rem;
}
@media screen and (max-width: 767px) {
  .c-estimate__right {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    gap: 0 0.8rem;
    margin: 1.2rem 0 0;
  }
}
.c-estimate__ttl {
  position: relative;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .c-estimate__ttl {
    display: block;
    text-align: center;
    margin: 0 0 1rem;
  }
}
.c-estimate__ttl::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: -1rem;
  width: 13.8rem;
  height: 1.2rem;
  background: url(../img/common/bg_float.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .c-estimate__ttl::after {
    bottom: 1.7rem;
    left: 8rem;
    width: 15.8rem;
    height: 1.5rem;
  }
}
.c-estimate__ttl .bg {
  position: relative;
  z-index: 1;
}
.c-estimate__ttl .omakase {
  font-size: 1.6rem;
  color: #EB6120;
}
@media screen and (max-width: 767px) {
  .c-estimate__ttl .omakase {
    display: block;
    text-align: center;
    margin: 0.8rem 0 0;
  }
}
.c-estimate__btn {
  width: 32rem;
  height: 5.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-estimate__btn {
    width: 24rem;
    height: 5.4rem;
    font-size: 1.6rem;
    margin: 0 auto;
  }
}
.c-estimate__btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #EB6120;
  color: #fff;
  border-radius: 0.8rem;
  padding-right: 1.4rem;
}
.c-estimate__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2.1rem;
  height: 1.1rem;
  background: url(../img/common/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.c-estimate__promise {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 6.3rem;
  height: 3.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .c-estimate__promise {
    align-items: center;
    gap: 0 0.8rem;
    flex-shrink: 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 0;
    border-bottom: 0;
    margin: 0;
  }
}
.c-estimate__txt {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.c-estimate__txt span {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-estimate__txt span {
    display: none;
  }
}

.c-btn {
  width: 32rem;
  height: 5.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 24rem;
    height: 5.4rem;
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #404040;
  border: 1px solid #404040;
  border-radius: 0.8rem;
  padding-right: 1.4rem;
  background: #fff;
}
.c-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2.1rem;
  height: 1.1rem;
  background: url(../img/common/icn_btn_arrow_or.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.c-btn__bk a {
  background: #404040;
  color: #fff;
  border: 1px solid #404040;
}
.c-btn__bk a::before {
  background: url(../img/common/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
}
.c-btn__or a {
  background: #EB6120;
  color: #fff;
  border: 1px solid #EB6120;
}
.c-btn__or a::before {
  background: url(../img/common/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
}

.c-txt .mark {
  background: linear-gradient(transparent 60%, #FBDCCE 60%);
  font-weight: 700;
}

.c-record {
  position: relative;
  background: url(../img/common/bg_record.jpg) 0 0/100% auto no-repeat;
  padding: 3.3rem 5rem 4rem;
  margin: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .c-record {
    height: 27rem;
    background: url(../img/common/bg_record_sp.jpg) 0 0/cover no-repeat;
    padding: 2.5rem 1.6rem;
    margin: 4rem 0;
  }
}
.c-record__lv1 {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-record__lv1 {
    font-size: 1.4rem;
  }
}
.c-record__lv2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-record__lv2 {
    font-size: 1.9rem;
  }
}
.c-record__lv3 {
  display: inline-block;
  position: relative;
  font-size: 2.8rem;
  color: #E8E1BA;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-record__lv3 {
    font-size: 1.9rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
  }
}
.c-record__lv3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2.5rem;
  width: 21.2rem;
  height: 3rem;
  background: url(../img/common/border_record.png) 0 0/100% auto no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-record__lv3::after {
    right: auto;
    left: 0;
    bottom: -0.5rem;
    width: 13rem;
    height: 2rem;
  }
}
.c-record__lv3 span {
  position: relative;
  z-index: 1;
}
.c-record__lv3 span span {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-record__lv3 span span {
    display: block;
    font-size: 2.3rem;
  }
}
.c-record__img {
  position: absolute;
  top: 1.3rem;
  right: 8rem;
  width: 20.5rem;
}
@media screen and (max-width: 767px) {
  .c-record__img {
    top: 8rem;
    right: 2rem;
    width: 10rem;
  }
}
.c-record .c-btn {
  width: 22.8rem;
  height: 4.8rem;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-record .c-btn {
    width: 18rem;
    font-size: 1.4rem;
    margin: 1rem auto 0;
  }
}
.c-record .c-btn a {
  border-color: #fff;
  color: #fff;
  background: rgba(50, 79, 125, 0.5);
}
.c-record .c-btn a::before {
  background: url(../img/common/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
}
.c-record__notes {
  position: absolute;
  color: #ccc;
  font-size: 1rem;
  bottom: 1.4rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .c-record__notes {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 0.8rem;
    width: 19.6rem;
    margin: 1.4rem 0 0;
  }
}

.c-float {
  position: fixed;
  top: 13rem;
  left: 50%;
  width: 121rem;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .c-float {
    display: none;
    width: auto;
  }
}
.c-float__inner {
  pointer-events: all;
  width: 28rem;
  background: #fff;
  border: 1px solid #EB6120;
  box-shadow: 0 0.4rem 0.8rem rgba(64, 64, 64, 0.16);
  padding: 4rem 3rem 2.4rem 3rem;
  margin: 0 0 0 auto;
}
.c-float__ttl {
  position: relative;
  text-align: center;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 0 0 1.4rem;
}
.c-float__ttl span {
  position: relative;
  z-index: 1;
}
.c-float__ttl::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 3rem;
  width: 13.8rem;
  height: 1.2rem;
  background: url(../img/common/bg_float.svg) 0 0/100% auto no-repeat;
}
.c-float__sub {
  text-align: center;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #EB6120;
}
.c-float__btn {
  width: 100%;
  height: 8rem;
  border-radius: 0.8rem;
  margin-top: 2.4rem;
}
.c-float__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-flow: column;
  background: #EB6120;
  color: #fff;
  border-radius: 0.8rem;
}
.c-float__btn .pre {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}
.c-float__btn .ttl {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 2.4rem 0 0;
}
.c-float__btn .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icn_arrow_wh.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.c-float__modal {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  height: 8rem;
  border-radius: 0.8rem;
  background: #fff;
  color: #EB6120;
  border: 1px solid #EB6120;
  margin-top: 2.4rem;
  cursor: pointer;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .c-float__modal:hover {
    opacity: 0.5;
  }
}
.c-float__modal .pre {
  text-align: center;
  color: #EB6120;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}
.c-float__modal .ttl {
  position: relative;
  text-align: center;
  color: #EB6120;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 2.4rem 0 0;
}
.c-float__modal .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icn_arrow_or.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.c-float-promise {
  line-height: 1;
  margin-top: 2.4rem;
}
.c-float-promise__ttl {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  border-left: 1px solid #808080;
  border-right: 1px solid #808080;
  padding: 0.4rem 1rem;
}
.c-float-promise__txt {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0.4rem 0 0;
}
.c-float__copy {
  text-align: center;
  color: #808080;
  font-size: 1rem;
  margin: 2.4rem 0 0;
}

.c-modal {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.5s;
  z-index: 1001;
  pointer-events: none;
}
.c-modal.is-active {
  opacity: 1;
  pointer-events: all;
}
.c-modal__inner {
  pointer-events: none;
  position: relative;
  background: #fff;
  width: 40rem;
  padding: 0 0 4.6rem;
}
@media screen and (max-width: 767px) {
  .c-modal__inner {
    width: calc(100% - 4rem);
    padding: 5rem 2rem 4rem;
  }
}
.is-active .c-modal__inner {
  pointer-events: all;
}
.c-modal__close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 3rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .c-modal__close:hover {
    opacity: 0.5;
  }
}
.c-modal-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-modal-sp {
    display: block;
  }
}
.c-modal-sp__ttl {
  text-align: center;
  font-size: 1.4rem;
}
.c-modal-sp__btn {
  margin: 1.2rem 0 0;
}
.c-modal-sp__btn + .c-modal-sp__btn {
  margin-top: 2.4rem;
}
.c-modal-sp__btn a[href*="tel:"] {
  pointer-events: none;
}
.is-active .c-modal-sp__btn a[href*="tel:"] {
  pointer-events: all;
}
.c-modal-sp__promise {
  display: inline-block;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  line-height: 1;
  padding: 0.6rem 1rem;
  margin: 1.7rem 0 0;
}
.c-modal-sp__txt {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}
.c-modal-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-modal-pc {
    display: none;
  }
}
.c-modal-pc__ttl {
  background: #EB6120;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  padding: 1.1rem 0;
}
.c-modal-pc__txt {
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin: 2.2rem 0 3rem;
}
.c-modal-pc__txt span {
  font-size: 1.7rem;
  font-weight: 700;
}
.c-modal-pc-address {
  width: 34rem;
  margin: 0 auto;
}
.c-modal-pc-address__tel {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-modal-pc-address__tel + .c-modal-pc-address__tel {
  margin-top: 1.6rem;
}
.c-modal-pc-address__ttl {
  width: 13.4rem;
  height: 5.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background: #F8F7F7;
  line-height: 1.6;
  margin-right: 1.6rem;
  padding: 0.6rem 0;
}
.c-modal-pc-address-content__num {
  position: relative;
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.c-modal-pc-address-content__num a {
  color: #EB6120;
}
.c-modal-pc-address-content__txt {
  font-weight: 400;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0;
  margin: 0.5rem 0 0;
}

.c-mv {
  position: relative;
}
.c-mv__inner {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  max-width: 121rem;
  width: 100%;
  box-sizing: content-box;
  padding: 0 4rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-mv__inner {
    left: 0;
    width: 100%;
    padding: 0 2rem;
    transform: none;
    box-sizing: border-box;
  }
}
.c-mv__ttl {
  color: #fff;
  font-feature-settings: "palt";
}
.c-mv__ttl .ja {
  display: block;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl .ja {
    font-size: 2.7rem;
  }
}
.c-mv__ttl .ja span {
  display: block;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl .ja span {
    font-size: 2rem;
  }
}
.c-mv__ttl .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl .en {
    font-size: 1rem;
    margin: 0.4rem 0 0;
  }
}
.c-mv__img {
  display: block;
  height: 26.4rem;
}
@media screen and (max-width: 767px) {
  .c-mv__img {
    height: auto;
  }
}
.c-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-breadcrumb {
  background: #F8F7F7;
  padding: 1.1rem 0 1.5rem;
}
.c-breadcrumb ul {
  max-width: 121rem;
  margin: 0 auto;
  box-sizing: content-box;
  line-height: 1;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb ul {
    width: auto;
    padding: 0 2rem;
  }
}
.c-breadcrumb ul li {
  display: inline;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
.c-breadcrumb ul li::before {
  content: ">";
}
.c-breadcrumb ul li:first-child::before {
  content: none;
}

.c-contact {
  position: relative;
  margin: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-contact {
    margin: 4rem 0 0;
  }
}
.c-contact__bg {
  background: #F8F7F7;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .c-contact__bg {
    padding: 4rem 0;
  }
}
.c-contact__bg .c-contact {
  margin-top: 0;
}
.c-contact .c-btn {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  height: 5rem;
  width: 37rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-contact .c-btn {
    bottom: 3rem;
    height: 5rem;
    width: 28rem;
  }
}

.c-voice .c-heading__ttl {
  font-size: 3.2rem;
}
.c-voice .c-heading__ttl span {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-voice .c-heading__ttl span {
    font-size: 2.4rem;
  }
}
.c-voice .c-txt {
  margin: 1.6rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-voice .c-txt {
    margin: 1.6rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .c-voice .c-btn {
    margin: 2.4rem auto;
  }
}
.c-voice__inner {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  flex-flow: row-reverse;
  padding: 6.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-voice__inner {
    display: block;
    padding: 4rem 0 0;
  }
}
.c-voice__img {
  position: absolute;
  top: 0;
  left: -8rem;
  width: 52.5rem;
}
@media screen and (max-width: 767px) {
  .c-voice__img {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 2.4rem -2rem 0;
  }
}
.c-voice__content {
  width: 40rem;
  padding: 0 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-voice__content {
    width: auto;
    padding: 0 0 2rem;
  }
  .c-voice__content .c-btn {
    display: none;
  }
}
.c-voice-notes {
  width: 41.1rem;
}
@media screen and (max-width: 767px) {
  .c-voice-notes {
    width: 100%;
  }
}
.c-voice-notes-list {
  margin: 1.4rem 0 0;
}
.c-voice-notes-list__item {
  color: #808080;
  font-size: 0.8rem;
}

.mark {
  background: linear-gradient(transparent 65%, #FBDCCE 0%);
}
.mark.green {
  background: linear-gradient(transparent 65%, #C5E3D1 0%);
}
.mark.blue {
  background: linear-gradient(transparent 65%, #DCEAFE 0%);
}

.bold {
  font-weight: 700;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (min-width: 1440.1px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }