@charset "UTF-8";
/*
 * base.scss
 * 全ページ共通CSS
 */
/*
 * layout/l-contents.scss
 */
.l-contents {
  overflow-x: hidden;
}

/*
 * layout/l-footer.scss
 */
.footer-wrapper {
  background-color: #f5f5f5;
  margin-top: 10px;
}

.footer-logo {
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 32px 0 24px;
  text-align: center;
}
.footer-logo img {
  width: 161px;
  height: auto;
}
@media print, screen and (min-width: 1025px) {
  .footer-logo {
    padding: 55px 0 50px;
  }
  .footer-logo img {
    width: 350px;
  }
}

.footer-info-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 27px 0 12px;
  background: #478838;
}
@media print, screen and (min-width: 1025px) {
  .footer-info-copyright {
    padding: 28px 0;
  }
  .footer-info-copyright__inner {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
  }
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  font-weight: 500;
  letter-spacing: 0em;
  margin-bottom: 22px;
  gap: 0 4px;
}
.footer-info > a {
  color: #ffffff;
}
@media print, screen and (min-width: 1025px) {
  .footer-info {
    flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 1.3125;
    font-weight: 500;
    letter-spacing: 0em;
    margin-bottom: 0;
    gap: 0 5px;
  }
}

.footer-copyright {
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.2727272727;
  font-weight: 500;
  letter-spacing: 0em;
}
@media print, screen and (min-width: 1025px) {
  .footer-copyright {
    font-size: 1.6rem;
    line-height: 1.3125;
    font-weight: 500;
    letter-spacing: 0em;
  }
}

/*
 * layout/l-header.scss
 */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f5f5f5;
  z-index: 110;
  width: 100%;
}
.header-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .header-main__inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header-logo {
  padding: 16px 12px 17px;
  flex-shrink: 0;
  font-size: 0;
}
.header-logo__img {
  width: 163px;
}
@media print, screen and (min-width: 1025px) {
  .header-logo {
    padding: 20px 25px;
  }
  .header-logo__img {
    width: 243px;
  }
}

.header-menu-controller {
  margin-left: auto;
  width: 55px;
  height: 55px;
  background: #478838 center center no-repeat;
  background-image: url("../img/icon/burger.svg");
  transition: opacity 0.3s;
  cursor: pointer;
}
.header-menu-controller:hover {
  opacity: 0.7;
}
.header-menu-controller.--is-opened {
  background-image: url("../img/icon/burger-close.svg");
}
@media print, screen and (min-width: 1025px) {
  .header-menu-controller {
    display: none;
  }
}

