@charset "UTF-8";
@font-face {
  font-family: "HuiFont";
  src: url("./font/HuiFont.woff2") format("woff2"), url("./font/HuiFont.woff") format("woff");
}

/* ------------------------
    ヘッダー
------------------------ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all .5s ease;
}

.header.no-bg {
  background-color: rgba(51, 51, 51, 0);
}

.header.no-bg.js-scroll {
  background-color: rgba(38, 38, 38, 0.8);
}

.header.js-scroll .global-nav {
  opacity: 1;
}

.header__inner {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  height: 80px;
  transition: all .3s ease;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.header__logo {
  display: block;
  width: 295px;
  height: 52px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background: url(./img/logo_site.svg) no-repeat center/contain;
  margin: 0 30px 0 21px;
}

.header__logo:hover {
  opacity: .75;
}

.header-tel {
  margin: 0 20px 0 auto;
}

.header-tel .txt-cmn {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}

.header-tel .tel {
  display: block;
  text-decoration: none;
  position: relative;
  text-decoration: none;
  pointer-events: none;
  color: #313131;
  cursor: default;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.5em;
}

.header-tel .tel p {
  position: relative;
}

.header-tel .tel p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -23px;
  width: 16px;
  height: 25px;
  background: url(./img/ico_tel.png) no-repeat center/contain;
}

.header-tel-mail {
  display: block;
  width: 21px;
  height: 21px;
  margin: 0 25px 0 auto;
  z-index: 99;
}

.header-mail {
  display: block;
  width: 80px;
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  background-color: #EB8B38;
  height: 100%;
}

.header-mail span {
  padding-top: 47px;
  line-height: 1.2em;
  position: relative;
  display: block;
  text-align: center;
}

.header-mail span::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 30px;
  width: 27px;
  height: 20px;
  background: url(./img/ico_mail.png) no-repeat center/contain;
}

.header-mail:hover {
  opacity: .75;
}

.header .global-nav {
  height: 53px;
  transition: all .5s ease;
  position: relative;
  z-index: 1;
}

.header .global-nav.hide {
  transform: translateY(-100%);
  z-index: -1;
}

.header .global-nav__list {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  background-color: #ffffff;
  border-top: 1px solid #dedede;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease;
}

.header .global-nav__list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.13);
  opacity: 0;
  height: 52px;
  z-index: -1;
  transition: all 0.5s ease;
}

.header .global-nav__list.js-fade {
  box-shadow: none;
  border-bottom: 1px solid #dedede;
}

.header .global-nav__list.js-fade::after {
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}

.header .global-nav__item {
  padding-right: 50px;
}

.header .global-nav__item:first-of-type {
  padding-left: 50px;
}

.header .global-nav__item:last-of-type {
  padding-right: 86px;
}

.header .global-nav__item:last-of-type .sub-nav {
  right: 0;
  justify-content: flex-end;
}

.header .global-nav__link {
  display: block;
  text-decoration: none;
  color: #313131;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 10px 0;
  transition: all .3s ease;
}

.header .global-nav__link:hover {
  color: #EB8B38;
}

.header .global-nav .sub-nav {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 10px 86px 10px 25px;
  opacity: 0;
  pointer-events: none;
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
}

.header .global-nav .sub-nav.js-fade {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s ease;
}

.header .global-nav .sub-nav__item {
  transition: all .3s ease;
}

.header .global-nav .sub-nav__item:last-of-type .sub-nav__link {
  margin-right: 0;
}

.header .global-nav .sub-nav__item:hover {
  opacity: .5;
}

.header .global-nav .sub-nav__link {
  position: relative;
  color: #313131;
  text-decoration: none;
  padding: 2px 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-right: 84px;
  white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
  .header__inner {
    height: 48px;
  }
  .header__logo {
    width: 240px;
  }
  .header-tel, .header-mail {
    display: none;
  }
  .header .global-nav {
    height: auto;
    border-left: 0 none;
  }
  .header .global-nav__list {
    display: block;
    height: auto;
    padding: 70px 15px 0;
    background-color: transparent;
    width: 250px;
    max-width: 100%;
    box-shadow: none;
    margin: 0 auto;
  }
  .header .global-nav__item {
    padding: 6px 0 0;
  }
  .header .global-nav__item:first-of-type, .header .global-nav__item:last-of-type {
    padding: 6px 0 0;
  }
  .header .global-nav__link {
    padding: 0;
    color: #ffffff;
    font-size: 16px;
  }
  .header .global-nav__link:hover {
    color: #ffffff;
  }
  .header .global-nav .sub-nav {
    position: relative;
    top: auto;
    left: auto;
    white-space: normal;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    display: block;
  }
  .header .global-nav .sub-nav__item {
    padding: 6px 0 0;
  }
  .header .global-nav .sub-nav__link {
    padding: 0 0 0 15px;
    color: #ffffff;
    position: relative;
  }
  .header .global-nav .sub-nav__link::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 1px;
    background: #ffffff;
  }
}

@media only screen and (max-width: 768px) {
  .header__logo {
    width: 213px;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bottom-nav {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: #EB8B38;
    z-index: 99;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .bottom-nav__list {
    -js-display: flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .bottom-nav__item {
    position: relative;
    width: 100%;
    height: 50px;
    -js-display: flex;
    display: flex;
    justify-content: center;
  }
  .bottom-nav__item a {
    font-size: 11px;
    line-height: 1.0;
    padding-top: 40px;
  }
  .bottom-nav__item.mail a:before {
    content: "";
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 20px;
    width: 24px;
    height: 17px;
    background: url(./img/ico_mail.png) no-repeat center/contain;
  }
  .bottom-nav__item.tel a:before {
    content: "";
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 20px;
    width: 17px;
    height: 26px;
    background: url(./img/ico_tel_white.png) no-repeat center/contain;
  }
  .bottom-nav__item.facebook a:before {
    content: "";
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 20px;
    width: 12px;
    height: 23px;
    background: url(./img/ico_btm_fb.png) no-repeat center/contain;
  }
  .bottom-nav__item.instagram a:before {
    content: "";
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 20px;
    width: 23px;
    height: 23px;
    background: url(./img/ico_btm_ig.png) no-repeat center/contain;
  }
  .bottom-nav__link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    height: 100%;
    width: 100%;
  }
}

/* ------------------------
    スマホナビ
------------------------ */
.drawer-hamburger {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .drawer.drawer--top .drawer-hamburger {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 54px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    padding: 0 15px;
    overflow: visible;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
    height: 2px;
    background-color: #EB8B38;
    width: 100%;
    margin-top: -4px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    width: 100%;
    height: 2px;
    background-color: #EB8B38;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
    top: -7px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    top: 7px;
  }
  .drawer.drawer--top .drawer-nav {
    position: absolute;
    padding: 0;
    background-color: rgba(235, 139, 56, 0);
    opacity: 0;
    pointer-events: none;
    transition: none;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle {
    left: auto;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle::after {
    opacity: 1;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon {
    background: transparent;
    margin-top: 0;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::before, .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::after {
    top: 0;
    left: -2px;
    background: none;
    background-color: #ffffff;
    width: calc(100% + 4px);
  }
  .drawer.drawer--top.drawer-open .drawer-nav {
    pointer-events: auto;
    animation: opacity 1s ease .5s forwards;
    height: calc(100vh - 75px);
    height: calc((var(--vh,1vh)*100) - 75px);
    position: relative;
  }
  .drawer.drawer--top.drawer-open .drawer-overlay {
    background-color: #EB8B38;
  }
  .drawer.drawer--top.drawer-open .header__inner {
    background-color: transparent;
  }
  .drawer.drawer--top.drawer-open .header__logo {
    opacity: 0;
  }
  .drawer.drawer--top.drawer-open .header .global-nav__list {
    border: none;
  }
  .drawer.drawer--top.drawer-open .header .global-nav.hide {
    transform: none;
  }
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* ------------------------
    フッター
------------------------ */
#page-index .footer {
  margin-top: 100px;
}

.footer {
  position: relative;
  margin-top: 110px;
  background-color: #f8f8f8;
  padding-top: 68px;
  color: #313131;
  font-size: 1.4rem;
  z-index: 1;
}

.footer__inner {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1210px;
  padding: 0 20px;
  align-items: center;
  margin: 0 auto;
}

.footer__heading .footer-contact {
  color: #313131;
  margin: 15px auto 0;
}

.footer__heading .footer-contact .access {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
}

.footer__heading .footer-contact .tel {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  margin-top: 5px;
  text-decoration: none;
  color: #313131;
  pointer-events: none;
}

.footer__heading .footer-contact .tel span {
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-left: 5px;
}

.footer__heading .footer-contact .link-cmn-01 {
  justify-content: flex-start;
}

.footer__logo {
  display: block;
  width: 228px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer__logo:hover {
  opacity: .75;
}

.footer__sitemap {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 650px;
  max-width: calc(100% - 180px);
}

.footer__sitemap .sitemap-list {
  margin-top: 20px;
}

.footer__sitemap .sitemap-list__item {
  margin-top: 15px;
}

.footer__sitemap .sitemap-list__item:first-child {
  margin-top: 0;
}

.footer__sitemap .sitemap-list__link {
  display: block;
  position: relative;
  padding-left: 11px;
  color: #313131;
  line-height: 1.1;
  text-decoration: none;
}

.footer__sitemap .sitemap-list__link:hover {
  color: #EB8B38;
}

.footer__sitemap .sitemap-list__sub li {
  margin-top: 15px;
  padding-left: 11px;
}

.footer__sitemap .sitemap-list__sub li a {
  display: block;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  text-decoration: none;
  color: #313131;
}

.footer__sitemap .sitemap-list__sub li a::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #313131;
  left: 0;
  top: calc(50% - 0.5px);
}

.footer__sitemap .sitemap-list__sub li a:hover {
  color: #EB8B38;
}

.footer__copy {
  width: 100vw;
  margin: 50px calc(50% - 50vw) 0;
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
  background: #EB8B38;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1024px) {
  .footer {
    padding: 68px 0 75px;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__inner .footer-contact .link-cmn-01 {
    justify-content: center;
  }
  .footer__sitemap {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 768px) {
  #page-index .footer {
    margin-top: 40px;
  }
  .footer {
    margin-top: 40px;
    padding: 50px 40px 75px;
  }
  .footer__inner {
    justify-content: center;
    padding: 0;
  }
  .footer__inner .footer-contact .access {
    font-size: 13px;
  }
  .footer__inner .footer-contact .tel {
    pointer-events: auto;
  }
  .footer__logo {
    width: 158px;
  }
  .footer__sitemap {
    width: 100%;
    max-width: none;
    justify-content: center;
    margin-top: 20px;
  }
  .footer__sitemap .sitemap-list {
    width: 50%;
  }
  .footer__sitemap .sitemap-list:first-of-type .sitemap-list__item {
    margin-left: auto;
    width: 160px;
    max-width: 100%;
  }
  .footer__sitemap .sitemap-list:nth-of-type(2) .sitemap-list__item {
    margin-left: 30px;
    width: 220px;
    max-width: 100%;
    padding-right: 30px;
  }
  .footer__sitemap .sitemap-list__item {
    margin-top: 0;
    max-width: 100%;
  }
  .footer__sitemap .sitemap-list__link {
    line-height: 1.5em;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding-top: 10px;
  }
  .footer__sitemap .sitemap-list__link::before {
    height: 15px;
    top: calc(50% - 7.5px);
  }
  .footer__sitemap .sitemap-list__sub li {
    margin-top: 10px;
  }
  .footer__sitemap .sitemap-list__sub li a {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1.5em;
  }
  .footer__copy {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 424px) {
  .footer__sitemap .sitemap-list:nth-of-type(2) .sitemap-list__item {
    margin-left: 10px;
    padding-right: 10px;
  }
}

/* ------------------------
    トップページ
------------------------ */
.index-hero {
  width: 100%;
  height: 100vh;
}

.index-hero__slide {
  position: relative;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
}

.index-hero__slide .hero-slide {
  height: 100%;
}

.index-hero__slide .hero-slide .slick-list,
.index-hero__slide .hero-slide .slick-track,
.index-hero__slide .hero-slide .slick-slide,
.index-hero__slide .hero-slide figure {
  height: 100%;
}

.index-hero__slide .slide-animation {
  animation: fadezoom 10s 0s forwards;
}

.index-hero__inner {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 100%;
  text-shadow: 3px 3px 2px #000000;
}

.index-hero__inner h1 {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-family: HuiFont;
  font-weight: 300;
  width: 100%;
  white-space: nowrap;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 768px) {
  .index-hero__inner h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

.top-headbnr {
  width: 100%;
  margin: 0 auto;
  padding: 90px 20px 0;
}

.top-headbnr__list {
  -js-display: flex;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.top-headbnr__list li {
  margin: 0 8.5px;
  width: 380px;
  max-width: 100%;
  transition: all .3s ease;
}

.top-headbnr__list li:hover {
  opacity: .7;
}

.top-headbnr__list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 65px 15px 18px;
  border: 2px solid #EB8B38;
  border-radius: 10px;
  position: relative;
  font-family: "M PLUS Rounded 1c", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.top-headbnr__list li a::after {
  content: "";
  position: absolute;
  top: -22.5px;
  left: 50%;
  transform: translateX(-50%);
  height: 45px;
  width: 191px;
  background-color: #ffffff;
  z-index: 0;
}

.top-headbnr__list li a p {
  color: #EB8B38;
  font-size: 20px;
  font-weight: bold;
  font-family: HuiFont;
  position: relative;
  white-space: nowrap;
  padding-bottom: 5px;
}

.top-headbnr__list li a p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 2px;
  background-color: #EB8B38;
}

.top-headbnr__list li a span {
  display: block;
  color: #313131;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 15px;
  line-height: 1.5em;
}

.top-headbnr__list li a span .bnr-br {
  display: none;
}

.top-headbnr__list li a figure {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -55px;
  z-index: 1;
}

.top-headbnr__list li a figure img {
  max-width: none;
}

.top-headbnr__list li:first-of-type a figure img {
  width: 156px;
  height: 107px;
}

.top-headbnr__list li:nth-of-type(2) a figure img {
  width: 107px;
  height: 107px;
}

.top-headbnr__list li:nth-of-type(3) a figure img {
  width: 136px;
  height: 113px;
}

@media only screen and (max-width: 1200px) {
  .top-headbnr__list li a::after {
    width: 150px;
  }
  .top-headbnr__list li a span .bnr-br {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .top-headbnr__list li a span {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .top-headbnr {
    margin: 40px auto 0;
    padding: 0 15px;
  }
  .top-headbnr__list {
    display: block;
  }
  .top-headbnr__list li {
    width: 100%;
    margin: 4px auto 0;
  }
  .top-headbnr__list li a {
    -js-display: flex;
    display: flex;
    justify-content: space-between;
    padding: 5px 15px 15px;
  }
  .top-headbnr__list li a::after {
    display: none;
  }
  .top-headbnr__list li a p {
    font-size: 15px;
    line-height: 20px;
    display: inline-block;
    white-space: normal;
  }
  .top-headbnr__list li a p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 37px;
  }
  .top-headbnr__list li a span {
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 20px;
    margin-top: 5px;
  }
  .top-headbnr__list li a figure {
    position: static;
    left: unset;
    transform: translateX(0);
    top: unset;
    width: 35%;
  }
  .top-headbnr__list li a div {
    width: 65%;
    text-align: left;
    padding-left: 15px;
    -js-display: flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .top-headbnr__list li:first-of-type a figure img {
    width: 100%;
    max-width: 150px;
    height: 100%;
  }
  .top-headbnr__list li:nth-of-type(2) a figure img {
    width: 100%;
    max-width: 90px;
    height: 100%;
  }
  .top-headbnr__list li:nth-of-type(3) a figure img {
    width: 100%;
    max-width: 120px;
    height: 100%;
  }
}

@media only screen and (max-width: 424px) {
  .top-headbnr__list li a {
    padding: 15px;
  }
  .top-headbnr__list li a figure img {
    margin-top: 0;
  }
  .top-headbnr__list li:first-of-type a figure img {
    width: 93px;
    height: 64px;
    max-width: 100%;
  }
  .top-headbnr__list li:nth-of-type(2) a figure img {
    width: 75px;
    height: 75px;
    max-width: 100%;
  }
  .top-headbnr__list li:nth-of-type(3) a figure img {
    width: 92px;
    height: 77px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 424px) {
  .top-headbnr__list li:first-of-type a p {
    font-size: 14px;
    letter-spacing: -0.1em;
  }
}

.top-news {
  margin: 55px auto 0;
  background-color: #F8F8F8;
  padding: 53px 0 46px;
}

.top-news__inner {
  width: 927px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.top-news__inner h2 {
  font-size: 30px;
  line-height: 1.0em;
  font-weight: bold;
  border-right: 2px solid #707070;
  margin-right: 50px;
  padding: 0 50px 0 0;
  width: 190px;
  max-width: 100%;
  font-family: HuiFont;
  letter-spacing: 0.1em;
}

.top-news-content {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.top-news .news-list {
  width: calc(100% - 190px - 80px);
}

.top-news .news-list li {
  -js-display: flex;
  display: flex;
  align-items: center;
  height: 37px;
  color: #313131;
  margin: 0 auto;
  position: relative;
}

.top-news .news-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #EB8B38;
  border-right: solid 2px #EB8B38;
  position: absolute;
  right: 0;
  top: 15px;
  transform: rotate(45deg);
}

.top-news .news-list li .date {
  width: 75px;
  font-weight: 500;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #9d9d9d;
}

.top-news .news-list li .text {
  max-width: calc(100% - 80px);
  overflow: hidden;
  padding: 0 13px;
  text-overflow: ellipsis;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  color: #333333;
}

.top-news .news-list li .text:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .top-news {
    margin: 42px auto 0;
    padding: 27px 0 30px;
  }
  .top-news__inner {
    padding: 0 15px;
  }
  .top-news__inner h2 {
    border-right: none;
    text-align: center;
    width: 100%;
    font-size: 25px;
    line-height: 33px;
    padding: 0;
    margin: 0;
    letter-spacing: 0.15em;
  }
  .top-news-content {
    display: block;
  }
  .top-news .news-list {
    width: 100%;
    margin-top: 10px;
  }
  .top-news .news-list li {
    display: block;
    height: auto;
    padding: 10px 0;
    border-top: 1px solid #EB8B38;
  }
  .top-news .news-list li:last-of-type {
    border-bottom: 1px solid #EB8B38;
  }
  .top-news .news-list li::before {
    top: calc(50% - 5px);
    transform: translateX(-50%);
    transform: rotate(45deg);
  }
  .top-news .news-list li .date {
    display: block;
    width: 100%;
    font-size: 11px;
  }
  .top-news .news-list li .text {
    max-width: 100%;
    padding: 0;
    display: block;
    line-height: 20px;
    font-size: 14px;
    padding-right: 10px;
  }
}

.top-link {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 692px;
}

.top-link.education {
  margin-top: 85px;
}

.top-link::after {
  content: "";
  position: absolute;
  top: 108px;
  right: 9%;
  width: 158px;
  max-width: 100%;
  height: 155px;
  background: url(./img/index/img_tree.png) no-repeat center top/contain;
}

.top-link > figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
}

.top-link .link-list {
  position: absolute;
  right: 0;
  bottom: 75px;
  width: 39%;
  min-width: 533px;
  z-index: 1;
}

.top-link .link-list li {
  border-bottom: 1px solid #EB8B38;
  background: #ffffff;
  position: relative;
  transition: all .3s ease;
}

.top-link .link-list li:hover {
  background: #FFDBBC;
}

.top-link .link-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #EB8B38;
  border-right: solid 2px #EB8B38;
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  transform: rotate(45deg);
}

.top-link .link-list li a {
  text-decoration: none;
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #313131;
  line-height: 1.0em;
  height: 100%;
  padding: 20px 28px;
}

.top-link .link-list li a span {
  font-size: 25px;
  color: #EB8B38;
  margin-right: 23px;
  line-height: 1.0em;
  vertical-align: middle;
}

.top-link__inner {
  position: relative;
  width: 1100px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}

.top-link__inner .text {
  position: absolute;
  top: 159px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.69);
  padding: 24px 38px 39px;
}

.top-link__inner .text h3 {
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #313131;
  font-weight: 500;
  font-family: HuiFont;
}

.top-link__inner .text h3 span {
  color: #EB8B38;
  font-weight: bold;
}

.top-link__inner .text h3 .emp01 {
  font-size: 40px;
}

.top-link__inner .text p {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 35px;
  color: #313131;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .top-link {
    height: auto;
    padding-top: 200px;
  }
  .top-link.education {
    margin-top: 30px;
  }
  .top-link::after {
    top: 25px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-link > figure {
    position: static;
    width: 100%;
    height: auto;
  }
  .top-link .link-list {
    position: static;
    right: unset;
    bottom: unset;
    width: 100%;
    z-index: 1;
    padding: 0 15px;
    min-width: 0;
  }
  .top-link .link-list li:first-of-type {
    border-top: 1px solid #EB8B38;
  }
  .top-link__inner {
    position: static;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .top-link__inner .text {
    position: static;
    top: unset;
    left: unset;
    background-color: transparent;
    padding: 24px 15px 30px;
  }
  .top-link__inner .text h3, .top-link__inner .text p {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .top-link {
    height: auto;
    padding-top: 148px;
  }
  .top-link.education {
    margin-top: 10px;
  }
  .top-link::after {
    top: 22px;
    width: 107px;
    height: 105px;
  }
  .top-link .link-list {
    padding: 0 15px;
    margin: 30px auto 0;
    width: 100%;
  }
  .top-link .link-list li::before {
    right: 13px;
  }
  .top-link .link-list li a {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.0em;
    padding: 15px 5px;
  }
  .top-link .link-list li a span {
    font-size: 18px;
    margin-right: 19px;
    line-height: 1.0em;
  }
  .top-link__inner {
    padding: 0 15px;
  }
  .top-link__inner .text h3 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .top-link__inner .text h3 span {
    font-size: 23px;
  }
  .top-link__inner .text h3 .emp01 {
    font-size: 28px;
  }
  .top-link__inner .text p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 5px;
  }
}

.top-achievement {
  width: 1100px;
  max-width: 100%;
  padding: 0 20px;
  margin: 60px auto 0;
  position: relative;
}

.top-achievement h2 {
  margin: 0 auto;
  text-align: center;
  font-family: HuiFont;
}

.top-achievement h2 span {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 38px;
  padding-bottom: 9px;
  border-bottom: 2px solid #EB8B38;
}

.top-achievement a {
  display: block;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  text-decoration: none;
  color: #313131;
  transition: all .3s ease;
}

.top-achievement a .text {
  padding: 20px;
  background-color: #ffffff;
  border-bottom: 2px solid #EB8B38;
  position: relative;
}

.top-achievement a .text h4 {
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.5em;
}

.top-achievement a .text p {
  color: #9d9d9d;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.0em;
  margin-top: 10px;
}

.top-achievement a .text::after {
  content: '';
  width: 13px;
  height: 13px;
  border-top: solid 2px #EB8B38;
  border-right: solid 2px #EB8B38;
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  transform: rotate(45deg);
}

.top-achievement a:hover {
  transition: all .3s ease;
}

.top-achievement a:hover figure img {
  transition: all .3s ease;
}

.top-achievement a:hover figure img + img {
  opacity: 1;
}

.top-achievement a:hover .text {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}

.top-achievement .fig-ratio-ach {
  padding-top: 50.39%;
  margin: 0 auto;
}

.top-achievement figure {
  width: 100%;
  transition: all .3s ease;
}

.top-achievement figure img + img {
  z-index: 1;
  opacity: 0;
}

.top-achievement .grid-cmn {
  margin: 15px -16px 0;
}

.top-achievement .grid-cmn .col {
  margin-top: 48px;
  padding: 0 16px;
}

.top-achievement.under {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .top-achievement {
    padding: 0 15px;
  }
  .top-achievement h2 span {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 33px;
  }
  .top-achievement a .text {
    padding: 14px;
  }
  .top-achievement a .text h4 {
    font-size: 14px;
    line-height: 24px;
  }
  .top-achievement a .text p {
    font-size: 12px;
    line-height: 1.0em;
  }
  .top-achievement a .text::after {
    content: '';
    width: 9px;
    height: 9px;
    right: 10px;
    top: calc(50% - 5px);
    transform: rotate(45deg);
  }
  .top-achievement .grid-cmn {
    margin-top: 10px;
  }
  .top-achievement .grid-cmn .col {
    margin-top: 30px;
  }
  .top-achievement.under {
    margin-top: 0;
  }
}

.top-contact {
  margin: 77px auto 0;
  width: 1100px;
  max-width: 100%;
  padding: 0 20px;
}

.top-contact__inner {
  margin: 0 auto;
  border-radius: 20px;
  border: 5px solid #EB8B38;
  padding: 40px 60px;
}

.top-contact__inner h3 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #EB8B38;
  font-family: HuiFont;
}

.top-contact__inner p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  color: #313131;
  margin-top: 5px;
  font-weight: 500;
}

.top-contact__inner .al-center {
  margin-top: 30px;
}

.top-contact__inner figure img {
  vertical-align: middle;
}

.top-contact .grid-cmn {
  align-items: flex-end;
}

.top-contact .grid-cmn .col {
  margin-top: 0;
}

@media only screen and (max-width: 1024px) {
  .top-contact {
    margin-top: 45px;
  }
  .top-contact__inner {
    padding: 35px 25px;
  }
  .top-contact__inner h3 {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .top-contact__inner h3 {
    font-size: 20px;
    line-height: 38px;
  }
  .top-contact__inner p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 10px;
  }
}

.top-about {
  width: 100%;
  margin: 73px auto 0;
  background-color: #FFFAF5;
}

.top-about__inner {
  width: 1100px;
  max-width: 100%;
  padding: 80px 20px;
  margin: 0 auto;
}

.top-about__inner .top-about-content {
  -js-display: flex;
  display: flex;
}

.top-about__inner .text {
  width: 180px;
  max-width: 100%;
  margin-right: 120px;
  color: #313131;
}

.top-about__inner .text h3 {
  font-size: 30px;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  width: 100%;
  letter-spacing: 0.1em;
  padding-bottom: 40px;
  position: relative;
  font-family: HuiFont;
}

.top-about__inner .text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 130px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EB8B38;
}

.top-about__inner .text h3 span {
  color: #EB8B38;
  font-size: 40px;
  display: block;
  line-height: 55px;
}

.top-about__inner .text p {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-align: left;
  margin: 70px auto 0;
}

.top-about__inner .image {
  width: calc(100% - 180px - 120px);
  max-width: 100%;
  -js-display: flex;
  display: flex;
  justify-content: space-between;
}

.top-about__inner .image figure {
  width: 100%;
  margin-top: 0;
}

.top-about__inner .image figure:first-of-type {
  margin-top: 0;
}

.top-about__inner .image-left {
  width: 66%;
}

.top-about__inner .image-right {
  width: 33%;
  -js-display: flex;
  display: flex;
  flex-direction: column;
}

.top-about__inner .image-right figure {
  padding-top: calc(100% - 3.5px);
  margin: 7px auto 0;
}

.top-about__inner .btn-wrap {
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 12px;
}

.top-about__inner .btn-wrap .btn-cmn-01 {
  margin: 0 13px 0 0;
}

.top-about__inner .btn-wrap .btn-cmn-01:last-of-type {
  margin-right: 0;
}

@media only screen and (max-width: 1024px) {
  .top-about__inner .text {
    margin-right: 30px;
  }
  .top-about__inner .image {
    width: calc(100% - 180px - 30px);
  }
}

@media only screen and (max-width: 768px) {
  .top-about__inner {
    padding: 45px 15px;
  }
  .top-about__inner .top-about-content {
    display: block;
  }
  .top-about__inner .text {
    margin-right: 0;
    width: 100%;
  }
  .top-about__inner .text h3 {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 33px;
    padding-bottom: 8px;
  }
  .top-about__inner .text h3::after {
    width: 82px;
    height: 2px;
  }
  .top-about__inner .text h3 span {
    display: inline;
    font-size: 20px;
    line-height: 33px;
  }
  .top-about__inner .text p {
    font-size: 18px;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-align: center;
    line-height: 30px;
    margin: 30px auto 0;
  }
  .top-about__inner .image {
    width: 100%;
    margin-top: 25px;
  }
  .top-about__inner .image figure {
    margin: 0 auto;
  }
  .top-about__inner .image figure:first-of-type {
    margin: 0 auto;
  }
  .top-about__inner .image-right {
    width: 33%;
    -js-display: flex;
    display: flex;
    flex-direction: column;
  }
  .top-about__inner .image-right figure {
    padding-top: calc(100% - 3.5px);
    margin-top: 7px;
  }
  .top-about__inner .btn-wrap {
    justify-content: center;
    margin-top: 44px;
  }
}

.top-post {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
  padding: 0 20px;
}

.top-post__inner {
  padding-top: 90px;
  margin: 0 -20px;
  -js-display: flex;
  display: flex;
}

.top-post-content {
  width: 50%;
  padding: 0 20px;
}

.top-post-content h3 {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #313131;
  font-family: HuiFont;
}

.top-post-content h3 span {
  font-size: 17px;
  margin-left: 20px;
  color: #EB8B38;
  font-weight: 500;
}

.top-post .facebook-wrap {
  margin: 20px auto 0;
}

.top-post .facebook-wrap iframe,
.top-post .facebook-wrap .fb-page,
.top-post .facebook-wrap .fb-page span {
  width: 100% !important;
  height: 500px !important;
}

.top-post-grid:first-of-type .post-grid__link {
  margin-top: 20px;
}

.top-post-grid .post-grid__link {
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  margin: 15px -15px 0;
  transition: all .3s ease;
}

.top-post-grid .post-grid__link .image, .top-post-grid .post-grid__link .text {
  padding: 0 15px;
}

.top-post-grid .post-grid__link .image {
  width: 240px;
}

.top-post-grid .post-grid__link .image figure {
  border-radius: 10px;
  margin-bottom: 0;
  width: 240px;
  height: 156px;
}

.top-post-grid .post-grid__link .image figure img {
  transition: all .3s ease;
  height: 156px;
}

.top-post-grid .post-grid__link .text {
  width: calc(100% - 240px - 15px);
}

.top-post-grid .post-grid__link:hover .image img {
  transform: scale(1.06);
}

.top-post-grid .post-grid__link:hover .text .title {
  text-decoration: underline;
}

.top-post .sns-wrap {
  -js-display: flex;
  display: flex;
  justify-content: center;
  margin: 68px auto 0;
}

.top-post .sns-wrap a {
  width: 463px;
  max-width: 100%;
  height: 94px;
  display: block;
  text-decoration: none;
  padding: 40px 0 0;
}

.top-post .sns-wrap a span {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
}

.top-post .sns-wrap a span::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
}

.top-post .sns-wrap a:hover {
  opacity: .75;
}

.top-post .sns-wrap .facebook-btn {
  background-color: #1877F2;
  margin-right: 16px;
}

.top-post .sns-wrap .facebook-btn span::before {
  background: url(./img/ico_fb.png) no-repeat center top/contain;
}

.top-post .sns-wrap .instagram-btn {
  background-color: #CF2E92;
}

.top-post .sns-wrap .instagram-btn span::before {
  background: url(./img/ico_ig.png) no-repeat center top/contain;
}

.text .title {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  color: #313131;
  display: -webkit-box;
  overflow: hidden;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  -webkit-line-clamp: 2;
}

.text .cat {
  background-color: #EB8B38;
  color: #ffffff;
  border-radius: 15px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 0 21px;
  line-height: 22px;
  margin-top: 10px;
}

.text .date {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #9D9D9D;
  font-weight: 500;
  margin-top: 3px;
}

.text .date span {
  margin-left: 15px;
  color: #EB8B38;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
}

@media only screen and (max-width: 768px) {
  .text .title {
    font-size: 14px;
  }
  .text .cat {
    padding: 0 11px;
    margin-top: 5px;
  }
  .text .date {
    margin-top: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .top-post {
    padding: 0 15px;
  }
  .top-post__inner {
    padding-top: 40px;
    margin: 0 auto;
    display: block;
  }
  .top-post-content {
    width: 100%;
    padding: 0;
  }
  .top-post-content:nth-of-type(2) {
    margin: 20px auto 0;
    width: 768px;
  }
  .top-post-content h3 {
    text-align: center;
    font-size: 25px;
    letter-spacing: 0;
  }
  .top-post-content h3 span {
    display: block;
    font-size: 13px;
    margin-left: 0;
    color: #EB8B38;
    line-height: 1.2em;
  }
  .top-post .facebook-wrap {
    margin-top: 15px;
    text-align: center;
  }
  .top-post .facebook-wrap iframe,
  .top-post .facebook-wrap .fb-page,
  .top-post .facebook-wrap .fb-page span {
    width: 500px !important;
    max-width: 100% !important;
    height: 500px !important;
  }
  .top-post-grid {
    margin-top: 25px;
  }
  .top-post-grid .post-grid__link {
    -js-display: flex;
    display: flex;
    text-decoration: none;
    margin: 18px -5px 0;
    transition: all .3s ease;
  }
  .top-post-grid .post-grid__link .image, .top-post-grid .post-grid__link .text {
    padding: 0 5px;
  }
  .top-post-grid .post-grid__link .image {
    width: 45%;
    height: auto;
  }
  .top-post-grid .post-grid__link .image figure {
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }
  .top-post-grid .post-grid__link .image figure img {
    transition: all .3s ease;
    height: 100%;
  }
  .top-post-grid .post-grid__link .text {
    width: 55%;
  }
  .top-post-grid .post-grid__link .text .title {
    font-size: 14px;
  }
  .top-post .sns-wrap {
    display: block;
    margin: 48px auto 0;
  }
  .top-post .sns-wrap a {
    height: 60px;
    padding: 0;
  }
  .top-post .sns-wrap a span {
    font-size: 21px;
    width: auto;
    display: inline-block;
    padding-left: 40px;
    line-height: 60px;
  }
  .top-post .sns-wrap a span::before {
    top: calc(50% - 15.5px);
    left: 0;
    transform: translateX(0);
    width: 31px;
    height: 31px;
  }
  .top-post .sns-wrap .facebook-btn {
    margin: 0 auto;
    text-align: center;
  }
  .top-post .sns-wrap .instagram-btn {
    margin: 4px auto 0;
    text-align: center;
  }
  .top-post .sns-wrap .instagram-btn span {
    padding-left: 45px;
  }
  .top-post .sns-wrap .instagram-btn span::before {
    left: 7px;
  }
}

@media only screen and (max-width: 768px) {
  .top-post-content:nth-of-type(2) {
    width: 100%;
  }
}

/* ------------------------
    汎用
------------------------ */
.hero {
  position: relative;
  height: 356px;
  width: 100%;
  margin: 80px auto 0;
}

.hero figure {
  height: 284px;
  width: 100%;
  margin: 0 auto;
}

.hero__inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 688px;
  max-width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.13);
  padding: 50px;
}

.hero--text {
  height: auto;
  margin: 80px auto 0;
}

.hero--text__inner {
  padding: 75px 0 60px;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
}

.hero--text__inner .ttl-cmn-01 {
  padding-bottom: 0;
}

.hero--text__inner .ttl-cmn-01::after {
  display: none;
}

.hero + .lg-contents {
  margin-top: 120px;
}

@media only screen and (max-width: 768px) {
  .hero {
    height: 149px;
    margin-top: 48px;
  }
  .hero figure {
    height: 102px;
  }
  .hero__inner {
    padding: 30px;
    box-shadow: none;
    width: calc(100% - 30px);
  }
  .hero__inner:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #EB8B38;
  }
  .hero--text {
    margin-top: 48px;
  }
  .hero--text__inner {
    padding: 32px 20px;
  }
  .hero + .lg-contents {
    margin-top: 30px;
  }
}

.ttl-cmn-01 {
  display: block;
  position: relative;
  font-size: 33px;
  font-weight: bold;
  color: #313131;
  text-align: center;
  line-height: 38px;
  z-index: 1;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  font-family: HuiFont;
}

.ttl-cmn-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 127px;
  height: 4px;
  background-color: #EB8B38;
}

@media only screen and (max-width: 768px) {
  .ttl-cmn-01 {
    font-size: 22px;
    padding-bottom: 0;
  }
  .ttl-cmn-01::after {
    display: none;
  }
}

.ttl-cmn-02 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-top: 40px;
  line-height: 2.0em;
  letter-spacing: 0.1em;
  font-family: HuiFont;
}

