@charset "utf-8";

/**************************************************/
/*                                                */
/*                  ベーススタイル　              */
/*                                                */
/**************************************************/

html {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  height: -webkit-fill-available; /*iOSで１００vhを実装するため*/
}

body {
  color: #333;
  font-size: 1.6em;
  font-family:
    "Noto Sans JP", "ヒラギノ角ゴ Pro", "HiraKakuPro", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  letter-spacing: 0.08em;
  min-height: 100vh; /*iOSで１００vhを実装するため*/
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available; /*iOSで１００vhを実装するため*/
  -webkit-text-size-adjust: 100%;
}

input,
select,
textarea {
  font-family:
    "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3",
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
    sans-serif;
}

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

a {
  color: #333;
  text-decoration: none;
  transition: 0.3s linear;
}

ul {
  list-style: none;
}

sup {
  vertical-align: text-top;
  font-size: small;
}
/* Slickスライダーでピンチインを有効にする */
.detail-page .slick-slider {
  -ms-touch-action: auto;
  touch-action: auto;
}

/**************************************************/
/*                                                */
/*                  ユーティリティ                */
/*                                                */
/**************************************************/

.cf::before,
.cf::after {
  clear: both;
  content: "";
  display: block;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.flex {
  display: flex;
}

.font-eng {
  font-family: din-condensed, sans-serif;
}

.font-mincho {
  font-family: "Noto Serif JP", serif;
}

/**************************************************/
/*                                                */
/*            　 レイアウト（骨組み）　　         */
/*                                                */
/**************************************************/

#wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.l-main {
  display: block; /* IE対策 */
}

/* ================================================
 * ヘッダー
 * ================================================*/
.header-top {
  background-color: #e64800;
}

.header-top .header-right .header-contact {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.fixed-menu .footer-contact::before,
.header-top .header-right .header-contact::before {
  content: "";
  display: inline-block;
  background-image: url("../img/common/icon-mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ================================================
 * フッター
 * ================================================*/

.l-footer {
  margin-top: auto;
  position: relative;
}

.footer-top {
  background-color: #e64800;
  color: #fff;
}

.footer-top .inner {
  position: relative;
  display: flex;
}

.footer-menu li a,
.footer-menu li {
  color: #ffe7dc;
  font-weight: 700;
  white-space: nowrap;
}

.footer-menu .footer-sub-menu li a {
  color: #ffcdb7;
  font-weight: 400;
}

.footer-menu .footer-sub-menu li a:hover,
.footer-menu li a:hover {
  color: #fff;
}

.footer-top .company-wrap {
  background-color: #fff;
  color: #333;
}

.footer-top .company-wrap .top-txt {
  color: #e6481b;
  font-weight: 700;
}

.footer-top .company-wrap .ttl {
  font-weight: 500;
}

.footer-top .company-wrap .address,
.footer-top .company-wrap .tel {
  line-height: 1.5;
}

.footer-top small {
  color: #aaaaaa;
  font-size: 1rem;
  display: block;
}

/*fixed-menu*/
.fixed-menu {
  position: fixed;
  border: solid 3px #fff;
  z-index: 999;
  bottom: 0;
  left: 0;
  display: flex;
}

.fixed-menu .fixed-btn {
  background-color: #e64800;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.fixed-menu .fixed-btn span {
  font-weight: 700;
}

.fixed-menu .fixed-btn:not(:last-of-type) {
  border-right: solid 3px #fff;
}

.fixed-menu .fixed-btn:hover {
  background-color: #ff6134;
}

.footer-consulting::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/icon-comment.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*-- ページトップ --*/
#page-top {
  position: fixed;
  z-index: 1000;
}

#page-top a {
  width: 100%;
  height: 100%;
  background-color: #dc000c;
  transition: 0.3s ease-out;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

#page-top a:hover {
  background-color: #e6481b;
}

#page-top a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(35% - 10px / 2);
  left: calc(50% - 16px / 2);
  transition: all 0.3s;
}

#page-top a:hover::before {
  transform: rotate(45deg) translate(-4px, -4px);
}

/**************************************************/
/*                                                */
/*             　モジュール（パーツ）　　         */
/*                                                */
/**************************************************/

/* ================================================
 * ページネーション
 * ================================================*/
.pager {
  display: flex;
  list-style: none;
  justify-content: center;
}

.pager a {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50vh;
  border: 2px solid #e6481b;
  color: #e6481b;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.pager .current a,
.pager a:hover {
  background-color: #e6481b;
  color: #fff;
  opacity: 1;
}

.pager .next a::before,
.pager .prev a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #e6481b;
  border-right: 2px solid #e6481b;
  position: absolute;
  top: 18px;
}

.pager .prev a::before {
  transform: rotate(135deg);
  left: 20px;
}

.pager .next a::before {
  transform: rotate(-45deg);
  right: 20px;
}

.pager .next:hover a::before,
.pager .prev:hover a::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* ================================================
 * パンクズリスト
 * ================================================*/
.breadcrumb {
  display: flex;
  padding-top: 8px;
}

.breadcrumb li {
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
}

.breadcrumb li:not(:last-of-type) :after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border-bottom: solid 1px #888;
  border-right: solid 1px #888;
  transform: rotate(-45deg);
  top: 6px;
  right: 0;
  box-sizing: border-box;
}

.breadcrumb li span {
  padding-bottom: 4px;
  font-size: 1.2rem;
}

.breadcrumb li:last-of-type span {
  border-bottom: solid 1px #707070;
}

/* ================================================
 * slider
 * ================================================*/
.l-main .slick-prev,
.l-main .slick-next {
  background-color: transparent;
  border: solid 2px #e6481b;
  transition: all 0.3s ease-in-out;
}

.l-main .slick-prev:hover,
.l-main .slick-next:hover {
  background-color: #e6481b;
}

.l-main .slick-prev:before,
.l-main .slick-next:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-bottom: solid 2px #e6481b;
  border-left: solid 2px #e6481b;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: all 0.3s ease-in-out;
}

.l-main .slick-prev:hover:before,
.l-main .slick-next:hover:before {
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
}

.l-main .slick-prev:before {
  transform: translate(-35%, -50%) rotate(45deg);
}

.l-main .slick-next:before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