.header-info {
  width: 100%;
}
.header-info__inner {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  width: 100%;
  padding: 0 25px;
}
@media print, screen and (min-width: 1025px) {
  .header-info__inner {
    width: 345px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .header-info {
    display: none;
  }
  .header-info__inner {
    padding-top: 8px;
  }
}

.header-global-menu {
  display: block;
  width: 100%;
  background: #f5f5f5;
  padding: 8px 20px 20px;
}
@media only screen and (max-width: 1024px) {
  .header-global-menu {
    display: none;
    position: fixed;
    top: 111px;
  }
}
.header-global-menu__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  box-sizing: content-box;
  gap: 8px;
}
.header-global-menu__sub {
  display: none;
  position: absolute;
  z-index: 2;
  background: #ffffff;
  min-width: 183px;
}
.header-global-menu__sub .c-menu-item {
  font-size: 1.5rem;
  line-height: 1.2666666667;
  font-weight: 700;
  letter-spacing: 0em;
  width: 100%;
  padding: 8px;
  text-align: left;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
}
.header-global-menu__sub .c-menu-item:not(:last-child) {
  border-bottom: none;
}
.c-menu-item:hover > .header-global-menu__sub {
  display: block;
  width: max-content;
}
@media print, screen and (min-width: 1025px) {
  .header-global-menu {
    padding: 17px 0 16px;
    margin-bottom: 41px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-header .header-global-menu {
    margin-bottom: 0;
  }
  .header-global-menu__inner {
    flex-wrap: nowrap;
    box-sizing: border-box;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }
  .header-global-menu__sub {
    width: 100%;
    min-width: 190px;
  }
}

.c-menu-item {
  display: block;
  width: calc((100% - 8px) / 2);
  text-align: center;
  font-size: 1.4rem;
  line-height: 3.4285714286;
  font-weight: 700;
  flex-shrink: 0;
  flex-grow: 0;
  background: #ffffff;
  position: relative;
  cursor: pointer;
  color: #494645;
}
.c-menu-item.\--sell::before, .c-menu-item.\--buy::before {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.c-menu-item.\--sell::after, .c-menu-item.\--buy::after {
  content: "";
  width: 1px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.c-menu-item.\--sell.\--is-active::after, .c-menu-item.\--buy.\--is-active::after {
  display: none;
}
.c-menu-item.\--sell.\--is-active {
  color: #478838;
}
.c-menu-item.\--sell::before, .c-menu-item.\--sell::after {
  background: #478838;
}
.c-menu-item.\--buy.\--is-active {
  color: #e99315;
}
.c-menu-item.\--buy::before, .c-menu-item.\--buy::after {
  background: #e99315;
}
@media only screen and (max-width: 1024px) {
  .c-menu-item.\--corporate {
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 1025px) {
  .c-menu-item {
    width: calc((100% - 80px - 195px) / 5);
    font-size: 1.8rem;
    line-height: 3.0555555556;
    font-weight: 700;
  }
  .c-menu-item.\--sell::before, .c-menu-item.\--buy::before {
    width: 13px;
    right: 18px;
  }
  .c-menu-item.\--sell::after, .c-menu-item.\--buy::after {
    height: 13px;
    right: 24px;
  }
  .c-menu-item.\--sell:hover::after, .c-menu-item.\--buy:hover::after {
    display: none;
  }
  .c-menu-item.--simulation {
    width: 195px;
  }
  .header-main .c-menu-item {
    width: fit-content;
    background: #f5f5f5;
    font-size: 1.6rem;
    line-height: 1.3125;
    font-weight: 700;
  }
  .header-main .c-menu-item.\--corporate {
    width: 100%;
    flex-shrink: 1;
  }
}

/*
 * layout/l-main.scss
 */
.l-main {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media print, screen and (min-width: 1025px) {
  .l-main {
    width: 1220px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

.u-text-left {
  text-align: left;
}

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

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

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}
.u-text-indent.\--2em {
  padding-left: 2em;
  text-indent: -2em;
}

@media print, screen and (min-width: 1025px) {
  .u-only-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .u-only-pc {
    display: none !important;
  }
}
body {
  padding-top: 55px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0em;
}
@media print, screen and (min-width: 1025px) {
  body {
    padding-top: 73px;
  }
}

.breadcrumbs {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media print, screen and (min-width: 1025px) {
  .breadcrumbs {
    width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.entry-content {
  width: 100%;
}

.site-main > article {
  margin-bottom: 55px;
}

.list-pagination ul li.active {
  background: #478838;
}

@media only screen and (max-width: 1024px) {
  .simulation .contents-header .title-wrap h2 {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .simulation .contents-header .title-wrap h2 {
    width: max-content;
  }
}

.simulation .contents-body {
  padding: 0;
}

.simulation .contents-footer .contact-btn-wrap > a {
  border-color: #478838;
  color: #478838;
}

.simulation .contents-footer .contact-btn-wrap > a > span::before {
  background: #478838;
}

.simulation .condition.products .input-box .radio-btn.regalo {
  background-color: #263724;
}

.simulation .condition.products .input-box .radio-btn.alto {
  background-color: #6f833c;
}

.simulation .condition.products .input-box .radio-btn.bene {
  background-color: #917d3e;
}

.after section {
  margin-right: 0;
  margin-left: 0;
}

.after .kizuna-hosyo .main-wrap .img-box {
  top: 0;
  border: 5px solid #b2afb1;
}

@media print, screen and (min-width: 1025px) {
  .after .kizuna-hosyo .hosyo-type-list {
    display: flex;
    justify-content: center;
    gap: 80px;
  }
}

@media print, screen and (min-width: 1025px) {
  .after .kizuna-hosyo .hosyo-type-list li {
    width: 300px;
  }
}

.after .maintenance-flow .main-wrap .support-flow {
  border-color: #478838;
}

.after .headline-wrap .main-text,
.after .maintenance-flow .main-wrap .support-flow.arrow::before,
.after .maintenance-flow .main-wrap .support-flow.arrow::after {
  border-left-color: #478838;
}

.after .maintenance-flow .main-wrap .support-flow-wrap {
  text-align: center;
}

.blog-content .item .blog-title {
  border-color: #478838;
}

.corporate .corp-text h3 {
  color: #478838;
}

.c-page-title {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
  letter-spacing: 0em;
  display: inline-block;
  margin-bottom: 30px;
}
.c-page-title::before, .c-page-title::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1em;
  background: url("../img/icon/dot-green.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-page-title::before {
  left: -2em;
}
.c-page-title::after {
  right: -2em;
}
@media print, screen and (min-width: 1025px) {
  .c-page-title {
    font-size: 4.8rem;
    line-height: 1.2708333333;
    font-weight: 700;
    letter-spacing: 0em;
  }
}

.c-page-description {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 2px;
  padding: 0 8px;
  margin-top: 30px;
}
@media print, screen and (min-width: 1025px) {
  .c-page-description {
    font-size: 2rem;
    letter-spacing: 5px;
    line-height: 1.5;
  }
}

.c-section-title {
  position: relative;
  margin: 50px 0 25px;
  font-size: 1.8rem;
  line-height: 1.2777777778;
  font-weight: 500;
  letter-spacing: 0em;
  display: flex;
  align-items: center;
}
.c-section-title.--column {
  flex-flow: column;
  align-items: flex-start;
}
.c-section-title__num {
  padding: 0.4em 0.6em;
  background: #9A9A9A;
  color: #ffffff;
  margin-right: 0.4em;
  max-height: 2em;
}
.c-section-title__sub-text {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0em;
  padding-left: 20px;
  border-left: 5px solid #cccccc;
}
.c-section-title__main-text {
  font-size: 1.8rem;
  line-height: 1.2777777778;
  font-weight: 500;
  letter-spacing: 0em;
  padding-left: 20px;
  border-left: 5px solid #478838;
}
.c-section-title .c-btn-square {
  margin-top: 8px;
}
@media print, screen and (min-width: 1025px) {
  .c-section-title {
    font-size: 3.2rem;
    line-height: 1.5625;
    font-weight: 700;
    letter-spacing: 0em;
  }
  .c-section-title__num {
    max-height: 90px;
  }
  .c-section-title__main-text {
    font-size: 3.2rem;
    line-height: 1.5625;
    font-weight: 700;
    letter-spacing: 0em;
  }
  .c-section-title__sub-text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .c-section-title .c-btn-square {
    position: absolute;
    right: 0;
    bottom: 40px;
  }
  .c-section-title.--column {
    margin-bottom: 40px;
  }
}