@media only screen and (max-width: 768px) {
  .ttl-cmn-02 {
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.5em;
  }
}

.ttl-cmn-03 {
  display: block;
  position: relative;
  font-size: 27px;
  font-weight: bold;
  line-height: 40px;
  margin: 55px auto 0;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: HuiFont;
}

.ttl-cmn-03:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .ttl-cmn-03 {
    font-size: 20px;
    margin-top: 30px;
  }
}

.ttl-cmn-04 {
  display: block;
  position: relative;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  margin-top: 55px;
  letter-spacing: 0.1em;
  font-family: HuiFont;
}

.ttl-cmn-04:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .ttl-cmn-04 {
    font-size: 18px;
    margin-top: 20px;
  }
}

.ttl-cmn-05 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  line-height: 2.0;
  letter-spacing: 0.1em;
  font-family: HuiFont;
}

.ttl-cmn-05:first-child {
  margin-top: 0;
}

.grid-cmn .col .ttl-cmn-05 + .txt-cmn {
  margin-top: 5px;
}

.ttl-cmn-06 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  line-height: 2.0;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #EB8B38;
  font-family: HuiFont;
}

.ttl-cmn-06:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .ttl-cmn-05,
  .ttl-cmn-06 {
    margin-top: 15px;
    font-size: 17px;
  }
}