/**************************************************/
/*                                                */
/*             　　共通の装飾　　　        　　　　 */
/*                                                */
/**************************************************/
/*hoverでズーム*/
.scale {
  overflow: hidden;
}

a .scale img {
  transition: all 0.3s ease-in-out;
}

a:hover .scale img {
  transform: scale(1.15);
}

/*object-fit*/
.fit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/*section-ttl*/
.section-ttl .font-eng {
  text-transform: uppercase;
  display: block;
  text-align: center;
  color: #e64800;
}

.section-ttl .top-txt,
.section-ttl .sub-txt {
  font-weight: 700;
  text-align: center;
  display: block;
}

/*propertyのcategory-list*/
.category-list {
  position: absolute;
}

.type-2,
.type-1 {
  border: solid 4px #e6481b;
  background-color: #fff;
  color: #e6481b;
  font-weight: 700;
  font-size: 1.4rem;
  display: inline-block;
  width: fit-content;
  width: -moz-fit-content;
}

.type-2 {
  background-color: #e6481b;
  color: #fff;
}

/*propertyのtag-list*/
.tag-list {
  display: flex;
  flex-wrap: wrap;
  color: #e6481b;
  line-height: 1.4;
}

.tag-list li {
  font-weight: 700;
}

/*btn*/
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50vh;
  border: solid 2px #e6481b;
  color: #e6481b;
  width: fit-content;
  width: -mox-fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}

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

/*arrow-btn*/
.btn.arrow-btn {
  width: 50px;
  height: 50px;
  position: relative;
}

.btn.arrow-btn::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: solid 2px #e6481b;
  border-bottom: solid 2px #e6481b;
  transform: rotate(-45deg) translate(-20%, -80%);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s;
}

.btn.arrow-btn:hover::after {
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
}

/*下層MV*/
#page .mv-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

#page .mv-wrap .mv-ttl {
  font-weight: 700;
  color: #fff;
  text-align: center;
}

#page .mv-wrap .mv-ttl .font-eng {
  text-transform: uppercase;
  display: block;
}

/*下層top-wrap*/
.sdgs-page .top-wrap,
.online-page .top-wrap,
.consulting-page .top-wrap,
.service-page .top-wrap,
.vision-page .top-wrap,
.about-us-page .top-wrap,
.recruit-page .top-wrap {
  background-color: #f8f8f8;
}

.sdgs-page .top-txt,
.online-page .top-txt,
.consulting-page .top-txt,
.service-page .top-txt,
.vision-page .top-txt,
.about-us-page .top-txt,
.recruit-page .top-txt {
  color: #e6481b;
  font-weight: 700;
}
/**************************************************/
/*                                                */
/*             　　　ページ　　　        　　　　 */
/*                                                */
/**************************************************/
/* ================================================
 * トップ
 * ================================================*/
/*mv*/

#top .mv-wrap {
  background-image: url("../img/mv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  position: relative;
  z-index: 1000;
}
#top .mv-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

#top .mv-wrap .inner {
  position: relative;
}

#top .mv-wrap .top-txt-wrap {
  color: #fff;
}

#top .mv-wrap .top-txt-wrap .font-eng {
  /*color: #E64800;*/
  color: #dc000c;
}

#top .mv-wrap .main-txt {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

#top .mv-wrap .sub-txt {
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.08em;
}

#top .top-news-wrap {
  position: absolute;
  bottom: 0;
  background-color: #fff;
}

#top .top-news-wrap dt {
  color: #e6481b;
}

#top .top-news-wrap dd {
  line-height: 1.4;
  font-weight: 700;
}

#top .mv-wrap .scroll {
  color: #fff;
  transform: rotate(90deg);
  text-transform: uppercase;
  position: absolute;
  z-index: 100;
}

#top .mv-wrap .scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
}

/*recommend-section*/
.recommend-section {
  background-color: #fce9d9;
}

.recommend-section .section-ttl {
  color: #fff;
}

.recommend-section .section-ttl .sub-txt,
.recommend-section .section-ttl .top-txt,
.recommend-section .section-ttl .font-eng {
  text-align: left;
}

.recommend-section .section-ttl .top-txt {
  color: #e6481b;
  display: block;
}

.recommend-section .section-ttl .font-eng {
  color: #fff;
}

.recommend-section .section-ttl .sub-txt {
  color: #333;
}

.recommend-slider li {
  position: relative;
}

