/*ヘッダー
-----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10000;
}
.front-header {
  position: relative;
}
.header-logo {
  max-width: 276px;
}
.header-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-b {
  width: 100%;
  text-align: center;
}
.front-header .header-content {
  display: none;
}
.hamburger-wrap {
  display: flex;
  width: 136px;
  min-width: 136px;
  height: 136px;
  background: #f2879b;
  align-items: center;
  justify-content: center;
}
.hamburger {
  position: relative;
  width: 44px;
  height: 25px;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.hamburger span:first-child {
  top: 0;
  transform: translateX(-50%);
}
.hamburger span:last-child {
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
}
.hamburger.active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%)rotate(25deg);
}
.hamburger.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.hamburger.active span:last-child {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%)rotate(-25deg);
}
.hamburger-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100vh;
  max-height: 1500px;
  background: #f0879a;
  transform: translateY(100%);
  transition: 0.25s;
  overflow: auto;
  padding: 80px 0;
  opacity: 0;
}
.hamburger.active + .hamburger-nav {
  width: 100%;
  opacity: 1;
}
.front-header.active {
  position: fixed;
}
.active .header-logo-b {
  display: none;
}
.active .header-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-tel {
  padding-right: 36px;
  text-align: center;
}
.header-tel a {
  display: flex;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #f2879b;
  align-items: center;
}
.header-tel a span {
  display: block;
  margin-right: 10px;
  font-size: 0;
}
.header-tel p {
  padding-left: 32px;
  font-size: 14px;
  letter-spacing: 1px;
}
.header-nav nav ul {
  display: flex;
  margin-right: 16px;
  align-items: center;
}
.header-nav nav ul li {
  margin-right: 12px;
}
.header-nav nav ul a {
  display: flex;
  height: 86px;
  width: 86px;
  padding: 8px;
  color: #f2879b;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  border: 1px solid #f0879a;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.header-nav nav a img {
  margin-bottom: 5px;
  font-size: 0;
}
.header-nav nav ul a .sml {
  font-size: 14.5px;
}
.active .hamburger-wrap {
  width: 108px;
  min-width: 108px;
  height: 108px;
}
@media screen and (min-width: 1081px) and (max-width:1170px) {
  .header-tel a {
    font-size: 16px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .header-nav {
    display: block;
  }
  .header-tel {
    padding: 0;
    margin-top: -6px;
  }
  .header-tel a {
    font-size: 24px;
    justify-content: center;
  }
  .header-tel p {
    margin-top: -10px;
  }
  .header-logo {
    max-width: 180px;
  }
  .header-nav nav ul a {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 11px;
  }
  .front-header {
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .header-content {
    margin-left: 56px;
  }
  .header-logo-b a img {
    max-width: 180px;
  }
  .hamburger-wrap {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
  .header-nav {
    display: none;
  }
  .header-logo {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .header-logo img {
    max-width: 146px;
  }
  .hamburger-nav {
    padding: 40px 0;
  }
  .active .hamburger-wrap {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .header-logo-b a img {
    max-width: 120px;
  }
  .hamburger-wrap {
    width: 64px;
    min-width: 64px;
    height: 64px;
  }
  .hamburger {
    width: 40px;
    height: 20px;
  }
  .header-logo img {
    width: 120px;
  }
  .active .hamburger-wrap {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
/*フルスクリーンメニュー 
-----------------------------------------*/
.nav-inr {
  display: block !important;
}
.nav01 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.nav01-item {
  flex-basis: calc(96% * 1/3);
  margin-bottom: 20px;
}
.nav01-item:not(:nth-child(3n-2)) {
  margin-left: 2%;
}
.nav01-item a {
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 30px 0;
  /*margin-bottom: 20px;*/
  height: 100%;
  border: solid 1px #fff;
}
.nav01-item .en {
  font-size: 40px;
  font-family: 'Passion One', cursive;
  line-height: 1;
  letter-spacing: 0.25em;
  display: block;
}
.nav01-item .ja {
  font-size: 15px;
  display: block;
}
.nav02-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.nav02 {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  width: 100%;
  padding-right: 100px;
}
.nav02-item {
  flex-basis: calc(100% * 1/3);
}
.nav02-item a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 20px 0;
}
.nav02-item:nth-child(2) a, .nav02-item:nth-child(3) a {
  border-left: solid 1px #fff;
}
.nav02-item.sns {
  position: absolute;
  right: 0;
  width: 80px;
  display: flex;
  justify-content: space-around;
}
.nav02-item.sns a {
  color: #fff;
  font-size: 24px;
  display: block;
  padding: 0;
  margin: 20px 0;
}
.nav03 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 80px;
}
.nav03-item {
  flex-basis: calc(94% * 1/4);
}
.nav03-item:not(:nth-child(4n-3)) {
  margin-left: 2%;
}
.nav03-item a {
  color: #f0879a;
  font-size: 16px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 10px 0;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1080px) {
  .nav01-item {
    flex-basis: calc(98% * 1/2);
  }
  .nav01-item:not(:nth-child(3n-2)) {
    margin-left: 0;
  }
  .nav01-item:nth-child(2n-1) {
    margin-left: 2%;
  }
  .nav01-item:first-child {
    flex-basis: 100%;
    margin-left: 0;
  }
  .nav02 {
    padding-right: 0;
  }
  .nav02-wrap {
    padding-bottom: 40px;
  }
  .nav02-item a {
    font-size: 15px;
  }
  .nav02-item.sns {
    bottom: 0;
  }
  .nav02-item.sns a {
    font-size: 24px;
    margin: 0;
  }
  .nav03-item {
    flex-basis: calc(98% * 1/2);
    margin-bottom: 10px;
  }
  .nav03-item:not(:nth-child(4n-3)) {
    margin-left: 0;
  }
  .nav03-item:not(:nth-child(2n-1)) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .nav01-item {
    margin-bottom: 2vw;
  }
  .nav01-item a {
    padding: 20px 0;
  }
  .nav01-item .en {
    font-size: 36px;
    letter-spacing: 0.1em;
  }
  .nav01-item .en.sml {
    font-size: 33px;
  }
  .nav02-wrap {
    margin-bottom: 20px;
  }
  .nav03 {
    padding-bottom: 120px;
  }
  .nav03-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 568px) {
  .nav01-item .en {
    font-size: 8vw;
    letter-spacing: 0.05em;
  }
  .nav01-item .en.sml {
    font-size: 7vw;
  }
  .nav01-item .ja {
    font-size: 14px;
  }
  .nav02-item {
    flex-basis: auto;
  }
  .nav02-item a {
    margin-right: 1em;
    padding: 0;
  }
  .nav02-item:nth-child(2) a, .nav02-item:nth-child(3) a {
    border-left: none;
  }
}
/*フッター
-----------------------------------------*/
footer {
  padding-top: 67px;
  padding-bottom: 4px;
  border-top: 1px dashed #bfbfbf;
}
footer.front-footer {
  margin-top: 120px;
}
.footer-link {
  margin-bottom: 36px;
  font-size: 0;
  text-align: center;
}
.footer-link a {
  display: inline-block;
  margin: 0 12px;
}
.footer-content {
  display: flex;
  margin-bottom: 68px;
  justify-content: space-between;
}
.footer-logo {
  margin-bottom: 56px;
}
.footer-infor, .footer-nav {
  width: 48%;
}
.footer-nav nav ul {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav nav li {
  width: 86px;
  height: 86px;
}
.footer-nav nav li:not(:last-child) {
  margin-right: 20px;
}
.footer-nav nav a {
  display: flex;
  width: 110%;
  height: 100%;
  padding: 8px;
  font-weight: 600;
  color: #f2879b;
  letter-spacing: 1px;
  line-height: 1;
  border: 1px solid #f0879a;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-nav nav a img {
  margin-bottom: 5px;
  font-size: 0;
}
.footer-nav nav a .sml {
  font-size: 14.5px;
}
@media screen and (max-width:780px) {
  .footer-nav nav a .sml2 {
    font-size: 10px !important;
  }
}
.footer-tel {
  margin-bottom: 6px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 11px;
  color: #f2879b;
}
.footer-tel a {
  display: inline-flex;
  align-items: center;
}
.footer-tel a span {
  margin-right: 36px;
  font-size: 0;
}
.footer-guide a:not(:last-child) {
  margin-right: 32px;
}
.copyright {
  font-size: 14px;
  text-align: center;
}
.pdt_cus {
  padding-top: 30px;
}
.fw_cus {
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .footer-content {
    display: block;
    margin-bottom: 40px;
  }
  .footer-infor, .footer-nav {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-logo {
    margin-bottom: 24px;
  }
  .footer-accs {
    margin-bottom: 24px;
  }
  .footer-nav nav a {
    padding: 6px;
  }
  .footer-tel {
    font-size: 30px;
    text-align: center;
  }
  .footer-tel a span {
    margin-right: 20px;
  }
  .footer-guide {
    text-align: center;
  }
  .copyright {
    font-size: 12px;
  }
  .pdt_cus {
    padding-top: initial;
  }
  .fw_cus {
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 48px;
    padding-bottom: 70px;
  }
  footer.front-footer {
    margin-top: 80px;
  }
  .footer-logo {
    max-width: 248px;
    margin: 0 auto 16px;
  }
  .footer-accs {
    margin-bottom: 15px;
  }
  .footer-nav nav li {
    width: 64px;
    height: 64px;
    font-size: 11px;
  }
  .footer-nav nav ul {
    max-width: 316px;
    margin: 0 auto 18px;
  }
  .footer-tel {
    margin-bottom: 2px;
    font-size: 22px;
    letter-spacing: 8px;
  }
  .footer-tel a span {
    width: 18px;
    margin-right: 14px;
  }
  .footer-guide {
    font-size: 14px;
  }
  .footer-content {
    margin-bottom: 24px;
  }
  .pdt_cus {
    padding-top: initial;
  }
  .fw_cus {
    font-weight: 500;
  }
}
@media screen and (max-width: 568px) {
  .footer-logo {
    max-width: 200px;
  }
  .footer-accs {
    font-size: 14px;
  }
  .footer-nav nav ul {
    align-items: unset;
  }
  .footer-nav nav li {
    width: 100%;
    height: auto;
  }
  .footer-nav nav li:not(:last-child) {
    margin: 0;
  }
  .footer-nav nav li:not(:last-child) a {
    border-right: none;
  }
  .footer-nav nav a img {
    margin: 0;
  }
  .footer-tel {
    margin-bottom: 12px;
    font-size: 20px;
    letter-spacing: 6px;
  }
  .footer-guide a:not(:last-child) {
    display: block;
    margin: 0 0 12px;
  }
  .pdt_cus {
    padding-top: initial;
  }
  .fw_cus {
    font-weight: 500;
  }
}
/*フロントページ
-----------------------------------------*/
.slider-content {
  display: flex;
}
.mv-slider-wrap {
  width: 100%;
}
.mv-sub-wrap {
  display: block;
  width: 136px;
  min-width: 136px;
  padding: 24px;
  text-align: center;
}
.mv-sub-wrap > img {
  margin-bottom: 40px;
  display: none;
}
.mv-txt-y {
  font-family: 'M PLUS 1p', sans-serif;
  margin-right: 20px;
  text-align: left;
  font-size: 20px;
  color: #f0879a;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1.7;
  letter-spacing: 0.2em;
  width: 5em;
  height: 14em;
  margin-bottom: 40px;
}
.mv-btn a {
  display: flex;
  width: 86px;
  height: 86px;
  padding: 8px;
  margin: 0 auto 22px;
  color: #f2879b;
  font-weight: 600;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid #f2879b;
}
.mv-btn a img {
  margin-bottom: 5px;
  font-size: 0;
}
.mv-btn {
  margin-bottom: 40px;
}
.mv-btn-sml {
  font-size: 14.5px;
}
.mv-link {
  font-size: 0;
}
.mv-link a {
  display: inline-block;
  margin-right: 24px;
}
.mv-link a:last-child {
  margin-right: 0;
}
.mv-slider {
  width: 100%;
}
.mv-slider-item {
  border-radius: 64px 0;
  overflow: hidden;
}
.slick-prev {
  left: 16px;
}
.slick-prev, .slick-next {
  width: 20px;
  height: 34px;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus, .slick-prev {
  left: 15px;
  background: url(../images/sli-arw-blc-l.png) 0 0 / 100% 100% no-repeat;
}
.slick-next:hover, .slick-next:focus, .slick-next {
  right: 15px;
  background: url(../images/sli-arw-blc-r.png) 0 0 / 100% 100% no-repeat;
}
.mv-slider .slick-prev {
  left: 16px;
  background: url(../images/sli-arw-wht-l.png) 0 0 / 100% 100% no-repeat;
}
.mv-slider .slick-next {
  right: 16px;
  background: url(../images/sli-arw-wht-r.png) 0 0 / 100% 100% no-repeat;
}
.slick-prev:before, .slick-next:before {
  content: none;
}
.slick-dotted.slick-slider {
  margin-bottom: 8px;
}
.slick-dots {
  position: unset;
  padding-top: 26px;
  text-align: left;
}
.slick-dots li {
  width: 34px;
  height: 11px;
  margin: 0 16px 0 0;
  background: #d9d9d9;
  border-radius: 30px;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.slick-dots li button:before {
  content: none;
}
.slick-dots li.slick-active {
  background: #f0879a;
}
.slider-content.active {
  margin-top: 108px;
}
/*-------*/
.f-event-titwrap {
  min-height: 260px;
  padding-bottom: 20px;
  background: #f4f2ed url(../images/event-bg01-w.png) 0 0 / 100% auto no-repeat;
}
.f-event-title {
  padding-top: 94px;
  text-align: center;
}
.f-event-title {
  padding-top: 94px;
  margin-bottom: 30px;
  text-align: center;
}
.btn-r {
  text-align: right;
}
.more-btn {
  position: relative;
  padding: 0 28px 14px 4px;
}
.more-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14px;
  background: url(../images/link-line.png) 0 0 / 100% 100% no-repeat;
}
.f-event-slider-wrap {
  background: #f4f2ed url(../images/event-bg02.png) 0 0 / 100% auto repeat-y;
}
.f-event-slider-item {
  position: relative;
  margin: 0 24px;
}
.f-event-img {
  position: relative;
}
.rad-img-wk {
  border-radius: 32px 0;
  overflow: hidden;
}
.event-tag {
  position: absolute;
  display: flex;
  top: 460px;
  right: 40px;
  width: 75px;
  height: 75px;
  font-weight: 700;
  color: #fff;
  background: #f2879b;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.event-slider-subbox {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px dashed #bfbfbf;
}
.event-time {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 5px;
}
.event-time span {
  font-size: 24px;
}
.event-time span:last-child {
  display: block;
  margin-top: -12px;
}
.f-event-txt {
  margin-top: 20px;
}
.slider-2clamp-tit {
  font-size: 28px;
  font-weight: 600;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.f-event-slider {
  padding: 16px 0 70px;
}
.f-concept-content {
  display: flex;
  padding: 80px 0 110px;
}
@media screen and (max-width: 767px) {
  .f-concept-h2 {
    text-align: center;
  }
}
.f-concept-item {
  width: 50%;
  padding: 0 24px;
  margin-right: 24px;
  font-size: 18px;
}
.f-concept-img {
  width: 48%;
  border-radius: 0 50px;
  overflow: hidden;
}
.f-concept-title {
  margin-bottom: 68px;
}
.f-concept-sub {
  margin-bottom: 64px;
  font-size: 36px;
}
.f-concept-item .more-btn-wrap {
  margin-top: 48px;
}
.f-refer-title {
  margin-bottom: 20px;
  text-align: center;
}
.front-refer {
  background: #fef4f5;
}
.f-refer-content {
  padding: 30px 0 72px;
}
.f-refer-item {
  margin: 0 24px;
  font-size: 18px;
  font-weight: 600;
}
.f-refer-img {
  margin-bottom: 26px;
  border-radius: 20px 0;
  overflow: hidden;
}
.f-refer-item p {
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.f-refer-slider {
  margin-top: 30px;
}
.f-refer-slider .slick-prev, .f-refer-slider .slick-next {
  top: 35%;
}
.f-refer-img img {
  width: 100%;
}
.f-refer-img, .f-works-img, .f-blog-img, .f-voice-img, .rad-img-wk {
  position: relative;
  width: 100%;
}
.f-refer-img::before, .f-works-img::before, .f-blog-img::before, .f-voice-img::before, .rad-img-wk::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.f-refer-img img, .f-works-img img, .f-blog-img img, .f-voice-img img, .rad-img-wk img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
  height: 100% !important;
  width: 100%;
}
.f-works-slider {
  width: 100%;
  max-width: 1480px;
  margin: 30px auto 116px;
}
.f-works-title {
  margin: 82px 0 20px;
  text-align: center;
}
.f-works-item {
  margin: 0 24px;
  font-size: 18px;
  font-weight: 600;
}
.f-works-txt {
  margin-top: 32px;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.f-works-slider .slick-prev {
  left: 13%;
}
.f-works-slider .slick-next {
  right: 13%;
}
.f-blog-title {
  margin-bottom: 22px;
  text-align: center;
}
.f-blog-item {
  margin: 0 24px;
}
.f-blog-tit {
  margin: 20px 0 24px;
}
.f-blog-infor > div {
  display: flex;
  align-items: center;
}
.f-blog-owner::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.f-blog-owner img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
  width: 100%;
  height: 100%;
}
.f-blog-owner {
  width: 90px;
  height: 90px;
  margin-right: 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.f-blog-name span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
}
.f-blog-slider {
  margin: 28px 0 117px;
}
.f-staff-title {
  margin-bottom: 26px;
  text-align: center;
}
.f-staff-content {
  margin: 32px 0 80px;
}
.f-staff-item {
  margin: 0 24px;
  font-size: 21px;
  font-weight: 600;
}
.f-staff-photo {
  position: relative;
}
.f-staff-photo::after {
  content: "";
  display: block;
  padding-top: 140%;
}
.f-staff-photo img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
}
.f-staff-name {
  margin-top: 24px;
  letter-spacing: 1px;
}
.f-staff-name span {
  font-size: 16px;
}
.front-column {
  position: relative;
  padding-top: 80px;
}
.f-column-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.front-column .more-btn-wrap {
  margin-bottom: -64px;
}
.f-column-content {
  display: flex;
  pointer-events: none;
  z-index: -1;
}
.f-column-item {
  position: relative;
  width: 50%;
  padding: 190px 40px 42px;
  background: url(../images/column-bg01.png) 0 0 / 100% auto no-repeat;
  z-index: -1;
  pointer-events: none;
}
.f-column-item:last-child {
  background: url(../images/column-bg02.png) 0 0 / 100% auto no-repeat;
  pointer-events: none;
  z-index: 1;
}
.f-column-item:last-child:after {
  z-index: -1;
  pointer-events: none;
}
.f-column-item:first-child {
  pointer-events: all;
  z-index: 5;
}
.f-column-list {
  z-index: 5;
  pointer-events: all;
}
.f-column-item:first-child .f-column-box {
  pointer-events: all;
  z-index: 10;
}
.f-column-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #f0879a;
  z-index: -1;
}
.f-column-item:last-child:after {
  background: #f4aba9;
}
.f-column-box {
  display: block;
  padding: 20px;
  background: #fff;
}
.column-cate {
  display: block;
  width: 100%;
  max-width: 174px;
  padding: 12px 10px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: #f2879b;
}
.f-column-img {
  position: relative;
}
.f-column-img::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.f-column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
}
.f-column-img .column-cate {
  position: absolute;
  left: 7px;
  bottom: 0;
  transform: translateY(50%);
}
.f-column-txt {
  font-weight: 600;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.f-column-txt.col-b {
  margin-top: 46px;
  font-size: 28px;
}
.f-column-list {
  display: flex;
  margin-bottom: 52px;
}
.f-column-list:last-child {
  margin-bottom: 0;
}
.f-column-list .f-column-img {
  width: 34%;
  min-width: 34%;
  margin-right: 14px;
}
.f-column-infor .column-cate {
  margin-bottom: 10px;
}
.f-voice-item {
  margin: 0 24px;
}
.f-voice-content {
  padding: 104px 0 120px;
}
.f-voice-title {
  margin-bottom: 22px;
  text-align: center;
}
.f-voice-content .more-btn-wrap {
  margin-bottom: 28px;
}
.f-voice-img {
  margin-bottom: 22px;
}
.f-news-title {
  margin-bottom: 26px;
  text-align: center;
}
.news-list {
  margin: 32px 0 120px;
}
.news-list-item {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #bfbfbf;
  align-items: flex-start;
}
.news-tag {
  width: 150px;
  min-width: 98px;
  padding: 2px;
  margin-right: 14px;
  font-size: 22px;
  text-align: center;
  color: #fff;
  background: #d9c19e;
  border-radius: 10px;
}
.only-news {
  width: 98px;
  font-size: 14px;
}
.news-list-item time {
  width: 110px;
  min-width: 100px;
  padding: 2px 0;
  margin-right: 28px;
  font-size: 14px;
}
.f-instagram-title {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .slider-content {
    display: block;
  }
  .mv-slider-wrap {
    width: 100% !important;
  }
  .mv-sub-wrap {
    display: flex;
    width: 100%;
    min-width: auto;
    padding: 20px 0;
    align-items: center;
  }
  .mv-sub-wrap > img {
    display: none;
  }
  .mv-txt-y {
    margin-right: 20px;
    margin-bottom: 0;
    text-align: left;
    font-size: 18px;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    line-height: 1.6;
    letter-spacing: 0.05em;
    width: auto;
    height: auto;
  }
  .mv-btn {
    display: flex;
    margin: 0;
  }
  .mv-btn a {
    margin: 0 24px 0 0;
  }
  .f-event-title {
    padding-top: 80px;
    margin-bottom: 24px;
  }
  .f-event-slider {
    padding: 0 0 48px;
  }
  .event-time {
    font-size: 3vw;
    letter-spacing: 7px;
  }
  .event-time span {
    font-size: 20px;
  }
  .slider-2clamp-tit {
    font-size: 20px;
  }
  .f-event-txt {
    margin-top: 14px;
  }
  .event-slider-subbox {
    padding-top: 10px;
  }
  .f-concept-title {
    margin-bottom: 40px;
  }
  .f-concept-sub {
    margin-bottom: 43px;
    font-size: 28px;
  }
  .f-concept-item .more-btn-wrap {
    margin-top: 30px;
  }
  .f-concept-content {
    padding: 48px 0 60px;
  }
  .f-refer-item {
    font-size: 16px;
  }
  .f-refer-img {
    margin-bottom: 20px;
  }
  .f-works-title {
    margin: 60px 0 20px;
  }
  .f-works-txt {
    margin-top: 24px;
  }
  .f-works-slider {
    margin-bottom: 64px;
  }
  .f-blog-tit {
    margin: 16px 0;
  }
  .f-blog-slider {
    margin-bottom: 80px;
  }
  .f-staff-name {
    margin-top: 16px;
  }
  .f-staff-item {
    font-size: 18px;
  }
  .f-column-item {
    padding: 160px 20px 20px;
  }
  .front-column .more-btn-wrap {
    margin-bottom: -40px;
  }
  .column-cate {
    padding: 8px;
  }
  .f-column-txt.col-b {
    margin-top: 32px;
    font-size: 22px;
  }
  .f-column-list {
    margin-bottom: 36px;
  }
  .f-voice-content {
    padding: 72px 0 48px;
  }
  .f-news-title {
    margin-bottom: 20px;
  }
  .news-list-item time {
    margin-right: 16px;
  }
  .news-list {
    margin-bottom: 64px;
  }
  .f-instagram-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 980px) {
  .front-column .more-btn-wrap {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv-sub-wrap {
    display: block;
    padding: 14px 0;
  }
  .mv-txt-y {
    width: 100%;
    margin: 0 0 8px;
    text-align: center;
  }
  .mv-txt-y br {
    display: none;
  }
  .mv-btn {
    display: block;
    margin-bottom: 20px;
  }
  .mv-btn a {
    width: 100%;
    height: auto;
    margin: 0;
    align-items: center;
  }
  .mv-btn li:not(:last-child) a {
    border-bottom: none;
  }
  .mv-btn a img {
    margin: 0 12px 0 0;
  }
  .f-event-title {
    padding-top: 60px;
    margin-bottom: 10px;
  }
  .more-btn {
    padding: 0 16px 12px 2px;
    font-size: 14px;
  }
  .f-event-titwrap {
    min-height: 218px;
  }
  .event-tag {
    width: 64px;
    height: 64px;
    font-size: 14px;
    position: absolute;
    display: flex;
    top: 260px;
    right: 0px;
    font-weight: 700;
    color: #fff;
    background: #f2879b;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .event-time {
    font-size: 8vw;
  }
  .f-event-txt {
    margin-top: 8px;
  }
  .slider-2clamp-tit {
    font-size: 16px;
  }
  .f-concept-content {
    display: block;
    padding: 24px 0 40px;
  }
  .f-concept-title {
    margin-bottom: 24px;
    text-align: center;
  }
  .f-concept-sub {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .f-concept-item {
    width: 100%;
    padding: 0;
    margin: 0 0 24px;
    font-size: 16px;
  }
  .f-concept-item .more-btn-wrap {
    margin-top: 20px;
  }
  .f-concept-img {
    width: 100%;
    height: 200px;
    border-radius: 0 32px;
  }
  .f-concept-img img {
    object-position: 0 34%;
  }
  .f-refer-content {
    padding-bottom: 40px;
  }
  .f-works-title {
    margin: 40px 0 20px;
  }
  .f-works-item {
    margin: 0 12px;
    font-size: 14px;
  }
  .f-blog-owner {
    width: 64px;
    height: 64px;
    margin-right: 16px;
  }
  .f-blog-name {
    font-size: 14px;
  }
  .f-blog-name span {
    margin-top: 4px;
    font-size: 16px;
  }
  .f-blog-slider {
    margin-bottom: 48px;
  }
  .f-staff-title {
    margin-bottom: 18px;
  }
  .f-staff-name span {
    font-size: 14px;
  }
  .f-column-title {
    position: unset;
    margin-bottom: 4px;
    text-align: center;
    transform: none;
  }
  .f-column-content {
    display: block;
  }
  .f-column-item {
    width: 100%;
    padding: 140px 20px 20px;
  }
  .f-column-box {
    padding: 10px;
  }
  .column-cate {
    max-width: 140px;
    font-size: 14px;
  }
  .f-column-txt.col-b {
    margin-top: 24px;
    font-size: 18px;
  }
  .f-column-item:first-child {
    margin-bottom: 20px;
  }
  .f-column-infor {
    font-size: 14px;
  }
  .f-column-list {
    margin-bottom: 20px;
  }
  .f-voice-content {
    padding: 40px 0;
  }
  .f-voice-title {
    margin-bottom: 16px;
  }
  .f-voice-img {
    margin-bottom: 16px;
  }
  .f-news-title {
    margin-bottom: 16px;
  }
  .news-list-item {
    display: block;
    padding: 12px 0;
  }
  .news-tag {
    display: inline-block;
    width: 120px;
    margin-right: 10px;
  }
  .news-list-item p {
    display: block;
    margin-top: 8px;
    font-size: 16px;
  }
  .news-list {
    margin-bottom: 48px;
  }
  .f-instagram-title {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 568px) {
  .slick-dots {
    padding-top: 18px;
    font-size: 0;
  }
  .slick-dots li {
    width: 24px;
    height: 7px;
    margin: 0 12px 0 0;
  }
  .mv-btn {
    display: flex;
  }
  .mv-btn a {
    height: 100%;
  }
  .mv-btn li:not(:last-child) a {
    border-right: 0;
    border-bottom: 1px solid #f2879b;
  }
  .mv-btn a img {
    display: block;
    margin: 0 0 8px;
  }
  .mv-btn a p {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .mv-btn li {
    width: 100%;
  }
  .event-time {
    font-size: 20px;
    line-height: 1.2;
    word-break: break-all;
  }
  .event-time span {
    font-size: 16px;
  }
  .event-time span:last-child {
    margin: 4px 0 0;
  }
  .slick-prev, .slick-next {
    width: 12px;
    height: 24px;
  }
  .f-concept-sub {
    font-size: 20px;
  }
  .f-refer-img {
    margin-bottom: 12px;
  }
  .f-staff-title {
    margin-bottom: 8px;
  }
  .f-staff-content {
    margin: 24px 0 48px;
  }
  .f-column-item {
    padding: 31% 10px 10px;
  }
  .f-column-img .column-cate {
    left: 4px;
  }
  .column-cate {
    max-width: 120px;
    font-size: 12px;
  }
  .f-column-txt.col-b {
    font-size: 14px;
  }
  .f-column-infor .column-cate {
    margin-bottom: 4px;
  }
  .f-voice-content {
    padding-bottom: 24px;
  }
  .f-news-content {
    padding: 0;
  }
  .news-list {
    margin-top: 20px;
  }
}
/* IEのみmargin-top */
@media all and (-ms-high-contrast: none) {
  .f-event-title {
    margin-top: 50px;
  }
}
/*フッター
-----------------------------------------*/
.sp-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .sp-menu-item {
    flex-basis: calc(100% * 1/3);
  }
  .sp-menu-item a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: #f2879b;
    display: block;
    padding: 10px 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-menu-item a:hover {
    opacity: 1;
  }
  .sp-menu-item a i {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
  }
}
/*トップへ戻るボタン*/
.topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  background: #F2879B;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 22px;
  padding-top: 30px;
}
.topBtn:before {
  content: '\25B2';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
}
.topBtn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .topBtn {
    display: none !important;
  }
}
/* 住まいの豆知識一覧 */
.knowledge-category-text {
  font-size: 18px;
}
.banner_toplink {
  text-align: center;
  margin: 2%;
}
@media screen and (max-width: 1130px) {
  .banner_toplink {
    max-width: 670px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
  }
}
@media(max-width:480px) and (min-width:360px) {
  .mv-txt-y {
    margin: 0 0 8px -15px;
    white-space: nowrap;
  }
}
/*リキャプチャ設置左寄せ*/
.grecaptcha-badge {
  left: 6px !important;
  width: 70px !important;
}
.grecaptcha-badge:hover {
  left: 6px !important;
  width: 256px !important;
}
/* 重要なお知らせ */
.importantNews {
  margin: -40px auto 40px;
  display: flex;
  justify-content: center;
}
.importantNews_link {
  display: block;
  padding: 10px 20px;
  color: blue;
  font-weight: bold;
  border: 1px solid blue;
}
@media(max-width:576px) {
  .importantNews {
    margin: -20px auto 30px;
    padding: 0 5vw;
  }
}