.catch {
  text-align: center;
  font-size: 2.3rem;
  color: #EB8B38;
  font-weight: bold;
  line-height: 1.65;
  margin-top: 40px;
}

.catch:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .catch {
    text-align: left;
    font-size: 1.9rem;
    margin-top: 30px;
  }
}

.lead01 {
  width: 826px;
  max-width: 100%;
  margin: 45px auto 0;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
}

.lead01:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .lead01 {
    margin-top: 30px;
    text-align: left;
    font-size: 14px;
    line-height: 25px;
  }
}

.read02 {
  margin-top: 70px;
}

.read02:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .read02 {
    margin-top: 25px;
  }
  .read02:first-child {
    margin-top: 0;
  }
}

.txt-cmn {
  font-size: 14px;
  margin: 20px auto 0;
  letter-spacing: 0.1em;
  line-height: 25px;
  font-weight: 500;
}

.list-cmn-01 {
  margin-top: 30px;
}

.list-cmn-01 li {
  padding-left: 0.1em;
  list-style-type: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 30px;
}

.list-cmn-01 li::before {
  content: '';
  position: relative;
  top: 1.5px;
  left: -0.2em;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #EB8B38;
}

@media only screen and (max-width: 768px) {
  .list-cmn-01 {
    margin-top: 15px;
  }
  .list-cmn-01 li {
    font-size: 14px;
  }
  .list-cmn-01 li::before {
    top: -0.1em;
    width: 7px;
    height: 7px;
  }
}