.recommend-slider li .ttl {
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.recommend-slider li .concept {
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

/*property-section*/
.property-list {
  display: flex;
  flex-wrap: wrap;
}

.property-list li {
  position: relative;
}

.property-list .ttl {
  font-weight: 700;
  line-height: 1.4;
}

/*online-section*/
.online-section .inner {
  position: relative;
}

.online-section .inner::before {
  content: "";
  background-color: #dc000c;
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 40px;
  left: 40px;
  z-index: -1;
}

.online-section .sub-txt {
  line-height: 1.7;
}

/*news-section*/
.news-section a:hover {
  opacity: 0.7;
}

.news-section dl {
  display: flex;
  background-color: #f8f8f8;
}

.news-section .date {
  color: #e6481b;
}

.news-section .date::before {
  content: "";
  display: inline-block;
  background-color: #e6481b;
}

.news-section dd {
  line-height: 1.4;
  font-weight: 700;
}

/*service-section*/
.service-section {
  position: relative;
}

.service-section::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../img/service-img.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.service-section .top-txt {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}

.service-section .sub-txt {
  line-height: 1.7;
}

.service-section .service-flex li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: #fff;
}

.service-section .service-flex li:first-of-type {
  background-color: #e64800;
}

.service-section .service-flex li:last-of-type {
  background-color: #dc000c;
}

.service-section .service-ttl .txt {
  font-weight: 700;
}

.service-section .service-ttl .font-eng {
  position: absolute;
  left: 50%;

  transform: translateX(-50%);
  opacity: 0.15;
}

.service-section .service-flex li p {
  line-height: 1.7;
}

.service-section .service-flex .renovation-page-btn,
.service-section .service-flex .solution-page-btn {
  border-color: #fff;
  color: #fff;
}

.service-section .service-flex .renovation-page-btn:hover,
.service-section .service-flex .solution-page-btn:hover {
  background-color: #fff;
  color: #e64800;
}

.service-section .consulting-wrap {
  position: relative;
  background-color: #f8f8f8;
}

.service-section a:hover .consulting-wrap .btn {
  background-color: #e6481b;
}

.service-section a:hover .consulting-wrap .btn.arrow-btn::after {
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}

.service-section .consulting-ttl {
  font-weight: 700;
}

.service-section .consulting-wrap p {
  line-height: 1.7;
}

/*recruit-section*/
.recruit-section .recruit-list {
  display: flex;
}

.recruit-section .recruit-list li {
  position: relative;
}

.recruit-section .recruit-list li .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.recruit-section .recruit-list li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.recruit-section .recruit-list li .btn {
  position: absolute;
  border: solid 2px #fff;
  top: 50%;
  transform: translateY(-50%);
}

.recruit-section .recruit-list li a:hover .btn {
  background-color: #e6481b;
  border-color: #e6481b;
}

.recruit-section .recruit-list li .btn::after {
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}

.recruit-section .recruit-ttl {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
}

/* ================================================
 * 私たちについて
 * ================================================*/

.about-us-page .mv-wrap {
  background-image: url("../img/about-us-mv.jpg");
}

.about-us-page .about-us-section {
  line-height: 1.75;
}

.consulting-page .about-us-ttl span,
.consulting-page .about-us-ttl,
.service-page .about-us-ttl span,
.service-page .about-us-ttl,
.vision-page .about-us-ttl span,
.about-us-page .about-us-ttl span,
.vision-page .about-us-ttl,
.about-us-page .about-us-ttl {
  text-align: center;
  font-weight: 700;
  line-height: 1;
}

.consulting-page .about-us-ttl > span,
.service-page .about-us-ttl > span,
.vision-page .about-us-ttl > span,
.about-us-page .about-us-ttl > span {
  display: block;
}

.consulting-page .about-us-ttl .font-eng,
.service-page .about-us-ttl .font-eng,
.vision-page .about-us-ttl .font-eng,
.about-us-page .about-us-ttl .font-eng {
  color: #e6481b;
  font-weight: 400;
}

.about-us-page .advantage-item {
  background-color: #fff7f3;
  box-shadow: 50px 50px 0 0 #e6481b;
  z-index: 1;
}

.about-us-page .advantage-item .txt-wrap {
  position: relative;
}

.about-us-page .advantage-item .number {
  color: #f8dbce;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  z-index: -1;
}

.about-us-page .advantage-ttl {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.about-us-page .advantage-ttl span {
  color: #e6481b;
  font-weight: 700;
}

.about-us-page .advantage-item:nth-of-type(3n) .advantage-ttl span {
  display: block;
  text-align: right;
  margin-top: 10px;
}

/* ================================================
 * 事業内容
 * ================================================*/
.service-page .mv-wrap {
  background-image: url("../img/service-mv.jpg");
}

.service-page .top-sub-txt {
  line-height: 1.75;
}

.service-page .service-ttl {
  line-height: 1.3;
}

.service-page .service-txt {
  line-height: 1.75;
}

.service-page .company-item .img-wrap,
.service-page .company-item {
  position: relative;
}

.service-page .service-idea-ttl {
  color: #e6481b;
  font-weight: 700;
}

.service-page .company-item .number {
  color: #f8dbce;
  position: absolute;
}

.service-page .company-item p {
  line-height: 1.75;
}

.service-page .company-item p:not(:first-of-type) {
  margin-top: 28px;
}

.service-page .img-wrap .img-txt {
  position: absolute;
  top: 4px;
  right: 10px;
  text-transform: capitalize;
  font-size: 2rem;
  color: #fff;
}

.service-page .img-wrap .img-txt.after-txt {
  color: #ffcdb7;
}

.service-page .company-item.item-03 .img-column {
  position: relative;
  height: fit-content;
  height: -moz-fit-content;
}

.service-page .company-item.item-03 .caution-txt {
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 1.2rem;
}

/* ================================================
 * トータル・ソリューション部（リノベーション部と共通）
 * ================================================*/
.solution-page .mv-wrap {
  background-image: url("../img/solution-mv.jpg");
}

.solution-page .top-sub-txt span {
  font-weight: 700;
}
.solution-page .solution-ttl {
  font-weight: 700;
  border-top: solid 2px #e6481b;
  letter-spacing: 0.1em;
}

.solution-page .solution-ttl .impact {
  font-weight: 700;
  color: #e6481b;
}

.solution-page .solution-ttl .font-eng {
  color: #e6481b;
}

.solution-page .solution-txt {
  line-height: 1.75;
}

.solution-page .img-flex .logo-wrap {
  background-color: #fffde8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-page .solution-sub-ttl {
  color: #e6481b;
  font-weight: 700;
}

.solution-page .thumbnail {
  text-align: center;
  font-size: 1.4rem;
}

/* ================================================
 * リノベーション部
 * ================================================*/
.renovation-page .mv-wrap {
  background-image: url("../img/renovation-mv.jpg");
}

.renovation-page .instagram-wrap .entry-insta-link::before {
  display: none;
}

.renovation-page .instagram-wrap .entry-txt {
  line-height: 1.75;
  font-size: 1.6rem;
}

.renovation-page .renovation-flex .solution-txt:first-of-type {
  margin-top: 0;
}
/* ================================================
 * 物件情報
 * ================================================*/
.property-page .mv-wrap {
  background-image: url("../img/property-mv.jpg");
}

.property-page .detail-wrap {
  margin-top: 12px;
}

/*search-section*/
.property-page .search-section .inner {
  background-color: #f8f8f8;
}

.property-page .type-list {
  display: flex;
}

.property-page .type-list label {
  border: solid 2px #e6481b;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e6481b;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.property-page input:hover + label,
.property-page input:checked + label {
  background-color: #e6481b;
  color: #fff;
}

.property-page input {
  display: none;
}

.property-page .counter {
  text-align: right;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

/* ================================================
 * 物件情報詳細
 * ================================================*/

.detail-page .top-flex {
  justify-content: space-between;
}

.detail-page .category-list {
  position: relative;
}

.detail-page .ttl {
  font-weight: 700;
  line-height: 1.4;
}

.detail-page .property-slider li {
  position: relative;
}

.detail-page .property-slider li img {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.detail-page .property-slider li .slider-caption {
  line-height: 1.5;
  position: absolute;
  text-align: center;
  bottom: -20px;
  transform: translateY(100%);
  left: 0;
  width: 100%;
}

.detail-page .slick-slider .slick-list {
  padding-bottom: 40px;
}

.detail-page .main-info {
  background-color: #f8f8f8;
}

.detail-page .main-info-list {
  display: flex;
}

.detail-page .main-info dl {
  display: flex;
  align-items: center;
}

.detail-page .main-info dt {
  background-color: #e6481b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.detail-page .main-info dd {
  line-height: 1.75;
}

.detail-page .top-txt {
  line-height: 1.7;
}

.detail-page .contact-btn {
  border-color: #dc000c;
  background-color: #dc000c;
  color: #fff;
  font-weight: 700;
}

.detail-page .contact-btn:hover {
  opacity: 0.7;
}

.property-page .detail-wrap dl,
.detail-page .detail-wrap dl {
  line-height: 28px;
  border-bottom: dashed 1px #aaaaaa;
  display: flex;
}

.property-page .detail-wrap dt,
.detail-page .detail-wrap dt {
  color: #e6481b;
  flex: 0 0 auto;
}

.detail-page .detail-wrap .detail-type {
  display: inline-block;
  padding: 0 8px;
}

.detail-page .detail-wrap .type-a {
  background-color: #f1f1f1;
}

.detail-page .detail-wrap .type-b {
  background-color: #ffe7dc;
  color: #e6481b;
}

.detail-page .maps-outer {
  position: relative;
}

.detail-page .maps-outer iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.detail-page .property-subttl,
.detail-page .property-ttl {
  font-weight: 700;
}

.detail-page .property-ttl {
  border-top: solid 3px #333;
}

.detail-page .property-subttl {
  border-bottom: solid 1px #333;
}

.detail-page .facility-wrap dd {
  background-color: #f3f3f3;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}

.detail-page .others-wrap {
  border: solid 1px #aaaaaa;
}

.detail-page .detail-wrap.others-wrap dl {
  border: none;
  padding: 0;
  margin: 0;
}

.detail-page .btn-wrap .btn,
.detail-page .btn-wrap .contact-btn {
  margin: 0;
}

.detail-page .back-btn {
  font-weight: 700;
}

/* ================================================
 * 新着物件一覧
 * ================================================*/
.new-property-page.property-page .mv-wrap {
  background-image: url("../img/property-new-mv.jpg");
}

.new-property-page .new-property-wrap {
  background-color: #fce9d9;
}

.new-property-page .search-section .inner {
  background-color: #fff;
}

.new-property-page .property-list > li {
  background-color: #fff;
  position: relative;
}

.new-property-page .property-list > li::after {
  content: "";
  display: inline-block;
  background-image: url("../img/new-property-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 80px;
  position: absolute;
  top: 13px;
  right: 10px;
}

/* ================================================
 * 新着物件詳細
 * ================================================*/
.new-property-page.detail-page .property-section {
  background-color: #fce9d9;
}

.new-property-page.detail-page .icon-flex .img-wrap {
  margin-right: 17px;
}

.new-property-page.detail-page .icon-flex .txt-wrap {
  width: 100%;
}

.new-property-page.detail-page .ttl {
  color: #e6481b;
}

.new-property-page .top-txt-flex .img-wrap {
  position: relative;
}

.new-property-page .top-txt-flex .img-wrap .top-txt-flex-caption {
  position: absolute;
  left: 0;
  bottom: -10px;
  transform: translateY(100%);
  width: 100%;
  line-height: 1.5;
}

.new-property-page .floor-plan-wrap img {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.new-property-page .floor-plan-caption {
  line-height: 1.5;
}

.new-property-page .white-column {
  background-color: #fff;
}

/* ================================================
 * オンライン内見
 * ================================================*/
.online-page .mv-wrap {
  background-image: url("../img/online-mv.jpg");
}

.online-page .top-wrap {
  line-height: 1.75;
}

.online-page .flow-list {
  display: flex;
}

.online-page .flow-list li {
  position: relative;
}

.online-page .flow-list li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: solid 2px #e6481b;
  border-bottom: solid 2px #e6481b;
  position: absolute;
}

.online-page .flow-list .number {
  background-color: #e6481b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.online-page .flow-list .img-wrap {
  border: solid 1px #e6481b;
}

.online-page .flow-list .ttl {
  color: #e6481b;
  font-weight: 500;
  text-align: center;
}

.online-page .flow-list .txt {
  line-height: 1.6;
}

.online-page .flow-list .txt a {
  text-decoration: underline;
  color: #e6481b;
}

.online-page .property-btn {
  border-color: #dc000c;
  background-color: #dc000c;
  color: #fff;
  font-weight: 700;
}

.online-page .property-btn:hover {
  background-color: #e6481b;
  border-color: #e6481b;
}

.online-page .balloon-flex .txt-wrap {
  line-height: 1.75;
}

.online-page .balloon-flex .txt-wrap .img-wrap {
  box-shadow: 0px 3px 6px #00000029;
  background-color: #fff;
  flex: 0 0 auto;
  display: flex;
}

.online-page .last-note {
  border: solid 1px #e6481b;
  position: relative;
  line-height: 1.75;
}

.online-page .last-note .txt span,
.online-page .last-note .txt {
  font-weight: 700;
}

.online-page .last-note span {
  color: #e6481b;
}

.online-page .last-note .img-wrap {
  position: absolute;
  bottom: -13px;
  left: 0;
}

/* ================================================
 * おしらせ
 * ================================================*/
.news-page .mv-wrap {
  background-image: url("../img/news-mv.jpg");
}

.news-page .news-item {
  background-color: #f8f8f8;
}

.news-page .news-ttl {
  font-weight: 700;
  line-height: 1.3;
}

.news-page .news-item .img-wrap img {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.news-page .news-item .txt {
  line-height: 1.5;
}

.news-page .news-item .link-txt {
  display: block;
  color: #e6481b;
  text-decoration: underline;
  line-height: 1.5;
  text-align: right;
}

.news-page .movie-wrap {
  width: 100%;
  position: relative;
}

.news-page .movie-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ================================================
 * 買取の無料相談
 * ================================================*/
.consulting-page .mv-wrap {
  background-image: url("../img/consulting-mv.jpg");
}

.consulting-page .top-wrap .top-txt {
  line-height: 1.25;
}

.consulting-page .top-wrap .top-sub-txt {
  line-height: 1.5;
}

.consulting-page .consulting-flex {
  line-height: 1.75;
}

.consulting-page .consulting-flex .consulting-ttl span,
.consulting-page .consulting-flex .consulting-ttl {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.consulting-page .consulting-flex .consulting-ttl span {
  color: #e6481b;
}

.consulting-page .contact-link-wrap .txt-wrap {
  background-color: #f8f8f8;
}

.consulting-page .contact-link-wrap .txt {
  font-weight: 700;
  line-height: 1.75;
}

.consulting-page .contact-link-wrap .txt2 {
  color: #e6481b;
  font-weight: 700;
}

.consulting-page .contact-link-wrap .font-eng {
  color: #e6481b;
  display: block;
  letter-spacing: 0;
}

.consulting-page .contact-link-wrap .notice-wrap dl,
.consulting-page .contact-link-wrap .notice-wrap {
  display: flex;
  color: #e6481b;
}

.consulting-page .contact-link-wrap .notice-wrap dt {
  position: relative;
}

.consulting-page .contact-link-wrap .notice-wrap dt::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 2px;
  width: 1px;
  height: 13px;
  background-color: #e6481b;
}

.consulting-page .contact-link-wrap .btn {
  border-color: #dc000c;
  background-color: #dc000c;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.consulting-page .contact-link-wrap .btn:hover {
  background-color: #e6481b;
  border-color: #e6481b;
}

.consulting-page .consulting-item {
  position: relative;
}

.consulting-page .consulting-item .number {
  color: #f8dbce;
  position: absolute;
}

.consulting-page .consulting-item .ttl {
  color: #e6481b;
  font-weight: 700;
}

.consulting-page .consulting-item .sub-ttl {
  font-weight: 700;
  line-height: 1.5;
}

.consulting-page .consulting-item .txt {
  line-height: 1.75;
}

.consulting-page .consulting-item .item-ttl {
  font-weight: 700;
  color: #e6481b;
  border-top: solid 2px #e6481b;
}

.consulting-page .flow-list {
  display: flex;
}

.consulting-page .flow-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consulting-page .flow-list .icon-wrap {
  position: relative;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consulting-page .flow-list .list-number {
  background-color: #e6481b;
  color: #fff;
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.consulting-page .flow-list .img-wrap img {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.consulting-page .flow-list .list-ttl {
  color: #e6481b;
  font-weight: 500;
  white-space: nowrap;
}

.consulting-page .flow-list .list-txt {
  line-height: 1.75;
}

.consulting-page .flow-list .list-txt a {
  color: #e6481b;
  text-decoration: underline;
  transition: all 0.4s;
}

.consulting-page .flow-list .list-txt a:hover {
  opacity: 0.7;
}
.consulting-page .consulting-item .btn {
  font-weight: 700;
}

.consulting-page .company-item .item-sub-ttl {
  color: #e6481b;
  font-weight: 700;
}

.consulting-page .company-item .item-txt {
  font-weight: 700;
}

.consulting-page .company-item .merit-wrap {
  background-color: #fff;
  border: solid 1px #e6481b;
  line-height: 1.75;
}

.consulting-page .consulting-item .merit-ttl {
  color: #e6481b;
  font-weight: 500;
}

.consulting-page .company-item .conclusion-list,
.consulting-page .company-item .merit-wrap ul {
  list-style-type: disc;
  padding-left: 20px;
}

.consulting-page .company-item .merit-wrap.demerit-wrap {
  border: solid 3px #333;
}

.consulting-page .company-item .merit-wrap.demerit-wrap .merit-ttl {
  color: #333;
  font-weight: 700;
}

.consulting-page .company-item .merit-wrap.demerit-wrap ul li {
  font-weight: 700;
}

.consulting-page .company-item .conclusion-list {
  line-height: 1.75;
}

.consulting-page .consulting-item .example-wrap {
  margin: 50px auto;
}

.consulting-page .case-list {
  display: flex;
  flex-wrap: wrap;
}

.consulting-page .case-list .img-wrap {
  background-color: #fff;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
}

.consulting-page .consulting-item .case-list .font-eng {
  color: #e6481b;
  text-transform: capitalize;
}

.consulting-page .consulting-item .case-item .ttl {
  display: block;
  text-decoration: underline;
}

.consulting-page .consulting-item .impact-txt {
  color: #e6481b;
  font-weight: 700;
}

.consulting-page .consulting-item .txt2 {
  line-height: 1.75;
  font-size: 1.4rem;
  margin-top: 10px;
}

/* ================================================
 * 事例紹介
 * ================================================*/
.sell-page .case-item {
  border: solid 1px #e6481b;
}

.sell-page .case-ttl-flex .img-wrap {
  background-color: #e6481b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sell-page .case-ttl-flex .txt-wrap {
  color: #e6481b;
}

.sell-page .case-ttl-flex .number {
  text-transform: capitalize;
}

.sell-page .case-ttl-flex .case-ttl span,
.sell-page .case-ttl-flex .case-ttl {
  font-weight: 700;
}

.online-page .balloon-flex .txt-wrap,
.sell-page .balloon-flex .txt-wrap {
  position: relative;
}

.online-page .balloon-flex .txt-wrap::after,
.sell-page .balloon-flex .txt-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
}

.online-page .balloon-flex.gray .txt-wrap::after,
.online-page .balloon-flex.gray .txt-wrap,
.sell-page .balloon-flex.gray .txt-wrap::after,
.sell-page .balloon-flex.gray .txt-wrap {
  background-color: #f8f8f8;
}

.online-page .balloon-flex.pink .txt-wrap::after,
.online-page .balloon-flex.pink .txt-wrap,
.sell-page .balloon-flex.pink .txt-wrap::after,
.sell-page .balloon-flex.pink .txt-wrap {
  background-color: #fff7f3;
}

.sell-page .balloon-flex .txt-wrap .ttl {
  font-weight: 700;
}

.sell-page .balloon-flex.pink .txt-wrap .ttl {
  color: #e6481b;
}

.sell-page .balloon-flex ul {
  list-style-type: disc;
  padding-left: 24px;
}

.sell-page .voice-wrap {
  border: solid 1px #e6481b;
  line-height: 1.75;
}

.sell-page .voice-ttl-flex {
  display: flex;
  justify-content: space-between;
}

.sell-page .voice-ttl-flex .ttl {
  font-weight: 700;
  color: #e6481b;
}

.sell-page .voice-ttl-flex .note {
  font-weight: 500;
}

.sell-page .sell-ttl span,
.sell-page .sell-ttl {
  font-weight: 700;
  text-align: center;
}

.sell-page .sell-ttl span {
  color: #e6481b;
  display: block;
}

.sell-page .faq-section {
  line-height: 1.75;
}

.sell-page .faq-section .txt {
  font-weight: 700;
}

.sell-page .faq-item {
  border: solid 1px #e6481b;
}

.sell-page .faq-txt,
.sell-page .faq-ttl {
  display: flex;
}

.sell-page .faq-ttl {
  align-items: center;
  color: #e6481b;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.sell-page .faq-ttl:hover {
  opacity: 0.7;
}

.sell-page .faq-ttl::before,
.sell-page .faq-ttl::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #e6481b;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all 0.3s;
}

.sell-page .faq-ttl::before {
  transform: rotate(90deg);
}

.sell-page .faq-ttl.active::before {
  transform: rotate(0);
}

.sell-page .faq-ttl p {
  font-weight: 700;
}

.sell-page .faq-txt {
  display: none;
}

.sell-page .faq-txt .flex {
  align-items: flex-start;
}

.sell-page .faq-txt .font-eng,
.sell-page .faq-ttl .font-eng {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: solid 1px #e6481b;
}

.sell-page .faq-ttl .font-eng {
  background-color: #e6481b;
  color: #fff;
}

.sell-page .faq-txt .font-eng {
  color: #e6481b;
}
/* ================================================
 * お問合せ
 * ================================================*/
.contact-page .mv-wrap {
  background-image: url("../img/contact-mv.jpg");
}

.contact-page .form-section .top-txt {
  line-height: 1.7;
  text-align: center;
}

.contact-page .form-wrap .important {
  color: #dc000c;
  background-color: #ffe7dc;
  padding: 2px 4px;
}

.contact-page .form-wrap dl {
  display: flex;
  position: relative;
}

.contact-page .form-wrap dt {
  font-weight: 500;
}

.contact-page .form-wrap dt::before {
  content: "";
  display: inline-block;
  background-color: #e6481b;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-page .form-wrap dd {
  line-height: 1.7;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page input[type="tel"],
.contact-page textarea {
  border: solid 1px #d2d2d2;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
}

.contact-page .radio-wrap ul {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.7;
}

.contact-page input[type="text"]::placeholder,
.contact-page input[type="email"]::placeholder,
.contact-page input[type="tel"]::placeholder,
.contact-page textarea::placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-size: 1.6rem;
}

/*radioカスタマイズ*/
.contact-page .privacy-wrap input,
.contact-page .radio-wrap input {
  display: none;
}

.contact-page .privacy-wrap label,
.contact-page .radio-wrap label {
  cursor: pointer;
  position: relative;
  display: block;
}

.contact-page .privacy-wrap label {
  font-weight: 500;
}

.contact-page .privacy-wrap label a {
  color: #e6481b;
  text-decoration: underline;
  transition: all 0.3s;
}

.contact-page .privacy-wrap label a:hover {
  opacity: 0.7;
}

.contact-page .radio-wrap label::before,
.contact-page .radio-wrap label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 7px;
}

.contact-page .radio-wrap label::before {
  background-color: #fff;
  border: 2px solid #a5a5a5;
  height: 14px;
  width: 14px;
  left: 0;
}

.contact-page .radio-wrap label::after {
  background-color: #e6481b;
  opacity: 0;
  height: 7px;
  width: 7px;
  left: 3.5px;
  top: 10.5px;
}

.contact-page .radio-wrap input:checked + label::before {
  border: 2px solid #e6481b;
}

.contact-page .radio-wrap input:checked + label::after {
  opacity: 1;
}

.contact-page .privacy-wrap label::before,
.contact-page .privacy-wrap label::after {
  content: "";
  display: block;
  position: absolute;
}

.contact-page .privacy-wrap label::before {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #a5a5a5;
  width: 20px;
  height: 20px;
  top: -2px;
  left: 5px;
}

.contact-page .privacy-wrap label::after {
  border-bottom: 2px solid #e6481b;
  border-left: 2px solid #e6481b;
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 5px;
  left: 10px;
}

.contact-page .privacy-wrap input:checked + label::before {
  border: 1px solid #e6481b;
}

.contact-page .privacy-wrap input:checked + label::after {
  opacity: 1;
}

.contact-page .form-wrap textarea {
  width: 100%;
  height: 240px;
  padding: 10px;
}

.contact-page .privacy-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.contact-page .inquiry {
  color: rgba(17, 17, 17, 0.35);
  font-size: 1.2rem;
  text-align: right;
}

.contact-page .submit-btn {
  background-color: #fff;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-page .submit-btn:hover {
  background-color: #e6481b;
}

/*select*/
.contact-page select {
  border: solid 1px #d2d2d2;
  border-radius: 0;
  color: rgba(17, 17, 17, 0.35);
  font-size: 1.6rem;
}

.contact-page .form-wrap .select-date-wrap dt {
  padding-left: 0;
}

.contact-page .select-date-wrap dt::before {
  display: none;
}

/*confirm*/
.confirm-page .submit-area {
  display: flex;
  justify-content: center;
}

.contact-page .reset-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 700;
  border: solid 2px #999;
  color: #999;
  margin: 0;
  letter-spacing: 0.1em;
  background-color: transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-page .reset-btn:hover {
  background-color: #999;
  color: #fff;
}

/*thanks*/
.thanks-page .thanks-wrap {
  line-height: 1.7;
}

.thanks-page .main-txt {
  font-weight: 700;
}

/* ================================================
 * 会社案内
 * ================================================*/
.company-page .mv-wrap {
  background-image: url("../img/company-mv.jpg");
}

.consulting-page .company-item,
.service-page .company-item,
.company-page .company-item {
  background-color: #fff7f3;
  box-shadow: 50px 50px 0 0 #e6481b;
}

.company-page .greeting-txt {
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.company-page .greeting-wrap .signature {
  text-align: right;
  display: block;
}

.company-page .profile-wrap dl {
  display: flex;
  line-height: 1.75;
}

.company-page .profile-link {
  color: #e6481b;
  text-decoration: underline;
}

.company-page .profile-link:hover {
  opacity: 0.7;
}

.company-page .history-wrap dl {
  border-bottom: solid 1px #d2d2d2;
  line-height: 1.75;
  display: flex;
}

.company-page .history-wrap dl li {
  display: flex;
}

.company-page .maps-outer {
  position: relative;
}

.company-page .maps-outer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-page .map-link {
  text-transform: capitalize;
  font-weight: 700;
}

.company-page .access-wrap dl {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d2d2d2;
  line-height: 1.75;
}

.company-page .access-wrap dl:first-of-type {
  padding-top: 0;
}

/* ================================================
 * ビジョン
 * ================================================*/
.vision-page .top-sub-txt {
  line-height: 1.75;
}

.vision-page .company-item {
  position: relative;
}

.service-page .service-ttl span,
.service-page .service-ttl,
.vision-page .vision-ttl span,
.vision-page .vision-ttl {
  font-weight: 700;
}

.service-page .service-ttl span,
.vision-page .vision-ttl span {
  color: #e6481b;
}

.vision-page .company-item .number {
  color: #f8dbce;
  position: absolute;
  text-transform: capitalize;
}

.vision-page .vision-wrap3,
.vision-page .vision-wrap2 .vision-txt,
.vision-page .company-item .txt-wrap {
  line-height: 1.75;
}

.vision-page .vision-wrap2 {
  background-color: #fffdf3;
}

.vision-page .vision-wrap2 .vision-txt span {
  font-weight: 700;
}

.vision-page .vision-wrap3 {
  background-color: #f8f8f8;
}

.vision-page .vision-wrap3 .signature {
  display: block;
  margin: 28px 0 0 auto;
  text-align: right;
}

.vision-page .antisocial-wrap dl {
  border-top: solid 3px #333;
}

.vision-page .antisocial-wrap dt span,
.vision-page .antisocial-wrap dt {
  font-weight: 700;
  line-height: 1;
}

.vision-page .antisocial-wrap dt span {
  color: #e6481b;
}

/* ================================================
 * 事業部のご案内
 * ================================================*/
.division-page .division-wrap {
  display: flex;
}

.division-page .division-ttl {
  font-weight: 700;
  text-align: center;
  color: #e6481b;
}

.division-page .division-item ul {
  line-height: 1.75;
  list-style: none;
}

.division-page .division-item ul li {
  padding-left: 24px;
  position: relative;
}

.division-page .division-item ul li::before {
  content: "◎";
  display: inline-block;
  width: 24px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}

.division-page .division-item .btn {
  font-weight: 700;
}

/* ================================================
 * sdgs
 * ================================================*/
.sdgs-page .top-wrap,
.sdgs-page .sdgs-section {
  line-height: 1.75;
}

.sdgs-page .top-wrap {
  line-height: 1.45;
}

.sdgs-page .goal-wrap,
.sdgs-page .icon-sdgs-wrap {
  display: flex;
  justify-content: center;
}

.sdgs-page .sdgs-item {
  border: solid 1px #e6481b;
}

.sdgs-page .sdgs-item .sdgs-ttl {
  color: #e6481b;
  font-weight: 700;
  line-height: 1;
}

.sdgs-page .sdgs-flex .txt-wrap {
  background-color: #f8f8f8;
}

.sdgs-page .sdgs-flex .txt-wrap .ttl {
  color: #dc000c;
  font-weight: 700;
  line-height: 1;
}

.sdgs-page .attempt-list {
  margin-left: 24px;
}

.sdgs-page .attempt-list li {
  position: relative;
}

.sdgs-page .attempt-list li::before {
  content: "◎";
  display: inline-block;
  position: absolute;
  top: 0;

  left: -24px;
}

.sdgs-page .icon-list {
  display: flex;
}

.sdgs-page .icon-list.border {
  border-bottom: solid 1px #aaa;
}

.sdgs-page .sdgs-item .img-wrap {
  display: flex;
}

/* ================================================
 * IR情報
 * ================================================*/
.ir-page .ir-section {
  letter-spacing: 0.05em;
}

.ir-page .select-ttl {
  font-weight: 700;
}

.ir-page .section-ttl .main-txt {
  font-weight: 700;
  color: #e6481b;
  display: block;
  text-align: center;
}

.ir-page .type-item,
.ir-page .year-select {
  border: solid 2px #e6481b;
  color: #e6481b;
  font-weight: 700;
  text-align: center;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ir-page .year-select {
  appearance: none;
}

.ir-page .year-select-wrap {
  position: relative;
  width: fit-content;
}

.ir-page .year-select-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 21px;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e6481b;
  pointer-events: none;
}

.ir-page .type-list {
  display: flex;
  flex-wrap: wrap;
}

.ir-page .type-item label {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.ir-page .type-item input {
  display: none;
}
.ir-page .type-item:hover label,
.ir-page .type-item input:checked + label {
  background-color: #e6481b;
  color: #fff;
}

.ir-page .information-item {
  border-bottom: solid 1px #707070;
}

.ir-page .information-item a:hover {
  opacity: 0.7;
}

.ir-page .date-type-flex {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.ir-page .information-item .date {
  font-size: 14px;
  font-weight: 500;
}

.ir-page .information-item .type {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100px;
  height: 30px;
}

.ir-page .type-ir {
  background-color: #e64800;
}

.ir-page .type-news {
  background-color: #dc000c;
}

.ir-page .type-agm {
  background-color: #ffba00;
}

.ir-page .type-fs {
  background-color: #287711;
}

.ir-page .type-publisher {
  background-color: #0d2b7e;
}

.ir-page .type-td {
  background-color: #552079;
}

.ir-page .type-epn {
  background-color: #642e16;
}

.ir-page .info-ttl {
  line-height: 1.4;
  position: relative;
  padding-right: 30px;
  width: fit-content;
}

.ir-page .info-ttl::after {
  content: "";
  display: online-block;
  width: 20px;
  height: 25px;
  background-image: url(../img/pdf-img.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ir-page .policy-ttl {
  line-height: 1.4;
  font-weight: 700;
  font-size: 20px;
  border-top: solid 3px #333333;
  margin-top: 50px;
  padding-top: 20px;
  margin-bottom: 30px;
}

.ir-page .policy-ttl span {
  color: #e6481b;
  font-weight: 700;
}

.ir-page .policy-txt {
  line-height: 1.75;
}

.ir-page .policy-txt + .policy-txt {
  margin-top: 1.75em;
}

.ir-page .number-list,
.ir-page .disc-list {
  line-height: 1.75;
  margin-top: 1em;
  margin-bottom: 1em;
}

.ir-page .disc-list {
  list-style: disc;
}

.ir-page .disc-list li {
  margin-left: 18px;
}

.ir-page .number-list {
  list-style: dotted-decimal;
}

.ir-page .number-list li {
  margin-left: 22px;
}

.ir-page .disc-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.ir-page .number-list li::marker {
  font-weight: 700;
}

.ir-page .policy-link {
  color: #e6481b;
  text-decoration: underline;
  line-height: 1.75;
}

.ir-page .policy-link:hover {
  opacity: 0.7;
}

.ir-page .annotation-list {
  display: flex;
  line-height: 1.75;
  margin-top: 1.75em;
}

.ir-page .annotation-list dt {
  width: 40px;
  flex: 0 0 auto;
  align-items: flex-start;
}

.ir-page .annotation-list dd span {
  font-weight: 700;
}

.ir-page .ir-contact-item {
  line-height: 1.75;
}

.ir-page .ir-contact-dl dt,
.ir-page .ir-contact-ttl {
  font-weight: 700;
}

.ir-page .ir-contact-dl {
  display: flex;
}

.ir-page .ir-contact-dl .ir-btn {
  width: 300px;
  height: 60px;
}

.ir-page .ir-contact-dl .ir-btn:hover {
  background-color: #e6481b;
  border-color: #e6481b;
}

.ir-page .ir-contact-dl .ir-btn p {
  text-aline: center;
}

/* ================================================
 * 採用情報
 * ================================================*/
.recruit-page .mv-wrap {
  background-image: url("../img/recruit-mv.jpg");
}

.recruit-page .recruit-section {
  line-height: 1.75;
}

.recruit-page .recruit-section .section-ttl {
  line-height: 1;
}

.recruit-page .recruit-section .section-ttl .sub-txt,
.recruit-page .recruit-section .section-ttl .font-eng {
  width: 100%;
}

.service-page .instagram-wrap,
.recruit-page .instagram-wrap,
.recruit-page .entry-wrap {
  background-color: #ffe7dc;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-page .entry-txt,
.recruit-page .entry-txt {
  font-weight: 700;
}

.service-page .entry-link,
.recruit-page .entry-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.recruit-page .entry-link img {
  transition: all 0.3s;
}

.recruit-page .recruit-section .recruit-ttl {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.recruit-page .recruit-section .recruit-ttl span {
  color: #e6481b;
  font-weight: 700;
}

.recruit-page .entry-link:hover img {
  opacity: 0.7;
}

.recruit-page .upbringing-wrap {
  background-color: #fff7f3;
}

.recruit-page .txt-wrap {
  z-index: 1;
  position: relative;
}

.recruit-page .upbringing-column .number {
  color: #f8dbce;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
  z-index: -1;
}

.recruit-page .upbringing-column .column-ttl span,
.recruit-page .upbringing-column .column-ttl {
  color: #e6481b;
  font-weight: 700;
}

.recruit-page .upbringing-column .column-sub-ttl {
  font-weight: 700;
}

.recruit-page .upbringing-column .item-ttl {
  color: #dc000c;
  font-weight: 700;
}

.recruit-page .ideal-wrap > .flex {
  border: solid 1px #e6481b;
}

.recruit-page .ideal-ttl {
  color: #e6481b;
  font-weight: 700;
}

.recruit-page .ideal-list {
  list-style-type: disc;
  margin-left: 20px;
}

.service-page .entry-insta-link,
.recruit-page .entry-insta-link {
  border: solid 2px #e6481b;
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e6481b;
  font-weight: 700;
}

.service-page .entry-insta-link::before,
.recruit-page .entry-insta-link::before {
  content: "";
  display: inline-block;
  background-image: url("../img/icon-instagram.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.recruit-page .mid-career-flex .txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f8f8;
}

.recruit-page .mid-career-flex .txt {
  font-weight: 700;
}

.recruit-page .mid-career-flex .btn {
  background-color: #dc000c;
  border-color: #dc000c;
  text-align: center;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s;
}

.recruit-page .mid-career-wrap:hover .btn {
  background-color: #e6481b;
  border-color: #e6481b;
}

/* ================================================
 * プライバシーポリシー
 * ================================================*/
.privacy-page .mv-wrap {
  background-image: url("../img/privacy-mv.jpg");
}

.privacy-page .privacy-section {
  line-height: 1.75;
}

.privacy-page .policy-ttl {
  color: #e6481b;
  font-weight: 700;
  text-align: center;
}

.privacy-page .privacy-ttl {
  border-top: solid 3px #333;
  font-weight: 700;
}

.privacy-page .privacy-ttl span {
  color: #e6481b;
  font-weight: 700;
}

.privacy-page .list-disc {
  list-style-type: disc;
}

.privacy-page .list-inc li::marker {
  font-weight: 700;
}

.privacy-page .top-txt a,
.privacy-page .pp-txt a,
.privacy-page .remarks {
  color: #e6481b;
  text-decoration: underline;
}

.privacy-page .pp-link {
  display: block;
  color: #e6481b;
  text-decoration: underline;
}

.privacy-page .remarks-wrap {
  border-top: solid 1px #aaaaaa;
}

.privacy-page .remarks-ttl {
  font-weight: 700;
}

.privacy-page .number-txt.pp-txt {
  margin-top: 0;
}

/* ================================================
 * 404
 * ================================================*/
.not-found-page .mv-wrap {
  background-image: url("../img/privacy-mv.jpg");
}

.not-found-page .not-found-section {
  line-height: 1.75;
}

.not-found-page .not-found-section h2 {
  font-weight: 700;
}

.not-found-page .not-found-section .btn {
  font-weight: 700;
}

/* ================================================
 * IR
 * ================================================*/
.ir-btn {
  background-color: #dc000c;
  border-color: #dc000c;
  text-align: center;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s;
  width: 360px;
  margin: 30px;
}

.ir-btn:hover {
  background-color: #e6481b;
  border-color: #e6481b;
}