.list-cmn-02 {
  margin-top: 15px;
}

.list-cmn-02:first-of-type {
  margin-top: 0;
}

.list-cmn-02 li {
  padding-left: 1em;
  list-style-type: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 25px;
  position: relative;
}

.list-cmn-02 li::before {
  content: '・';
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 0.3em;
  width: 1.0em;
  height: 100%;
}

.txt-note {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-left: 1.0em;
  position: relative;
  margin-top: 20px;
}

.txt-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.0em;
  height: 100%;
}

.gray-wrap {
  background-color: #f5f5f5;
  padding: 35px 50px 40px;
  margin: 45px auto 0;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .gray-wrap {
    padding: 20px 15px;
  }
}

.link-cmn-01,
.link-cmn-01--center {
  -js-display: inline-flex;
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
}

.link-cmn-01 a, .link-cmn-01 p,
.link-cmn-01--center a,
.link-cmn-01--center p {
  margin-top: 15px;
  letter-spacing: 0.1em;
  display: inline-block;
  font-size: 15px;
  color: #EB8B38;
  transition: all .3s ease;
  position: relative;
  padding-left: 20px;
}

.link-cmn-01 a::before, .link-cmn-01 p::before,
.link-cmn-01--center a::before,
.link-cmn-01--center p::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #EB8B38;
  top: 50%;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  border-radius: 50%;
  transition: all .3s ease;
}

.link-cmn-01 a::after, .link-cmn-01 p::after,
.link-cmn-01--center a::after,
.link-cmn-01--center p::after {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: 5px;
  display: inline-block;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #ffffff;
  transition: all .3s ease;
}

.link-cmn-01 a:hover::before, .link-cmn-01 p:hover::before,
.link-cmn-01--center a:hover::before,
.link-cmn-01--center p:hover::before {
  background-color: #ffffff;
  border: 1px solid #EB8B38;
}

.link-cmn-01 a:hover:after, .link-cmn-01 p:hover:after,
.link-cmn-01--center a:hover:after,
.link-cmn-01--center p:hover:after {
  border-color: transparent transparent transparent #EB8B38;
}

.link-cmn-01 p,
.link-cmn-01--center p {
  text-decoration: underline;
}

.link-cmn-01 p:hover,
.link-cmn-01--center p:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .link-cmn-01 a, .link-cmn-01 p,
  .link-cmn-01--center a,
  .link-cmn-01--center p {
    font-size: 14px;
  }
}

.table-cmn-01 {
  margin-top: 50px;
  width: 100%;
  border-bottom: 1px solid #D1D1D1;
}

.table-cmn-01 caption {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 40px;
  font-weight: bold;
}

.table-cmn-01 tr {
  border-top: 1px solid #D1D1D1;
}

.table-cmn-01 th {
  padding: 12px 18px 12px 3px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.table-cmn-01 td {
  padding: 12px 18px 12px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 768px) {
  .table-cmn-01 {
    margin-top: 15px;
  }
  .table-cmn-01 caption {
    font-size: 13px;
  }
  .table-cmn-01 th {
    padding: 15px 15px 15px 3px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.5em;
  }
  .table-cmn-01 td {
    padding: 15px 10px 15px 0;
    font-size: 13px;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}

.btn-cmn-01 {
  display: inline-block;
  position: relative;
  min-width: 215px;
  line-height: 53px;
  text-decoration: none;
  color: #ffffff;
  background-color: #EB8B38;
  padding: 0 22px;
  margin-top: 50px;
  text-align: center;
  line-height: 53px;
  border-radius: 33px;
  border: 1px solid transparent;
  font-size: 16px;
}

.btn-cmn-01:hover {
  background-color: #ffffff;
  border-color: #EB8B38;
  color: #EB8B38;
}

@media only screen and (max-width: 768px) {
  .btn-cmn-01 {
    font-size: 13px;
    padding: 0 15px;
    border-radius: 21px;
    height: 42px;
    line-height: 42px;
    min-width: 168px;
    margin-top: 25px;
  }
}

.txt-link-01 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333333;
  font-size: 1.5rem;
  padding-right: 22px;
  line-height: 1.1;
}

.txt-link-01::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 3px solid #EB8B38;
  border-bottom: 3px solid #EB8B38;
  right: 0;
  bottom: 0;
  transition: all .3s ease;
}

.txt-link-01:hover {
  opacity: 0.8;
}

.form-table {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 35px;
  width: 100%;
}

.form-table dt {
  width: 230px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.form-table dt.req::after {
  content: '必須';
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.1em;
  margin-left: 6px;
  text-align: center;
  border-radius: 10px;
  background: #EB8B38;
  width: 37px;
  height: 17px;
  vertical-align: middle;
}

.form-table dt.hidden {
  display: none;
}

.form-table dt.full {
  width: 100%;
}

.form-table dd {
  width: calc(100% - 230px);
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.form-table dd.check-wrap {
  padding: 5px 0;
}

.form-table dd.hidden {
  display: none;
}

.form-table dd.full {
  width: 100%;
}

.p-country-name {
  display: none;
}

input.wpcf7-form-control.wpcf7-text.p-postal-code {
  width: 245px;
}

@media only screen and (max-width: 768px) {
  .form-table {
    margin-top: 10px;
  }
  .form-table dt {
    width: 100%;
    padding: 13px 0 0;
    font-size: 13px;
  }
  .form-table dt.req::after {
    font-size: 11px;
  }
  .form-table dd {
    width: 100%;
    padding: 2px 0 0;
    font-size: 14px;
  }
  .form-table dd.check-wrap {
    padding: 0;
  }
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font-size: 15px;
  font-family: "M PLUS Rounded 1c", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background-color: #F4F4F4;
  padding: 10px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 1.6rem;
    padding: 6px;
  }
}

select {
  width: auto;
  min-width: 360px;
  padding-right: 28px;
  background: url(./img/ico_arrow_select.svg) no-repeat center right 9px;
  background-color: #ededed;
}

@media only screen and (max-width: 768px) {
  select {
    min-width: 1px;
  }
}

textarea {
  height: 240px;
}

.checkbox {
  margin-right: 60px;
}

.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox input[type="checkbox"]:checked + span::before {
  background-color: #EB8B38;
}

.checkbox input[type="checkbox"]:checked + span::after {
  transform: rotate(45deg) scale(1);
}

.checkbox span {
  display: inline-block;
  position: relative;
  padding: 10px 0 10px 43px;
  cursor: pointer;
}

.checkbox span::before {
  content: '';
  position: absolute;
  width: 29px;
  height: 29px;
  background-color: #ededed;
  border: 1px solid #d9d9d9;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.checkbox span::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  left: 11px;
  top: calc(50% - 7px);
  transform: scale(0);
  transition: all .3s ease;
}

@media only screen and (max-width: 768px) {
  .checkbox span {
    padding: 6px 0 6px 35px;
  }
}

.radio {
  margin: 0;
  padding: 5px 0;
}

.radio .radio-label,
.radio .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: 35px;
  position: relative;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.radio input[type="radio"] + .radio-label:before,
.radio input[type="radio"] + .wpcf7-list-item-label:before {
  content: '';
  background: #ffffff;
  border-radius: 100%;
  border: 2px solid #707070;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.radio input[type="radio"]:checked + .radio-label:before,
.radio input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background-color: #EB8B38;
  box-shadow: inset 0 0 0 3px #f7f7f7;
}

.radio input[type="radio"]:focus + .radio-label:before,
.radio input[type="radio"]:focus + .wpcf7-list-item-label:before {
  outline: none;
}

.radio input[type="radio"] + .radio-label:empty:before,
.radio input[type="radio"] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}

.radio .wpcf7-list-item {
  margin: 0;
  position: relative;
}

.radio.break .wpcf7-list-item {
  display: block;
}

@media only screen and (max-width: 768px) {
  .radio {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  .radio .radio-label,
  .radio .wpcf7-list-item-label {
    font-size: 14px;
    margin-right: 20px;
    display: block;
  }
  .radio input[type="radio"] {
    width: 1.3em;
    height: 1.3em;
  }
  .radio input[type="radio"] + .radio-label:before,
  .radio input[type="radio"] + .wpcf7-list-item-label:before {
    content: '';
    width: 1.2em;
    height: 1.2em;
  }
  .radio input[type="radio"]:checked + .radio-label:before,
  .radio input[type="radio"]:checked + .wpcf7-list-item-label:before {
    box-shadow: inset 0 0 0 2px #f7f7f7;
  }
}

input[type="submit"] {
  display: block;
  position: relative;
  width: 225px;
  line-height: 53px;
  text-decoration: none;
  color: #ffffff;
  background-color: #EB8B38;
  padding: 0 22px;
  margin: 45px auto 0;
  text-align: center;
  line-height: 53px;
  border-radius: 33px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
  transition: all .3s ease;
}

input[type="submit"]:hover {
  background-color: #ffffff;
  border-color: #EB8B38;
  color: #EB8B38;
}

@media only screen and (max-width: 768px) {
  input[type="submit"] {
    width: 168px;
    line-height: 43px;
    margin: 25px auto 0;
    text-align: center;
    line-height: 43px;
    border-radius: 21px;
    font-size: 13px;
  }
}

.alt-grid-wrap .grid-cmn {
  margin-top: 0;
}

.alt-grid-wrap .grid-cmn:first-of-type {
  margin-top: 18px;
}

.alt-grid-wrap .grid-cmn:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .alt-grid-wrap .grid-cmn {
    margin-top: 0;
  }
  .alt-grid-wrap .grid-cmn:first-of-type {
    margin-top: 15px;
  }
  .alt-grid-wrap .grid-cmn:nth-of-type(even) {
    flex-direction: row;
  }
  .alt-grid-wrap .grid-cmn .col:nth-of-type(even) {
    margin-top: 10px;
  }
}

.blog-wrap {
  margin: 60px auto 0;
  width: 100%;
  padding: 0;
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.blog-content {
  width: calc(100% - 200px - 95px);
}

.blog-content .grid-cmn {
  margin: 0 -20px;
}

.blog-content .grid-cmn .col {
  margin-top: 18px;
  padding: 0 20px;
}

.blog-content .grid-cmn .col > a {
  text-decoration: none;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #313131;
  font-weight: 500;
}

.blog-content .grid-cmn .col > a .image {
  width: 100%;
}

.blog-content .grid-cmn .col > a .image figure {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

.blog-content .grid-cmn .col > a .image figure img {
  transition: all .3s ease;
}

.blog-content .grid-cmn .col > a .text {
  width: 100%;
  margin-top: 5px;
}

.blog-content .grid-cmn .col > a:hover .text .title {
  text-decoration: underline;
}

.blog-content .grid-cmn .col > a:first-child .top-note-grid__item {
  padding: 0 0 30px;
}

.blog-content .grid-cmn .col > a:hover .image img {
  transform: scale(1.06);
}

.blog-content .grid-cmn .col > a:hover .text .title {
  text-decoration: underline;
}

.blog-content .fig-ratio-blog {
  padding-top: 75%;
  border-radius: 10px;
  border: 1px solid #F0F0F0;
  margin: 40px auto 0;
}

.blog-content .blog-heading h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 40px;
}

.blog-cat {
  width: 200px;
  max-width: 100%;
  margin: 0;
  -js-display: flex;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.cat-wrap {
  width: 100%;
  text-align: left;
  margin-top: 30px;
}

.cat-wrap:first-of-type {
  margin-top: 0;
}

.cat-wrap h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  border-bottom: 1px solid #EB8B38;
  letter-spacing: 0.1em;
}

.cat-wrap:first-child h5 {
  margin-top: 0;
}

.cat-wrap .cat-list {
  margin-top: 15px;
}

.cat-wrap .cat-list li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s ease;
  width: 100%;
  line-height: 40px;
  color: #313131;
}

.cat-wrap .cat-list li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .blog-wrap {
    margin-top: 60px;
    display: block;
  }
  .blog-wrap:first-child {
    margin-top: 0;
  }
  .blog-content {
    width: 100%;
  }
  .blog-content .grid-cmn .col > a {
    -js-display: flex;
    display: flex;
    justify-content: space-between;
  }
  .blog-content .grid-cmn .col > a .image {
    width: calc(45% - 13px);
  }
  .blog-content .grid-cmn .col > a .text {
    width: 55%;
    margin-top: 0;
  }
  .blog-content .grid-cmn .col > a .text .title {
    margin-top: 0;
  }
  .blog-content .fig-ratio-blog {
    margin-top: 20px;
  }
  .blog-content .blog-heading h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .blog-cat {
    width: 100%;
    margin-top: 20px;
  }
  .cat-wrap {
    width: 100%;
    text-align: left;
    margin-top: 25px;
  }
  .cat-wrap:first-of-type {
    margin-top: 0;
  }
  .cat-wrap h5 {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .cat-wrap .cat-list {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .cat-wrap .cat-list li {
    display: block;
    padding-right: 40px;
    height: 30px;
  }
  .cat-wrap .cat-list li:last-of-type {
    padding-right: 20px;
  }
  .cat-wrap .cat-list li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 30px;
  }
}

/* ページング */
.pagenavi {
  margin: 30px auto 0;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagenavi .pagenum {
  font-size: 13px;
  color: #707070;
  text-align: center;
  border: 1px solid #707070;
  padding: 0 10px;
  margin-right: 5px;
  border-radius: 20px;
  width: 64px;
  height: 33px;
  line-height: 33px;
}

.pagenavi .nav-links {
  -js-display: flex;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.pagenavi .nav-links .next,
.pagenavi .nav-links .prev {
  font-size: 14px;
  color: #ffffff;
  background: #707070;
  width: 28px;
  height: 28px;
  margin: 0 5px;
  border-radius: 50%;
  position: relative;
  transition: all .3s ease;
}

.pagenavi .nav-links .next:hover,
.pagenavi .nav-links .prev:hover {
  background: #ffffff;
  border: 1px solid #707070;
}

.pagenavi .nav-links .next:hover::before, .pagenavi .nav-links .next:hover::after,
.pagenavi .nav-links .prev:hover::before,
.pagenavi .nav-links .prev:hover::after {
  border-color: #707070;
}

.pagenavi .nav-links .next::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  left: 5px;
  top: 9px;
  transform: rotate(45deg);
  transition: all .3s ease;
}

.pagenavi .nav-links .next::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  left: 11px;
  top: 9px;
  transform: rotate(45deg);
  transition: all .3s ease;
}

.pagenavi .nav-links .prev::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  right: 5px;
  top: 9px;
  transform: rotate(225deg);
  transition: all .3s ease;
}

.pagenavi .nav-links .prev::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  right: 11px;
  top: 9px;
  transform: rotate(225deg);
  transition: all .3s ease;
}

.pagenavi .nav-links .current {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 28px;
  color: #707070;
  background: transparent;
  width: 28px;
  height: 28px;
  margin: 0 5px;
  border-radius: 50%;
  border: 1px solid #707070;
}

.pagenavi .nav-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #ffffff;
  background: #707070;
  width: 28px;
  height: 28px;
  margin: 0 5px;
  border-radius: 50%;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid transparent;
}

.pagenavi .nav-links a:hover {
  background: transparent;
  color: #707070;
  border-color: #707070;
}

@media only screen and (max-width: 768px) {
  .pagenavi {
    margin: 30px auto 0;
  }
  .pagenavi .pagenum {
    font-size: 12px;
    margin-right: 4px;
    border-radius: 20px;
    width: 55px;
    height: 28px;
    line-height: 26px;
  }
  .pagenavi .nav-links .next::before {
    content: '';
    width: 7px;
    height: 7px;
    left: 6px;
  }
  .pagenavi .nav-links .next::after {
    content: '';
    width: 7px;
    height: 7px;
    left: 11px;
  }
  .pagenavi .nav-links .next:hover::before, .pagenavi .nav-links .next:hover::after {
    border-color: #707070;
  }
  .pagenavi .nav-links .prev::before {
    content: '';
    width: 7px;
    height: 7px;
    left: 8px;
  }
  .pagenavi .nav-links .prev::after {
    content: '';
    width: 7px;
    height: 7px;
    left: 13px;
  }
  .pagenavi .nav-links .current {
    font-size: 12px;
  }
  .pagenavi .nav-links a {
    font-size: 12px;
  }
}

.art-link-wrap {
  margin: 60px auto 0;
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-link-wrap .prev-link,
.art-link-wrap .next-link {
  width: 40%;
}

.art-link-wrap .prev-link a,
.art-link-wrap .next-link a {
  display: block;
  text-decoration: none;
  color: #313131;
  position: relative;
  transition: all .3s ease;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  width: 100%;
  text-overflow: ellipsis;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}

.art-link-wrap .prev-link a {
  padding: 0 10px 0 22px;
}

.art-link-wrap .prev-link a::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  position: absolute;
  left: 2px;
  top: 11px;
  transform: rotate(225deg);
  transition: all .3s ease;
}

.art-link-wrap .prev-link a::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  position: absolute;
  left: 7px;
  top: 11px;
  transform: rotate(225deg);
  transition: all .3s ease;
}

.art-link-wrap .prev-link a:hover {
  text-decoration: underline;
}

.art-link-wrap .next-link a {
  padding: 0 22px 0 20px;
  text-align: right;
}

.art-link-wrap .next-link a::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  position: absolute;
  right: 2px;
  top: 11px;
  transform: rotate(45deg);
  transition: all .3s ease;
}

.art-link-wrap .next-link a::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  position: absolute;
  right: 7px;
  top: 11px;
  transform: rotate(45deg);
  transition: all .3s ease;
}

.art-link-wrap .next-link a:hover {
  text-decoration: underline;
}

.art-link-wrap .art-list {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  width: 81px;
  height: 34px;
  line-height: 32px;
  margin: 0 auto;
  color: #ffffff;
  position: relative;
  border-radius: 20px;
  background: #707070;
  border: 1px solid transparent;
  color: #ffffff;
  text-align: center;
  padding: 0 5px;
  transition: all .3s ease;
}

.art-link-wrap .art-list:hover {
  background: #ffffff;
  color: #707070;
  border-color: #707070;
}

@media only screen and (max-width: 768px) {
  .art-link-wrap {
    margin: 35px auto 0;
  }
  .art-link-wrap .prev-link,
  .art-link-wrap .next-link {
    width: 40%;
  }
  .art-link-wrap .prev-link a,
  .art-link-wrap .next-link a {
    font-size: 12px;
  }
  .art-link-wrap .prev-link a {
    padding: 0 10px 0 px;
  }
  .art-link-wrap .prev-link a::before {
    content: '';
    width: 8px;
    height: 8px;
    left: 2px;
    top: 8px;
    transform: rotate(225deg);
  }
  .art-link-wrap .prev-link a::after {
    content: '';
    width: 8px;
    height: 8px;
    left: 7px;
    top: 8px;
    transform: rotate(225deg);
    transition: all .3s ease;
  }
  .art-link-wrap .next-link a {
    padding: 0 18px 0 20px;
  }
  .art-link-wrap .next-link a::before {
    content: '';
    width: 8px;
    height: 8px;
    right: 2px;
    top: 8px;
    transform: rotate(45deg);
  }
  .art-link-wrap .next-link a::after {
    content: '';
    width: 8px;
    height: 8px;
    right: 7px;
    top: 8px;
    transform: rotate(45deg);
  }
  .art-link-wrap .art-list {
    font-size: 12px;
    line-height: 21px;
    width: 64px;
    height: 23px;
  }
}

/* お問い合わせ */
.inq-text {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 25px;
  padding: 25px 20px 20px 27px;
  font-weight: 500;
  border: 1px solid #707070;
  margin: 15px auto 0;
  width: 765px;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  .inq-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 20px;
    padding: 13px 15px 15px 18px;
    margin: 0 auto;
  }
}

.gray-wrap-02 {
  width: 100%;
  margin: 0 auto;
  background: #F4F4F4;
  padding: 100px 0;
  margin: 106px auto 0;
}

@media only screen and (max-width: 768px) {
  .gray-wrap-02 {
    margin-top: 35px;
    padding: 85px 0 70px;
  }
}

.mt-30-pc {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .mt-30-pc {
    margin-top: 0;
  }
}

.grid-01-wrap .grid-01:first-of-type {
  margin-top: 0;
}

.grid-01-wrap .grid-01:nth-of-type(even) {
  flex-direction: row-reverse;
}

.grid-01-wrap .grid-01:nth-of-type(even) .grid-01__item .text {
  left: 0;
  right: -60px;
  padding: 120px 100px 120px 70px;
}

.grid-01-wrap.reverse {
  margin-top: 100px;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .image {
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .image figure {
  width: 100%;
  margin: 0 auto;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .text {
  left: 0;
  right: -60px;
  padding: 120px 110px 120px 70px;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(even) {
  flex-direction: row;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .text {
  padding: 120px 50px 120px 110px;
  background-color: #ffffff;
  height: 465px;
  position: absolute;
  left: -60px;
  top: 70px;
  right: unset;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .image {
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .image figure {
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .grid-01-wrap .grid-01:nth-of-type(even) .grid-01__item .text {
    left: 0;
    right: -90px;
    padding: 120px 120px 120px 40px;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .text {
    left: 0;
    right: -90px;
    padding: 90px 120px 120px 40px;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .text .btn-cmn-01 {
    margin-top: 20px;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .text {
    padding: 90px 30px 120px 110px;
    left: -80px;
  }
}

@media only screen and (max-width: 768px) {
  .grid-01-wrap .grid-01:nth-of-type(even) {
    flex-direction: column-reverse;
    height: auto;
    width: 100%;
  }
  .grid-01-wrap .grid-01:nth-of-type(even) .grid-01__item .text {
    left: unset;
    right: unset;
    padding: 65px 20px 20px;
  }
  .grid-01-wrap .grid-01:nth-of-type(even) .grid-01__item .image {
    position: static;
    left: unset;
    top: unset;
    height: 100%;
  }
  .grid-01-wrap.reverse .grid-01 {
    height: auto;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(odd), .grid-01-wrap.reverse .grid-01:nth-of-type(even) {
    flex-direction: column-reverse;
    height: auto;
    width: 100%;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .text, .grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .text {
    position: static;
    top: unset;
    left: unset;
    right: unset;
    padding: 65px 20px 20px;
    width: 100%;
    height: auto;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .image, .grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .image {
    position: static;
    top: unset;
    left: unset;
    right: unset;
    height: auto;
  }
  .grid-01-wrap.reverse .grid-01:nth-of-type(odd) .grid-01__item .image .btn-cmn-01, .grid-01-wrap.reverse .grid-01:nth-of-type(even) .grid-01__item .image .btn-cmn-01 {
    margin-top: 30px;
  }
}

.grid-01 {
  -js-display: flex;
  display: flex;
  justify-content: center;
  position: relative;
  height: 536px;
  width: 100%;
  margin-top: 100px;
}

.grid-01__item {
  position: relative;
  width: 50%;
}

.grid-01__item .image {
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.grid-01__item .image figure {
  width: 100%;
  margin: 0 auto;
}

.grid-01__item .text {
  padding: 120px 50px 120px 110px;
  background-color: #ffffff;
  height: 465px;
  position: absolute;
  left: -60px;
  top: 70px;
}

.grid-01__item .text .ttl-cmn-04 span {
  color: #EB8B38;
}

.grid-01__item .text::after {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 158px;
  max-width: 100%;
  height: 155px;
  background: url(./img/index/img_tree.png) no-repeat center top/contain;
  z-index: 1;
}

.grid-01__item .text .btn-cmn-01 {
  margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
  .grid-01__item .text {
    padding: 120px 30px 120px 110px;
    left: -80px;
  }
}

@media only screen and (max-width: 768px) {
  .grid-01 {
    flex-direction: column-reverse;
    position: relative;
    height: auto;
    width: 100%;
    margin-top: 100px;
  }
  .grid-01__item {
    position: relative;
    width: 100%;
  }
  .grid-01__item .image {
    position: static;
    left: unset;
    top: unset;
    height: auto;
  }
  .grid-01__item .text {
    padding: 65px 20px 20px;
    background-color: #ffffff;
    height: auto;
    position: static;
    left: unset;
    top: unset;
  }
  .grid-01__item .text::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 105px;
    height: 103px;
    z-index: 1;
  }
  .grid-01__item .text .ttl-cmn-04 {
    text-align: center;
  }
}

.rv-br {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .rv-br-01 {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .rv-br-01 {
    display: none;
  }
}

@media only screen and (max-width: 374px) {
  .rv-br-02 {
    display: none;
  }
}

.grid-cmn.renovation-grid {
  margin: 10px -7px 0;
}

.grid-cmn.renovation-grid .col {
  padding: 0 7px;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .grid-cmn.renovation-grid {
    margin: 10px -4px 0;
  }
  .grid-cmn.renovation-grid .col {
    padding: 0 4px;
    margin-top: 25px;
  }
  .grid-cmn.renovation-grid .col figure figcaption {
    font-size: 12px;
    line-height: 18px;
  }
}

.bottom-link {
  margin: 110px -6px 0;
  -js-display: flex;
  display: flex;
  justify-content: center;
}

.bottom-link__item {
  width: 25%;
  border: 1px solid transparent;
  height: 76px;
  transition: all .3s ease;
  position: relative;
  color: #ffffff;
  margin: 0 6px;
  background-color: #EB8B38;
  transition: all .3s ease;
}

.bottom-link__item:hover {
  background-color: #ffffff;
  border: 1px solid #EB8B38;
}

.bottom-link__item:hover .bottom-link__link {
  color: #EB8B38;
}

.bottom-link__link {
  text-decoration: none;
  color: #ffffff;
  line-height: 76px;
  display: block;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
  transition: all .3s ease;
}

@media only screen and (max-width: 768px) {
  .bottom-link {
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .bottom-link__item {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    border: none;
    border-bottom: 1px solid #ffffff;
    height: 53px;
  }
  .bottom-link__item:hover {
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #EB8B38;
  }
  .bottom-link__item:hover .bottom-link__link {
    color: #EB8B38;
  }
  .bottom-link__item:hover::after {
    border-color: #EB8B38;
  }
  .bottom-link__item::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    position: absolute;
    right: 20px;
    top: calc(50% - 5px);
    transform: rotate(45deg);
  }
  .bottom-link__link {
    line-height: 53px;
    text-align: left;
    padding-left: 15px;
  }
}

/* 職人の作る家 */
.building-wrap {
  width: 100%;
  margin: 35px auto 0;
  position: relative;
}

.building-wrap .building__inner {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.building-wrap .building__inner .building-content {
  width: calc(100% - (100% - 1060px)/2);
  position: relative;
  margin-left: auto;
  height: 943px;
  background-color: #ffffff;
}

.building-wrap .building__inner .text {
  position: absolute;
  left: 0;
  top: 65px;
  width: 129px;
  max-width: 100%;
  margin: 0 95px;
  height: 655px;
}

.building-wrap .building__inner .text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}

.building-wrap .building__inner .text p {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-align: left;
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
}

.building-wrap .building__inner .text p::before {
  content: "";
  position: absolute;
  top: 0;
  height: 4px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EB8B38;
}

.building-wrap .building__inner .text p.line {
  line-height: 129px;
}

.building-wrap .building__inner .image {
  width: calc(100% - 129px - 95px - 95px);
  height: 424px;
  max-width: 100%;
  position: absolute;
  right: 0;
  bottom: 125px;
}

.building-wrap .building__inner .image figure {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.building-wrap .building__inner .image figure img {
  width: 100%;
  height: 100%;
}

.building-wrap .building__inner .description {
  position: absolute;
  margin: 130px 0 0 319px;
  width: calc(100% - 129px - 95px - 95px);
  text-align: left;
}

.building-wrap .building__inner .description .lead01 {
  text-align: left;
  width: 650px;
  margin-right: auto;
  margin-left: 0;
}

.building-wrap .building__inner:nth-of-type(even) .building-content {
  margin-left: 0;
  margin-right: auto;
  background: transparent;
}

.building-wrap .building__inner:nth-of-type(even) .building-content::after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  background-color: #FFF8F2;
  z-index: -1;
}

.building-wrap .building__inner:nth-of-type(even) .text {
  right: 0;
  left: auto;
}

.building-wrap .building__inner:nth-of-type(even) .image {
  margin: 0 auto 0 0;
  position: absolute;
  right: auto;
  left: 0;
}

.building-wrap .building__inner:nth-of-type(even) .description {
  margin: 130px 319px 0 0;
}

.building-wrap .building__inner:nth-of-type(even) .description .lead01 {
  margin-right: 0;
  margin-left: auto;
}

.building-wrap .building__inner:first-of-type .text:after {
  width: 190px;
  height: 186px;
  background: url(./img/under/img_building01-1.png) no-repeat center top/contain;
}

.building-wrap .building__inner:nth-of-type(2) .text:after {
  width: 177px;
  height: 130px;
  bottom: 50px;
  background: url(./img/under/img_building02-1.png) no-repeat center top/contain;
}

.building-wrap .building__inner:nth-of-type(3) .text:after {
  width: 160px;
  height: 178px;
  bottom: 0;
  background: url(./img/under/img_building03-1.png) no-repeat center top/contain;
}

.building-wrap .building__inner:nth-of-type(4) .text:after {
  width: 158px;
  height: 155px;
  bottom: 0;
  background: url(./img/under/img_building04-1.png) no-repeat center top/contain;
}

@media only screen and (max-width: 1024px) {
  .building-wrap .building__inner .building-content {
    width: 100%;
  }
  .building-wrap .building__inner .text {
    margin: 0 65px;
  }
  .building-wrap .building__inner .description {
    margin: 130px 0 0 259px;
    width: calc(100% - 259px);
  }
  .building-wrap .building__inner .description .lead01 {
    width: 450px;
  }
  .building-wrap .building__inner .image {
    width: calc(100% - 259px);
  }
  .building-wrap .building__inner:nth-of-type(even) .text {
    margin: 0 65px;
    right: 0;
    left: auto;
  }
  .building-wrap .building__inner:nth-of-type(even) .description {
    margin: 130px 259px 0 0;
    width: calc(100% - 259px);
  }
  .building-wrap .building__inner:nth-of-type(even) .description .lead01 {
    width: 480px;
    padding-right: 30px;
  }
  .building-wrap .building__inner:nth-of-type(even) .image {
    width: calc(100% - 259px);
  }
}

@media only screen and (max-width: 768px) {
  .building-wrap {
    margin-top: 0;
  }
  .building-wrap .building__inner {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 20px;
  }
  .building-wrap .building__inner:nth-of-type(even) .text {
    position: static;
    left: unset;
    top: unset;
    width: 100%;
    margin: 0;
    height: auto;
  }
  .building-wrap .building__inner:nth-of-type(even) .image {
    position: static;
    width: 100%;
    margin: 30px auto 0;
    height: 60.8vw;
  }
  .building-wrap .building__inner:nth-of-type(even) .image figure {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .building-wrap .building__inner:nth-of-type(even) .description {
    position: static;
    top: unset;
    left: unset;
    transform: translateX(0);
    margin: 30px auto 0;
    width: 100%;
  }
  .building-wrap .building__inner:nth-of-type(even) .description .lead01 {
    width: 100%;
    padding-right: 0;
  }
  .building-wrap .building__inner .building-content {
    width: 100%;
    position: relative;
    right: unset;
    height: auto;
    padding: 120px 0 0;
  }
  .building-wrap .building__inner .building-content::after {
    margin: 0 calc(50% - 50vw);
    top: 0;
  }
  .building-wrap .building__inner .text {
    position: static;
    left: unset;
    top: unset;
    width: 100%;
    margin: 0;
    height: auto;
  }
  .building-wrap .building__inner .text p {
    font-size: 18px;
    line-height: 30px;
    writing-mode: horizontal-tb;
    text-align: left;
    padding: 0 0 0 10px;
  }
  .building-wrap .building__inner .text p::before {
    width: 4px;
    height: 3.0em;
    top: 3px;
    left: 0;
  }
  .building-wrap .building__inner .text p.line {
    line-height: 30px;
  }
  .building-wrap .building__inner .text p.line::before {
    width: 4px;
    height: 1.5em;
    top: 3px;
    left: 0;
  }
  .building-wrap .building__inner .image {
    position: static;
    width: 100%;
    margin: 30px auto 0;
    height: 60.8vw;
  }
  .building-wrap .building__inner .image figure {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .building-wrap .building__inner .description {
    position: static;
    top: unset;
    left: unset;
    transform: translateX(0);
    margin: 30px auto 0;
    width: 100%;
  }
  .building-wrap .building__inner .description .lead01 {
    width: 100%;
  }
  .building-wrap .building__inner:first-of-type .text:after {
    width: 150px;
    height: 120px;
    top: 0;
    bottom: unset;
  }
  .building-wrap .building__inner:nth-of-type(2) .text {
    margin-top: 40px;
  }
  .building-wrap .building__inner:nth-of-type(2) .text:after {
    width: 115px;
    height: 85px;
    top: 40px;
    bottom: unset;
  }
  .building-wrap .building__inner:nth-of-type(3) .text {
    margin-top: 50px;
  }
  .building-wrap .building__inner:nth-of-type(3) .text:after {
    width: 91px;
    height: 101px;
    top: 40px;
    bottom: unset;
  }
  .building-wrap .building__inner:nth-of-type(4) .text {
    margin-top: 20px;
  }
  .building-wrap .building__inner:nth-of-type(4) .text:after {
    width: 87px;
    height: 87px;
    top: 30px;
    bottom: unset;
  }
}

.building-link {
  margin: 77px auto 0;
  border-radius: 20px;
  border: 5px solid #EB8B38;
  padding: 40px 60px;
}

.building-link h3 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #EB8B38;
  text-align: center;
  font-family: HuiFont;
}

.building-link p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  color: #313131;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
}

.building-link .al-center {
  margin-top: 30px;
}

.building-link .grid-cmn {
  align-items: flex-end;
}

.building-link .grid-cmn .col {
  margin-top: 0;
}

.building-link .grid-cmn .col.image figure img {
  border-radius: 15px;
  vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
  .building-link {
    margin-top: 45px;
    padding: 35px 25px;
  }
  .building-link h3 {
    text-align: center;
  }
  .building-link .al-center {
    margin-top: 0;
  }
  .building-link .al-center .btn-cmn-01 {
    margin-top: 30px;
  }
  .building-link .grid-cmn .col.image {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .building-link {
    padding: 15px 30px;
  }
  .building-link h3 {
    font-size: 20px;
    line-height: 38px;
  }
  .building-link p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 5px;
  }
  .building-link .al-center .btn-cmn-01 {
    margin-top: 18px;
  }
  .building-link .grid-cmn .col.image {
    margin-top: 15px;
  }
  .building-link .grid-cmn .col.image figure {
    margin-bottom: 0;
  }
}

/* 物件情報一覧 */
.hero-realestate {
  position: relative;
  height: 491px;
  width: 100%;
  margin: 80px auto 0;
}

.hero-realestate figure {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.hero-realestate__inner {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 870px;
  max-width: 100%;
  padding: 0 20px;
}

.hero-realestate__inner figure {
  margin: 0 auto;
  width: 254px;
  height: 132px;
  transform: translateX(50px);
}

.hero-realestate__inner figure img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.hero-realestate__inner .ttl-cmn-01 {
  margin-top: 40px;
  padding-bottom: 0;
  color: #ffffff;
}

.hero-realestate__inner .ttl-cmn-01 span {
  color: #EB8B38;
}

.hero-realestate__inner .ttl-cmn-01::after {
  display: none;
}

.hero-realestate__inner ul {
  -js-display: flex;
  display: flex;
  margin: 40px -9px 0;
  justify-content: space-between;
}

.hero-realestate__inner ul li {
  width: 33.3333%;
  margin: 0 9px;
  background: #ffffff;
  border: 3px solid #EB8B38;
  border-radius: 10px;
  text-align: center;
}

.hero-realestate__inner ul li a {
  display: block;
  text-decoration: none;
  height: 100%;
  color: #313131;
  letter-spacing: 0.1em;
  font-size: 20px;
  position: relative;
  padding: 60px 0 17px;
  font-family: HuiFont;
}

.hero-realestate__inner ul li a span {
  font-size: 22px;
  color: #EB8B38;
}

.hero-realestate__inner ul li a::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-realestate__inner ul li a:hover {
  opacity: .75;
}

.hero-realestate__inner ul li:first-of-type a::before {
  width: 36px;
  height: 36px;
  background: url(./img/under/ico_secondhand01.png) no-repeat center top/contain;
}

.hero-realestate__inner ul li:nth-of-type(2) a::before {
  width: 30px;
  height: 36px;
  background: url(./img/under/ico_rental01.png) no-repeat center top/contain;
}

.hero-realestate__inner ul li:nth-of-type(3) a::before {
  width: 40px;
  height: 37px;
  background: url(./img/under/ico_land01.png) no-repeat center top/contain;
}

@media only screen and (max-width: 768px) {
  .hero-realestate {
    position: relative;
    height: 441px;
    margin: 48px auto 0;
  }
  .hero-realestate__inner figure {
    width: 211px;
    height: 110px;
    transform: translateX(40px);
  }
  .hero-realestate__inner .ttl-cmn-01 {
    font-size: 25px;
    line-height: 42px;
  }
  .hero-realestate__inner .ttl-cmn-01 span {
    color: #EB8B38;
    font-size: 28px;
  }
  .hero-realestate__inner ul {
    margin: 40px -5px 0;
  }
  .hero-realestate__inner ul li {
    margin: 0 5px;
  }
  .hero-realestate__inner ul li a {
    font-size: 16px;
    padding: 55px 0 17px;
    line-height: 22px;
  }
  .hero-realestate__inner ul li a span {
    font-size: 18px;
    display: block;
  }
  .hero-realestate__inner ul li a::before {
    top: 17px;
  }
  .hero-realestate__inner ul li:first-of-type a::before {
    width: 26px;
    height: 26px;
  }
  .hero-realestate__inner ul li:nth-of-type(2) a::before {
    width: 25px;
    height: 29px;
  }
  .hero-realestate__inner ul li:nth-of-type(3) a::before {
    width: 32px;
    height: 29px;
  }
}

.realestate-list {
  margin: 56px auto 0;
  width: 100%;
}

.realestate-list-heading {
  font-size: 27px;
  letter-spacing: 0.1em;
  line-height: 55px;
  background: #EB8B38;
  border-radius: 28px;
  width: 100%;
  color: #ffffff;
  font-weight: bold;
  padding: 0 25px;
}

.realestate-list .grid-cmn {
  margin: 10px -21px 0;
}

.realestate-list .grid-cmn .col {
  padding: 0 21px;
  margin-top: 25px;
}

.realestate-list .grid-cmn .col a {
  display: block;
  text-decoration: none;
  color: "M PLUS Rounded 1c", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  height: 100%;
  margin: 0 auto;
  transition: all .3s ease;
}

.realestate-list .grid-cmn .col a:hover .fig-ratio-re img {
  transform: scale(1.06);
}

.realestate-list .grid-cmn .col a:hover .text .title {
  text-decoration: underline;
}

.realestate-list .fig-ratio-re {
  padding-top: 66.6666%;
  margin: 0 auto;
  width: 100%;
  border-radius: 10px;
  transition: all .3s ease;
}

.realestate-list .fig-ratio-re img {
  transition: all .3s ease;
}

.realestate-list .text {
  transition: all .3s ease;
}

.realestate-list .text .title {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 40px;
  font-weight: 500;
}

.realestate-list .text .price {
  color: #EB8B38;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 21px;
  font-weight: 500;
}

.realestate-list .text .info {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 21px;
  font-weight: 500;
  color: #707070;
}

.realestate-list .link-cmn-01 {
  text-align: right;
  margin-top: 30px;
}

.realestate-list .al-center {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .realestate-list {
    margin: 23px auto 0;
  }
  .realestate-list-heading {
    font-size: 18px;
    line-height: 34px;
    border-radius: 17px;
    padding: 0 17px;
  }
  .realestate-list .grid-cmn {
    margin: 0 -9px;
  }
  .realestate-list .grid-cmn .col {
    padding: 0 9px;
  }
  .realestate-list .fig-ratio-re {
    padding-top: 100%;
  }
  .realestate-list .text .price {
    font-size: 14px;
  }
  .realestate-list .link-cmn-01 {
    margin-top: 10px;
  }
}

.realestate-flow {
  background: #ffffff;
  border: 3px solid #EB8B38;
  border-radius: 10px;
  position: relative;
  transition: all .3s ease;
}

.realestate-flow:hover {
  opacity: .75;
}

.realestate-flow a {
  display: block;
  text-decoration: none;
  height: 100%;
  color: #313131;
  letter-spacing: 0.1em;
  font-size: 20px;
  border-right: 58px solid #EB8B38;
  position: relative;
  padding: 45px 0 40px 230px;
  transition: all .3s ease;
  cursor: pointer;
}

.realestate-flow a span {
  width: 330px;
}

.realestate-flow a span:first-of-type {
  display: block;
  color: #EB8B38;
  font-size: 27px;
  letter-spacing: 0.1em;
  line-height: 44px;
  font-weight: bold;
  border-bottom: 3px solid #EB8B38;
  padding-bottom: 5px;
  text-align: center;
  position: relative;
  font-family: HuiFont;
}

.realestate-flow a span:first-of-type::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -50%;
  background: url(./img/under/img_realestate02.png) no-repeat center top/contain;
  width: 140px;
  height: 144px;
}

.realestate-flow a span:first-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  right: -110%;
  background: url(./img/under/img_realestate03.png) no-repeat center top/contain;
  width: 317px;
  height: 123px;
}

.realestate-flow a span:nth-of-type(2) {
  display: block;
  color: #707070;
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 44px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.realestate-flow a::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  top: 50%;
  right: -42px;
  border-radius: 50%;
  transition: all .3s ease;
}

.realestate-flow a::after {
  content: '';
  position: absolute;
  top: calc(50% - 6px);
  right: -34px;
  display: inline-block;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #EB8B38;
  transition: all .3s ease;
}

.realestate-flow a:hover span {
  opacity: .75;
}

.realestate-flow span {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .realestate-flow a {
    border-right: none;
    border-bottom: 29px solid #EB8B38;
    padding: 100px 10px 10px;
    cursor: pointer;
  }
  .realestate-flow a span {
    width: 100%;
  }
  .realestate-flow a span:first-of-type {
    font-size: 20px;
    width: 260px;
    margin: 0 auto;
    padding-bottom: 0px;
  }
  .realestate-flow a span:first-of-type::before {
    content: "";
    position: absolute;
    top: -130px;
    left: -35px;
    width: 118px;
    height: 121px;
  }
  .realestate-flow a span:first-of-type::after {
    content: "";
    position: absolute;
    top: -85px;
    right: unset;
    left: 35%;
    width: 197px;
    height: 77px;
  }
  .realestate-flow a span:nth-of-type(2) {
    font-size: 16px;
    margin-top: 0;
  }
  .realestate-flow a::before {
    display: none;
  }
  .realestate-flow a::after {
    display: none;
  }
  .realestate-flow a:hover span {
    opacity: .75;
  }
  .realestate-flow > span {
    display: inline-block;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 14px;
    line-height: 29px;
    letter-spacing: 0.1em;
    padding-right: 20px;
    cursor: pointer;
  }
  .realestate-flow > span::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    border-radius: 50%;
    transition: all .3s ease;
  }
  .realestate-flow > span::after {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    right: 4px;
    display: inline-block;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #EB8B38;
    transition: all .3s ease;
    z-index: 1;
  }
}

@media only screen and (max-width: 374px) {
  .realestate-flow a {
    padding-top: 70px;
  }
  .realestate-flow a span:first-of-type::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 90px;
    height: 93px;
  }
  .realestate-flow a span:first-of-type::after {
    content: "";
    position: absolute;
    top: -60px;
    right: unset;
    left: 42%;
    width: 150px;
    height: 59px;
  }
}

.realestate-form {
  margin: 90px auto 0;
  padding-top: 80px;
  position: relative;
}

.realestate-form::before {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 1px;
  background-color: #EB8B38;
}

@media only screen and (max-width: 768px) {
  .realestate-form {
    margin-top: 40px;
    padding-top: 40px;
  }
  .realestate-form .lead01 {
    text-align: center;
    margin-top: 20px;
  }
  .realestate-form .form-table {
    margin-top: 0;
  }
}

.realestate-detail-wrap {
  margin-top: 156px;
}

.realestate-detail-wrap .table-cmn-01 {
  width: 900px;
  max-width: 100%;
  margin: 85px 0 30px;
}

.realestate-detail-wrap .table-cmn-01 th {
  width: 163px;
  background-color: #FFEDDD;
  padding: 12px 18px 12px 23px;
}

.realestate-detail-wrap .table-cmn-01 td {
  padding: 12px 70px 12px 47px;
}

@media only screen and (max-width: 768px) {
  .realestate-detail-wrap {
    margin-top: 48px;
  }
  .realestate-detail-wrap .table-cmn-01 {
    margin: 30px 0;
  }
  .realestate-detail-wrap .table-cmn-01 th {
    width: 84px;
    padding: 12px 18px 12px 10px;
  }
  .realestate-detail-wrap .table-cmn-01 td {
    padding: 12px 10px 12px 24px;
  }
}

.realestate-detail {
  -js-display: flex;
  display: flex;
}

.realestate-detail-left {
  width: calc(100% - 267px - 60px);
  margin-right: 60px;
}

.realestate-detail-left .ttl-cmn-04 {
  font-weight: 500;
  text-align: center;
}

.realestate-detail-left .txt-cmn {
  margin-top: 30px;
}

.realestate-detail-right {
  width: 267px;
  max-width: 100%;
}

.realestate-detail-right .realestate-summary-item {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D0D0D0;
}

.realestate-detail-right .realestate-summary h5 {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 2px solid #EB8B38;
}

.realestate-detail-right .realestate-summary dl {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}

.realestate-detail-right .realestate-summary dl dt {
  width: 80px;
  font-weight: 500;
  font-size: 16px;
  color: #EB8B38;
}

.realestate-detail-right .realestate-summary dl dd {
  width: calc(100% - 80px);
  font-weight: 500;
  font-size: 16px;
}

.realestate-detail-right .realestate-summary .item {
  font-weight: 500;
  font-size: 16px;
  color: #EB8B38;
}

.realestate-detail-right .realestate-summary .facility-list {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  margin: 10px -3px 0;
}

.realestate-detail-right .realestate-summary .facility-list figure {
  width: 20%;
  margin: 6px auto 0;
  padding: 0 3px;
}

.realestate-detail-right .realestate-summary p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 8px;
  font-weight: 500;
}

.realestate-detail .closing {
  font-size: 18px;
  margin-top: 30px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .realestate-detail {
    display: block;
  }
  .realestate-detail-left, .realestate-detail-right {
    width: 100%;
    margin: 0 auto;
  }
  .realestate-detail-left .ttl-cmn-04 {
    text-align: left;
  }
  .realestate-detail-left .txt-cmn {
    margin-top: 15px;
  }
  .realestate-detail-right {
    margin: 30px auto 0;
  }
  .realestate-detail-right .realestate-summary {
    margin-top: 100px;
  }
  .realestate-detail-right .realestate-summary .facility-list {
    max-width: 375px;
  }
}

.realestate-slide .slick-prev, .realestate-slide .slick-next {
  width: 35px;
  height: 35px;
  background: #EB8B38;
  z-index: 1;
  transition: all .3s ease;
  opacity: 1;
}

.realestate-slide .slick-prev::before, .realestate-slide .slick-next::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  opacity: 1;
  transition: all .3s ease;
}

.realestate-slide .slick-prev:hover, .realestate-slide .slick-prev:focus, .realestate-slide .slick-next:hover, .realestate-slide .slick-next:focus {
  background: #EB8B38;
  opacity: 1;
}

.realestate-slide .slick-prev:hover:before, .realestate-slide .slick-prev:focus:before, .realestate-slide .slick-next:hover:before, .realestate-slide .slick-next:focus:before {
  border-color: #ffffff;
  opacity: 1;
}

.realestate-slide .slick-prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.realestate-slide .slick-prev::before {
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  left: 13px;
}

.realestate-slide .slick-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.realestate-slide .slick-next::before {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  right: 13px;
}

@media only screen and (max-width: 768px) {
  .realestate-slide {
    width: 100vw;
    margin: 50px calc(50% - 50vw) 0;
  }
  .realestate-slide .fig-ratio-02 {
    padding-top: 66.6666%;
  }
  .realestate-slide .slick-prev, .realestate-slide .slick-next {
    width: 25px;
    height: 25px;
  }
  .realestate-slide .slick-prev::before, .realestate-slide .slick-next::before {
    width: 9px;
    height: 9px;
  }
  .realestate-slide .slick-prev {
    left: 0;
  }
  .realestate-slide .slick-prev::before {
    left: 9px;
  }
  .realestate-slide .slick-next {
    right: 0;
  }
  .realestate-slide .slick-next::before {
    right: 9px;
  }
}

.realestate-thumbnail {
  margin-top: 27px;
}

.realestate-thumbnail .slick-track {
  transform: unset !important;
  -js-display: flex !important;
  display: flex !important;
  flex-flow: row wrap;
  margin: 0 -5px;
  width: auto !important;
}

.realestate-thumbnail .slick-slide {
  display: block !important;
  float: none !important;
  flex: 0 0 16.6666%;
  padding: 5px 5px 0;
  cursor: pointer;
}

.introduction-wrap {
  position: relative;
}

.readmore-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #EB8B38;
  cursor: pointer;
  z-index: 10;
  -js-display: flex;
  display: flex;
  justify-content: center;
}

.readmore-btn span {
  color: #EB8B38;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  padding-left: 20px;
  position: relative;
}

.readmore-btn span::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1px #EB8B38;
  border-right: solid 1px #EB8B38;
  transform: rotate(135deg);
  left: 0;
  top: 7px;
  transition: all .5s ease;
}

.readmore-text {
  position: relative;
  overflow: hidden;
  height: 14.5em;
  transition: all .5s ease;
}

.readmore-check {
  display: none;
}

.readmore-check:checked + .readmore-btn span::before {
  transform: rotate(-45deg);
  top: 11px;
}

.readmore-check:checked ~ .readmore-text {
  height: auto;
}

.gmap {
  margin: 15px auto 25px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 38.31%;
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.realestate-sns {
  -js-display: flex;
  display: flex;
  margin: 30px auto 0;
}

.realestate-sns a {
  display: inline-block;
  height: 38px;
  text-decoration: none;
  padding: 0 30px 0 38px;
}

.realestate-sns a span {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  line-height: 38px;
}

.realestate-sns a span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -17px;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
}

.realestate-sns a:hover {
  opacity: .75;
}

.realestate-sns .facebook-btn {
  background-color: #1877F2;
  margin-right: 16px;
}

.realestate-sns .facebook-btn span::before {
  background: url(./img/ico_fb.png) no-repeat center top/contain;
}

.realestate-sns .instagram-btn {
  background-color: #CF2E92;
  margin-right: 16px;
}

.realestate-sns .instagram-btn span::before {
  background: url(./img/ico_ig.png) no-repeat center top/contain;
}

.realestate-sns .twitter-btn {
  background-color: #67BAE6;
}

.realestate-sns .twitter-btn span::before {
  background: url(./img/ico_tw.png) no-repeat center top/contain;
}

@media only screen and (max-width: 768px) {
  .realestate-sns {
    -js-display: flex;
    display: flex;
    margin: 30px auto 0;
  }
  .realestate-sns a {
    display: inline-block;
    height: 24px;
    text-decoration: none;
    padding: 0 15px 0 26px;
  }
  .realestate-sns a span {
    font-size: 12px;
    line-height: 24px;
  }
  .realestate-sns a span::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -10px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
  }
  .realestate-sns .facebook-btn {
    background-color: #1877F2;
    margin-right: 4px;
  }
  .realestate-sns .facebook-btn span::before {
    background: url(./img/ico_fb.png) no-repeat center top/contain;
  }
  .realestate-sns .instagram-btn {
    background-color: #CF2E92;
    margin-right: 4px;
  }
  .realestate-sns .instagram-btn span::before {
    background: url(./img/ico_ig.png) no-repeat center top/contain;
  }
  .realestate-sns .twitter-btn {
    background-color: #67BAE6;
  }
  .realestate-sns .twitter-btn span::before {
    background: url(./img/ico_tw.png) no-repeat center top/contain;
  }
}

/* 建築事例 */
.achievement-list-wrap {
  margin: 90px auto 0;
}

@media only screen and (max-width: 768px) {
  .achievement-list-wrap {
    margin: 30px auto 0;
  }
}

.achievementcat-list {
  -js-display: flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.achievementcat-list li {
  margin-right: 75px;
}

.achievementcat-list li a {
  display: block;
  color: #313131;
  text-decoration: none;
}

.achievementcat-list li a:hover {
  opacity: .75;
}

@media only screen and (max-width: 1024px) {
  .achievementcat-list {
    width: 1024px;
    max-width: 100%;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 768px) {
  .achievementcat-list {
    width: 768px;
  }
  .achievementcat-list li {
    margin-right: 40px;
  }
  .achievementcat-list li a {
    font-size: 13px;
  }
}

.feature-list {
  width: 100%;
  margin: 0 auto;
}

.feature-list__link {
  text-decoration: none;
  -js-display: flex;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: 60px auto 0;
}

.feature-list__link:nth-of-type(even) .image {
  margin: 0 0 0 auto;
}

.feature-list__link:nth-of-type(even) .text {
  width: 43%;
  background: #ffffff;
  position: absolute;
  right: unset;
  left: 0;
  padding: 50px 50px 50px 90px;
}

.feature-list__link:hover .image figure img {
  transition: all .3s ease;
  transform: scale(1.06);
}

.feature-list .image {
  width: 70%;
  margin: 0 auto 0 0;
}

.feature-list .image figure {
  margin: 0 auto;
}

.feature-list .image figure img {
  height: 100%;
  transition: all .3s ease;
}

.feature-list .text {
  width: 43%;
  background: #ffffff;
  position: absolute;
  right: 0;
  padding: 50px 90px 50px 50px;
}

.feature-list .text .ach-title {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 40px;
  font-family: HuiFont;
}

.feature-list .text .ach-cat {
  color: #9D9D9D;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 40px;
}

.feature-list .text .ach-text {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  color: #313131;
}

@media only screen and (max-width: 1024px) {
  .feature-list {
    width: 100%;
    margin: 0 auto;
  }
  .feature-list__link {
    display: block;
    text-decoration: none;
    margin: 60px auto 0;
  }
  .feature-list__link:nth-of-type(even) .image {
    margin: 0 auto;
  }
  .feature-list__link:nth-of-type(even) .text {
    width: calc(100% - 30px);
    background: #ffffff;
    position: relative;
    right: unset;
    left: unset;
    padding: 25px;
    margin: -50px auto 0;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  }
  .feature-list .image {
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  .feature-list .text {
    width: calc(100% - 30px);
    background: #ffffff;
    position: relative;
    right: unset;
    padding: 25px;
    margin: -50px auto 0;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  }
}

@media only screen and (max-width: 768px) {
  .feature-list__link {
    margin-top: 40px;
  }
  .feature-list .text .ach-title {
    font-size: 20px;
    color: #313131;
  }
  .feature-list .text .ach-cat {
    font-size: 14px;
  }
  .feature-list .text .ach-text {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
  }
}

.fig-ratio-achlist {
  padding-top: 47.5%;
}

.achievement-detail figure {
  margin-bottom: 0;
}

.achievement-detail .fig-cmn img {
  width: auto;
}

.achievement-detail .fig-cmn figcaption {
  width: 900px;
  max-width: 100%;
  margin: 10px auto 0;
}

.achievement-detail .heading {
  width: 900px;
  max-width: 100%;
  margin: 50px auto 0;
}

.achievement-detail .heading .cat {
  font-size: 16px;
  font-weight: bold;
  color: #9D9D9D;
  letter-spacing: 0.1em;
  line-height: 40px;
}

.achievement-detail-explain {
  margin: 50px auto 0;
  width: 100%;
}

.achievement-detail-explain .explain-text {
  width: 900px;
  max-width: 100%;
}

.achievement-detail .bf-content-wrap {
  margin: 80px auto 0;
  width: 100%;
}

.achievement-detail .bf-content {
  -js-display: flex;
  display: flex;
  margin: 40px -35px 0;
}

.achievement-detail .bf-box {
  width: 50%;
  position: relative;
  margin: 0 35px;
}

.achievement-detail .bf-box.allow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -47px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #EB8B38;
}

.achievement-detail .bf-box::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  color: #ffffff;
  background-color: #707070;
  z-index: 1;
  letter-spacing: 3px;
  font-size: 16px;
  line-height: 1.0;
  font-weight: bold;
  letter-spacing: 0.05;
}

.achievement-detail .bf-box .before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #707070;
  z-index: 1;
  color: #ffffff;
}

.achievement-detail .bf-box .after {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #EB8B38;
  z-index: 1;
  color: #ffffff;
}

.achievement-detail .image-list {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  margin: 30px -10px 0;
}

.achievement-detail .image-list.js-list-01 li {
  width: 50%;
}

.achievement-detail .image-list.js-list-02 li {
  width: 25%;
}

.achievement-detail .image-list li {
  display: block;
  padding: 0 10px;
  margin-top: 15px;
  text-align: center;
}

.achievement-detail .image-list li img {
  height: auto;
  max-height: 400px;
  object-fit: contain;
  width: auto;
  margin: 0 auto;
}

.achievement-detail .button {
  max-width: 200px;
  margin: 30px auto 0;
  text-align: center;
  border: 1px solid #EB8B38;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #EB8B38;
  cursor: pointer;
  transition: all .3s ease;
}

.achievement-detail .button--more span {
  background-color: transparent;
  color: #EB8B38;
  position: relative;
  padding-left: 1.3em;
}

.achievement-detail .button--more span:before {
  content: "+";
  position: absolute;
  top: -9px;
  left: 0;
  color: #EB8B38;
  font-size: 18px;
}

.achievement-detail .button--more:hover {
  background-color: #EB8B38;
}

.achievement-detail .button--more:hover span {
  color: #ffffff;
}

.achievement-detail .button--more:hover span:before {
  color: #ffffff;
}

.achievement-detail .button--close {
  background-color: #EB8B38;
}

.achievement-detail .button--close span {
  color: #ffffff;
  position: relative;
  padding-left: 1.5em;
}

.achievement-detail .button--close span:before {
  content: "ー";
  position: absolute;
  top: -4px;
  left: 0;
  color: #ffffff;
  font-size: 14px;
}

.achievement-detail .button--close:hover {
  background-color: transparent;
}

.achievement-detail .button--close:hover span {
  color: #EB8B38;
}

.achievement-detail .button--close:hover span:before {
  color: #EB8B38;
}

@media only screen and (max-width: 768px) {
  .achievement-detail .heading .cat {
    font-size: 14px;
  }
  .achievement-detail-explain {
    margin: 20px auto 0;
  }
  .achievement-detail .bf-content-wrap {
    margin: 30px auto 0;
  }
  .achievement-detail .bf-content {
    display: block;
    margin: 30px auto 0;
  }
  .achievement-detail .bf-box {
    width: 100%;
    position: relative;
    margin: 0 auto;
  }
  .achievement-detail .bf-box + .bf-box {
    margin-top: 40px;
  }
  .achievement-detail .bf-box.allow::after {
    content: '';
    position: absolute;
    top: unset;
    bottom: -29px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 25px;
    border-color: #EB8B38 transparent transparent transparent;
  }
  .achievement-detail .bf-box::before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #707070;
    z-index: 1;
    letter-spacing: 3px;
    font-size: 16px;
    line-height: 1.0;
    font-weight: bold;
    letter-spacing: 0.05;
  }
  .achievement-detail .bf-box .before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px;
    background-color: #707070;
    z-index: 1;
    color: #ffffff;
    font-size: 14px;
  }
  .achievement-detail .bf-box .after {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px;
    background-color: #EB8B38;
    z-index: 1;
    color: #ffffff;
    font-size: 14px;
  }
  .achievement-detail .table-cmn-01 th {
    width: 30%;
  }
  .achievement-detail .image-list.js-list-02 li {
    width: 50%;
  }
  .achievement-detail .image-list li img {
    max-height: 300px;
  }
}

/* 基礎、断熱 */
.foundation-wrap {
  margin: 120px auto 0;
}

.foundation-wrap .min-contents {
  margin-top: 70px;
}

.foundation-wrap figure {
  margin-bottom: 0;
}

.foundation-wrap p {
  font-size: 16px;
}

.foundation-wrap .ttl-cmn-03 + p {
  margin-top: 30px;
}

.foundation-wrap .grid-cmn {
  margin-top: 10px;
}

.foundation-wrap .grid-cmn .col {
  margin-top: 18px;
}

.foundation-wrap .grid-cmn .col figure + p {
  font-size: 14px;
}

.foundation-wrap .grid-cmn.ins {
  margin: 40px -50px 0;
}

.foundation-wrap .grid-cmn.ins .col {
  padding: 0 50px;
}

.foundation-wrap .gray-wrap {
  width: 743px;
  max-width: 100%;
  padding: 30px 45px 40px;
  margin-top: 30px;
}

.foundation-wrap .gray-wrap + .grid-cmn {
  margin-top: 40px;
}

.foundation-wrap .caption {
  font-size: 14px;
  margin-top: 10px;
}

.pale-content {
  position: relative;
  margin: 65px auto 0;
  width: 100%;
}

.pale-content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFF8F2;
  z-index: -1;
}

.pale-content-inner {
  width: 930px;
  max-width: 100%;
  padding: 60px 15px 70px;
  margin: 0 auto;
}

.pale-content-inner.lg {
  width: 1090px;
  padding: 22px 15px 100px;
}

.pale-content-inner.lg .grid-cmn {
  margin-top: 35px;
}

@media only screen and (max-width: 768px) {
  .foundation-wrap {
    margin-top: 30px;
  }
  .foundation-wrap .min-contents {
    margin-top: 30px;
  }
  .foundation-wrap p {
    font-size: 15px;
  }
  .foundation-wrap .ttl-cmn-03 + p {
    margin-top: 15px;
  }
  .foundation-wrap .gray-wrap {
    margin-top: 15px;
    padding: 20px 15px;
  }
  .foundation-wrap .gray-wrap + .grid-cmn {
    margin-top: 15px;
  }
  .foundation-wrap .grid-cmn.ins {
    margin: 12px -5px 0;
  }
  .foundation-wrap .grid-cmn.ins .col {
    padding: 0 5px;
  }
  .pale-content {
    margin-top: 30px;
  }
  .pale-content-inner {
    padding: 30px 15px 45px;
  }
  .pale-content-inner.lg {
    padding: 12px 15px 45px;
  }
  .pale-content-inner.lg .grid-cmn {
    margin-top: 20px;
  }
}

h5.orange {
  font-size: 18px;
  color: #EB8B38;
  margin-top: 25px;
}

h5.orange:first-child {
  margin-top: 0;
}

.under-pale {
  margin: 60px auto 0;
  text-align: center;
}

.under-pale p {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
  display: inline;
  background: linear-gradient(transparent 70%, #FFDCBE 0%);
}

@media only screen and (max-width: 768px) {
  .under-pale {
    text-align: left;
    margin-top: 30px;
  }
  .under-pale p {
    font-size: 17px;
  }
}
/*# sourceMappingURL=common.css.map */