.section-lodina@charset "utf-8";

/*
  File Name   : top.css
  Description : コンテンツエリア関係 他
*/

/* top-kv-wrap
============================================================ */
.top-kv-wrap {
  /* height: calc(100vh - 72px); */
  display: block;
}
.top-kv-wrap .top-kv-inner {
  padding: 35px 15px 15px;
}
.top-kv-wrap .flex-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* main-wrap */
.top-kv-wrap .main-wrap,
.top-kv-wrap .main-wrap .slider-wrap .item {
  width: 100%;
  height: 41.6vw;
}
.top-kv-wrap .main-wrap {
  width: calc(100% - 24.3%);
  margin-right: 10px;
  overflow: hidden;
}
.top-kv-wrap .main-wrap .slider-wrap {
  position: relative;
  height: 100%;
  display: block;
}
.top-kv-wrap .main-wrap .slider-wrap .item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.top-kv-wrap .main-wrap .slider-wrap .item.-active {
  -webkit-animation: fadein-animation .75s linear forwards;
  animation: fadein-animation .75s linear forwards;
  z-index: 1;
}
.top-kv-wrap .main-wrap .slider-wrap .item.-inactive {
  -webkit-animation: fadeout-animation .75s linear forwards;
  animation: fadeout-animation .75s linear forwards;
}
.top-kv-wrap .main-wrap .slider-wrap .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* sub-wrap */
.top-kv-wrap .sub-wrap {
  width: 24.3%;
  margin-left: auto;
}
.top-kv-wrap .sub-wrap li {
  margin-bottom: 10px;
}
.top-kv-wrap .sub-wrap li:last-child {
  margin-bottom: 0;
}
.top-kv-wrap .sub-wrap li .slider-wrap {
  height: calc((41.6vw - 20px) / 3);
  position: relative;
}
.top-kv-wrap .sub-wrap li .slider-wrap .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.top-kv-wrap .sub-wrap li .slider-wrap .item.-active {
  -webkit-animation: fadein-animation .75s linear forwards;
  animation: fadein-animation .75s linear forwards;
  z-index: 1;
}
.top-kv-wrap .sub-wrap li .slider-wrap .item.-inactive {
  -webkit-animation: fadeout-animation .75s linear forwards;
  animation: fadeout-animation .75s linear forwards;
}
.top-kv-wrap .sub-wrap li .slider-wrap .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@-webkit-keyframes fadein-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeout-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* slick org dot */
.slider-dot-box {
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: calc(100% - 10px - 80px - 24.3%);
  height: 8px;
  z-index: 1;
}
.slider-dot-box .dots {
  position: static;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 8px;
  text-align: left;
  line-height: 0;
  opacity: 0;
  transition: all .75s linear;
}
.slider-dot-box .dots.-initialized {
  opacity: 1;
}
.slider-dot-box .dots li {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 8px;
  margin: 0 10px 0 0;
  line-height: 0;
  box-sizing: border-box;
}
.slider-dot-box .dots li:last-child {
  margin-right: 0;
}
.slider-dot-box .dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: solid 1px #fff;
  outline: none;
  background: transparent;
  cursor: default;
  pointer-events: none;
  box-sizing: border-box;
}
.slider-dot-box .dots li button::before {
  display: none;
}
.slider-dot-box .dots li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 8px;
  background: #fff;
}
.slider-dot-box .dots li.-active::after {
  -webkit-animation: dot-animation 5.5s linear;
  animation: dot-animation 5.5s linear;
}

@-webkit-keyframes dot-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes dot-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* top-kv-bottom-arrow-wrap */
.top-kv-bottom-arrow-wrap {
  text-align: center;
  position: relative;
  padding-bottom: 103px;
}
.top-kv-bottom-arrow-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 78px;
  background: url(../img/top/top-kv-bottom-arrow.png) 0 0 no-repeat;
  background-size: 20px auto;
}
.top-kv-bottom-arrow-wrap .text {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 10px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .top-kv-wrap {
    /* height: calc(100vh - 72px); */
    display: block;
  }
  .top-kv-wrap .top-kv-inner {
    padding: 10px 15px 15px;
  }
  .top-kv-wrap .flex-box {
    display: block;
  }

  /* main-wrap */
  .top-kv-wrap .main-wrap,
  .top-kv-wrap .main-wrap .slider-wrap .item {
    height: 96.301vw;
  }
  .top-kv-wrap .main-wrap {
    width: 100%;
    margin-right: 0;
  }
  .top-kv-wrap .main-wrap .slider-wrap .item {
    padding: 0 0 10px;
  }
  .top-kv-wrap .main-wrap .slider-wrap .item img {
    border-radius: 5px;
  }

  /* sub-wrap */
  .top-kv-wrap .sub-wrap {
    width: 100%;
    margin-left: 0;
  }
  .top-kv-wrap .sub-wrap ul {
    display: flex;
  }
  .top-kv-wrap .sub-wrap li {
    width: calc((100% - 5px * 2) / 3);
    margin-right: 5px;
    margin-bottom: 0;
  }
  .top-kv-wrap .sub-wrap li:last-child {
    margin-right: 0;
  }
  .top-kv-wrap .sub-wrap li .slider-wrap {
    height: 31.689vw;
  }
  .top-kv-wrap .sub-wrap li .slider-wrap .item img {
    border-radius: 5px;
  }

  /* slick org dot */
  .slider-dot-box {
    position: static;
    width: 100%;
    height: 4px;
    margin-top: 10px;
  }
  .slider-dot-box .dots {
    width: 100%;
    height: 4px;
    display: flex;
  }
  .slider-dot-box .dots li {
    width: calc((100% - 5px * 3) / 4);
    height: 4px;
    margin: 0 10px 0 0;
    display: block;
  }
  .slider-dot-box .dots li:last-child {
    margin-right: 0;
  }
  .slider-dot-box .dots li button {
    display: block;
    width: 100%;
    height: 4px;
    border: solid 1px #000;
  }
  .slider-dot-box .dots li::after {
    height: 4px;
    background: #000;
  }

  /* top-kv-bottom-arrow-wrap */
  .top-kv-bottom-arrow-wrap {
    text-align: center;
    position: relative;
    padding-bottom: 50px;
  }
  .top-kv-bottom-arrow-wrap::after {
    width: 9px;
    height: 33px;
    background-size: 9px auto;
  }
  .top-kv-bottom-arrow-wrap .text {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 10px;
    position: relative;
    right: -5px;
  }
}
@media screen and (max-width: 376px) {
  /* main-wrap */
  .top-kv-wrap .main-wrap,
  .top-kv-wrap .main-wrap .slider-wrap .item {
    height: 92.021vw;
  }

  /* sub-wrap */
  .top-kv-wrap .sub-wrap li .slider-wrap {
    height: 29.787vw;
  }

  /* top-kv-bottom-arrow-wrap */
  .top-kv-bottom-arrow-wrap .text {
    letter-spacing: 5px;
  }
}

/* blog-pickup-wrap
============================================================ */
.blog-pickup-wrap {
  padding: 0 30px 0 50px;
  width: calc(50vw - 50px);
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
.blog-pickup-wrap .flex-box {
  display: flex;
  align-items: flex-start;
}
.blog-pickup-wrap .inner-border {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: solid 2px  #14648c;
}
.blog-pickup-wrap .title-blog {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 5px;
  white-space: nowrap;
  margin-right: 25px;
  position: relative;
}
.blog-pickup-wrap .title-blog::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -20px;
  width: 10px;
  height: 12px;
  background: url(../img/top/icon-title-arrow-right-A.png) 0 0 no-repeat;
  background-size: 10px auto;
}
.blog-pickup-wrap .day,
.blog-pickup-wrap .title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  padding-top: 4px;
}
.blog-pickup-wrap .day {
  /* width: 95px; */
  margin-right: 22px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .blog-pickup-wrap {
    padding: 0 20px 0;
    width: 100%;
    margin-top: 0;
  }
  .blog-pickup-wrap .flex-box {
    display: flex;
    align-items: flex-start;
  }
  .blog-pickup-wrap .inner-border {
    padding-bottom: 1px;
  }
  .blog-pickup-wrap .title-blog {
    display: none;
  }
  .blog-pickup-wrap .title-blog::before {
    display: none;
  }
  .blog-pickup-wrap .day,
  .blog-pickup-wrap .title {
    font-size: 11px;
    line-height: 1.4;
    padding-top: 4px;
  }
  .blog-pickup-wrap .day {
    /* width: 95px; */
    margin-right: 12px;
  }
}

/* top-title-wrap
============================================================ */
/* -A */
.top-title-wrap-A {
  display: inline-block;
  position: relative;
  padding-bottom: 0;
}
.top-title-wrap-A::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #14648c;
}
.top-title-wrap-A .inner {
  display: flex;
  align-items: flex-end;
}
.top-title-wrap-A .title-en {
  font-size: 43px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  letter-spacing: 10px;
  margin-right: 5px;
}
.top-title-wrap-A .title-ja {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: -15px;
}

/* -C */
.top-title-wrap-C {
  display: inline-block;
  position: relative;
  padding-bottom: 0;
  margin-top: -15px;
}
.top-title-wrap-C .title-en {
  font-size: 43px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  letter-spacing: 10px;
  position: relative;
  padding-bottom: 20px;
}
.top-title-wrap-C .title-en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  background-color: #14648c;
}
.top-title-wrap-C .title-ja {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  margin-top: 34px;
}
.top-title-wrap-C .title-ja.-large {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin-top: 24px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  /* -A */
  .top-title-wrap-A .title-en {
    font-size: 35px;
    line-height: 1.4;
    margin-right: 5px;
  }
  .top-title-wrap-A .title-ja {
    font-size: 15px;
    position: relative;
    top: -12px;
  }

  /* -C */
  .top-title-wrap-C {
    padding-bottom: 0;
    margin-top: -15px;
  }
  .top-title-wrap-C .title-en {
    font-size: 35px;
    padding-bottom: 10px;
  }
  .top-title-wrap-C .title-ja {
    font-size: 15px;
    margin-top: 20px;
  }
  .top-title-wrap-C .title-ja.-large {
    font-size: 18px;
    margin-top: 20px;
  }
}

/* button
============================================================ */
/* base */
.top-btn-wrap {
  margin-top: 30px;
}

/* btn-base */
.top-btn-wrap .btn-base {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  border-radius: 50px;
  padding: 19px 10px;
  min-width: 200px;
  position: relative;
  transition: all .2s ease-in-out;
}
.top-btn-wrap .btn-base::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 60px;
  height: 9px;
  background: url(../img/common/com-btn-arrow-right-A.png) 0 0 no-repeat;
  background-size: 60px auto;
}
.top-btn-wrap .btn-base:hover {
  text-decoration: none;
  opacity: .7;
}

/* -center */
.top-btn-wrap.-center {
  text-align: center;
}

/* -bolder */
.top-btn-wrap .btn-base.-bolder {
  border: solid 2px #000;
}

/* -bg-gy */
.top-btn-wrap .btn-base.-bg-gy {
  background-color: #e8e8e8;
}

/* -small */
.top-btn-wrap .btn-base.-small {
  font-size: 15px;
  padding: 14px 10px;
  min-width: 165px;
}
.top-btn-wrap .btn-base.-small::after {
  right: -25px;
  width: 48px;
  height: 8px;
  background: url(../img/common/com-btn-arrow-right-A.png) 0 0 no-repeat;
  background-size: 48px auto;
}

/* -arrow-small */
.top-btn-wrap .btn-base.-arrow-small::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 9px;
  height: 8px;
  background: url(../img/common/icon-btn-arrow-small.png) 0 0 no-repeat;
  background-size: 9px auto;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .top-btn-wrap .btn-base:hover {
    opacity: 1;
  }
}

/* section-event
============================================================ */
.section-event {
  padding-top: 130px;
}
.section-event .top-title-wrap-A {
  margin-bottom: 36px;
}
.section-event .event-body .list-none-text {
  font-size: 16px;
  font-weight: bold;
}
.section-event .event-body ul {
  display: flex;
  flex-wrap: wrap;
}
.section-event .event-body li {
  width: calc((100% - 30px * 2) / 3);
  margin-top: 60px;
  margin-right: 30px;
}
.section-event .event-body li:nth-child(3n + 3) {
  margin-right: 0;
}
.section-event .event-body li .title-wrap {
  padding-left: 15px;
  border-left: solid 2px #000;
}
.section-event .event-body li .title-wrap .title-en {
  font-size: 32px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 5px;
}
.section-event .event-body li .title-wrap .title-ja {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
}
.section-event .event-body li .img-wrap {
  margin-top: 35px;
  height: 346px;
}
.section-event .event-body li .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-event .event-body li .desc-wrap {
  margin-top: 20px;
}
.section-event .event-body li .desc-wrap .title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.section-event .event-body li .desc-wrap .day,
.section-event .event-body li .desc-wrap .shop {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  position: relative;
  padding-left: 20px;
}
.section-event .event-body li .desc-wrap .shop {
  margin-top: 3px;
}
.section-event .event-body li .desc-wrap .day::before,
.section-event .event-body li .desc-wrap .shop::before {
  content: "";
  position: absolute;
  left: 0;
}
.section-event .event-body li .desc-wrap .day::before {
  top: 2px;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon-check-bl-A.png) 0 0 no-repeat;
  background-size: 12px auto;
}
.section-event .event-body li .desc-wrap .shop::before {
  top: 1px;
  width: 12px;
  height: 14px;
  background: url(../img/common/icon-pin-bk-A.png) 0 0 no-repeat;
  background-size: 12px auto;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-event {
    padding-top: 50px;
  }
  .section-event .event-body li .img-wrap {
    height: 28vw;
  }
}
@media screen and (max-width: 811px) {
  .section-event {
    padding-top: 50px;
  }
  .section-event .top-title-wrap-A {
    margin-bottom: 40px;
  }
  .section-event .event-body {
  }
  .section-event .event-body ul {
    display: block;
  }
  .section-event .event-body li {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 80px;
  }
  .section-event .event-body li:last-child {
    margin-bottom: 0;
  }
  .section-event .event-body li .img-wrap {
    margin-top: 25px;
    text-align: center;
    height: calc(100vw - 40px);
  }
  .section-event .event-body li .desc-wrap {
    margin-top: 20px;
  }
  .section-event .event-body li .desc-wrap .top-btn-wrap {
    text-align: center;
  }
}

/* section-concept
============================================================ */
.section-concept {
  padding-top: 200px;
  position: relative;
}
.section-concept::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 563px;
  background: url(../img/top/voice-top-bg-img.png) center no-repeat;
  background-size: auto 563px;
}
.section-concept .concept-main-wrap,
.section-concept .concept-sub-wrap-A,
.section-concept .concept-sub-wrap-B {
  position: relative;
}
.section-concept .concept-main-wrap .left-wrap {
  width: 50%;
  height: 646px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/top/concept-img-1.jpg) center center no-repeat;
  background-size: cover;
}
.section-concept .concept-main-wrap .right-wrap {
  width: 460px;
  min-height: 646px;
  padding-left: 50%;
  position: relative;
  margin-left: auto;
}
.section-concept .concept-main-wrap .right-wrap .top-btn-wrap {
  position: absolute;
  bottom: 50px;
  right: calc(228px + 20px);
}
.section-concept .concept-main-wrap .right-wrap .flex-box {
  display: flex;
  flex-direction: row-reverse;
}
.section-concept .concept-main-wrap .right-wrap .top-title-wrap-B .title-en {
  font-size: 54px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 10px;
  position: relative;
  top: -4px;
  padding-left: 22px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 60px;
}
.section-concept .concept-main-wrap .right-wrap .top-title-wrap-B .title-en::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 3px;
  height: 63px;
  background-color: #14648c;
}
.section-concept .concept-main-wrap .right-wrap .title-img {
  width: 88px;
  min-width: 88px;
  display: block;
  margin-left: 55px;
}
.section-concept .concept-main-wrap .right-wrap .main-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.section-concept .concept-main-wrap .right-wrap .main-text span {
  display: block;
}

/* concept-sub-wrap-A */
.section-concept .concept-sub-wrap-A {
  margin-top: 178px;
}
.section-concept .concept-sub-wrap-A .com-section-inner {
  max-width: calc((1100px + 270px) + 40px * 2);
}
.section-concept .concept-sub-wrap-A .left-wrap {
  width: calc(50% + 240px);
  height: 729px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: url(../img/top/concept-img-2.jpg) center no-repeat;
  background-size: cover;
}
.section-concept .concept-sub-wrap-A .right-wrap {
  width: 400px;
  min-height: 729px;
  position: relative;
  padding-top: 227px;
  margin-left: auto;
}
.section-concept .concept-sub-wrap-A .right-wrap .img {
  width: 509px;
  position: absolute;
  top: -148px;
  right: 0;
  z-index: 1;
}

/* concept-sub-wrap-B */
.section-concept .concept-sub-wrap-B {
  margin-top: 60px;
}
.section-concept .concept-sub-wrap-B .right-wrap {
  width: calc(50% + -105px);
  height: calc(530px + 33px);
  position: absolute;
  top: 0;
  left: calc(50% - -105px);
  overflow: hidden;
  background: url(../img/top/concept-img-3.jpg) center no-repeat;
  background-size: cover;
  margin-top: 33px;
}
.section-concept .concept-sub-wrap-B .left-wrap {
  width: 550px;
  height: calc(530px + 33px);
  position: relative;
  padding-left: 220px;
}

/* text */
.section-concept .concept-sub-wrap-A .right-wrap .text,
.section-concept .concept-sub-wrap-B .left-wrap .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 3;
  letter-spacing: 5px;
  white-space: nowrap;
}

/* br */
.section-concept .concept-sub-wrap-A .right-wrap .br-1451px-only {
  display: none;
}

/* animation */
/* main-wrap */
.section-concept .concept-main-wrap .right-wrap {
  position: relative;
  left: -15px;
  transition: all .9s ease-in-out;
  opacity: 0;
}
.section-concept .concept-main-wrap .left-wrap {
  left: -15px;
  transition: all .7s ease-in-out;
  opacity: 0;
}
.section-concept .concept-main-wrap.js-offset-active .right-wrap {
  left: 0;
  opacity: 1;
}
.section-concept .concept-main-wrap.js-offset-active .left-wrap {
  left: 0;
  opacity: 1;
  transition-delay: .5s;
}

/* wrap-A */
.section-concept .concept-sub-wrap-A .left-wrap {
  left: 15px;
  transition: all .9s ease-in-out;
  opacity: 0;
  z-index: 0;
}
.section-concept .concept-sub-wrap-A .right-wrap {
  left: 15px;
  transition: all .7s ease-in-out;
  opacity: 0;
  z-index: 1;
}
.section-concept .concept-sub-wrap-A.js-offset-active .left-wrap {
  left: 0;
  opacity: 1;
}
.section-concept .concept-sub-wrap-A.js-offset-active .right-wrap {
  left: 0;
  opacity: 1;
  transition-delay: .5s;
}

/* wrap-B */
.section-concept .concept-sub-wrap-B .left-wrap {
  top: 15px;
  transition: all .9s ease-in-out;
  opacity: 0;
}
.section-concept .concept-sub-wrap-B .right-wrap {
  top: 15px;
  transition: all .7s ease-in-out;
  opacity: 0;
}
.section-concept .concept-sub-wrap-B.js-offset-active .left-wrap {
  top: 0;
  opacity: 1;
}
.section-concept .concept-sub-wrap-B.js-offset-active .right-wrap {
  top: 0;
  opacity: 1;
  transition-delay: .5s;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1451px) {
  .section-concept .concept-sub-wrap-A .right-wrap {
    width: 25vw;
  }
  .section-concept .concept-sub-wrap-A .right-wrap .br-1451px-only {
    display: block;
  }
}
@media screen and (max-width: 1281px) {
  .section-concept .concept-sub-wrap-A .right-wrap {
    width: 23vw;
  }
}
@media screen and (max-width: 1201px) {
  .section-concept .concept-sub-wrap-A .right-wrap {
    width: 22vw;
  }
}
@media screen and (max-width: 1101px) {
  .section-concept {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-concept::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 263px;
    background: url(../img/top/voice-top-bg-img.png) center no-repeat;
    background-size: auto 263px;
  }
  .section-concept .concept-main-wrap,
  .section-concept .concept-sub-wrap-A,
  .section-concept .concept-sub-wrap-B {
    position: relative;
  }
  .section-concept .concept-main-wrap .left-wrap {
    display: none;
  }
  .section-concept .concept-main-wrap .right-wrap {
    width: 100%;
    min-height: auto;
    padding-left: 0;
    margin-left: 0;
  }
  .section-concept .concept-main-wrap .right-wrap .top-btn-wrap {
    position: static;
  }
  .section-concept .concept-main-wrap .right-wrap .flex-box {
    display: block;
  }
  .section-concept .concept-main-wrap .right-wrap .flex-box.sp-flex-none {
    display: block;
  }
  .section-concept .concept-main-wrap .right-wrap .top-title-wrap-B .title-en {
    font-size: 35px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    letter-spacing: 10px;
    position: relative;
    top: auto;
    padding-left: 0;
    padding-bottom: 15px;
    -webkit-writing-mode: horizontal-tb !important;
    -ms-writing-mode: horizontal-tb !important;
    writing-mode: horizontal-tb !important;
    margin-left: 0;
  }
  .section-concept .concept-main-wrap .right-wrap .top-title-wrap-B .title-en::before {
    content: "";
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    width: 68px;
    height: 4px;
    background-color: #14648c;
  }
  .section-concept .concept-main-wrap .right-wrap .title-img {
    width: 68px;
    min-width: 68px;
    display: block;
    margin-left: 0;
    margin: 60px auto 0;
  }
  .section-concept .concept-main-wrap .right-wrap .sp-img-wrap {
    margin-top: 40px;
  }
  .section-concept .concept-main-wrap .right-wrap .main-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
    -webkit-writing-mode: horizontal-tb !important;
    -ms-writing-mode: horizontal-tb !important;
    writing-mode: horizontal-tb !important;
    margin-top: 20px;
  }
  .section-concept .concept-main-wrap .right-wrap .main-text span {
    display: inline;
  }
  .section-concept .concept-main-wrap .right-wrap .top-btn-wrap {
    text-align: center;
  }

  /* concept-sub-wrap-A */
  .section-concept .concept-sub-wrap-A {
    margin-top: 60px;
  }
  .section-concept .concept-sub-wrap-A .com-section-inner {
    max-width: calc((1100px + 270px) + 40px * 2);
  }
  .section-concept .concept-sub-wrap-A .left-wrap {
    display: none;
  }
  .section-concept .concept-sub-wrap-A .right-wrap {
    width: 100%;
    min-height: auto;
    position: relative;
    padding-top: 0;
    margin-left: auto;
  }
  .section-concept .concept-sub-wrap-A .right-wrap .img {
    width: 509px;
    position: absolute;
    top: -148px;
    right: 0;
    z-index: 1;
  }
  .section-concept .concept-sub-wrap-A .sp-img-wrap {
    margin-top: 33px;
  }

  /* concept-sub-wrap-B */
  .section-concept .concept-sub-wrap-B {
    margin-top: 60px;
  }
  .section-concept .concept-sub-wrap-B .right-wrap {
    width: 100%;
    height: auto;
    position: static;
    overflow: hidden;
    background: none;
    padding: 0 20px;
    margin-top: 33px;
  }
  .section-concept .concept-sub-wrap-B .left-wrap {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .section-concept .concept-sub-wrap-A .right-wrap .text,
  .section-concept .concept-sub-wrap-B .left-wrap .text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 5px;
    white-space: normal;
  }

  /* animation */
  /* main-wrap */
  .section-concept .concept-main-wrap .right-wrap {
    left: 0;
    opacity: 1;
  }
  .section-concept .concept-main-wrap .left-wrap {
    left: 0;
    opacity: 1;
  }
  .section-concept .concept-main-wrap.js-offset-active .right-wrap {
    left: 0;
  }
  .section-concept .concept-main-wrap.js-offset-active .left-wrap {
    left: 0;
  }

  /* wrap-A */
  .section-concept .concept-sub-wrap-A .left-wrap {
    left: 0;
    opacity: 0;
  }
  .section-concept .concept-sub-wrap-A .right-wrap {
    left: 0;
    opacity: 1;
  }
  .section-concept .concept-sub-wrap-A.js-offset-active .left-wrap {
    left: 0;
  }
  .section-concept .concept-sub-wrap-A.js-offset-active .right-wrap {
    left: 0;
  }

  /* wrap-B */
  .section-concept .concept-sub-wrap-B .left-wrap {
    top: 0;
    opacity: 1;
  }
  .section-concept .concept-sub-wrap-B .right-wrap {
    top: 0;
    opacity: 1;
  }
  .section-concept .concept-sub-wrap-B.js-offset-active .left-wrap {
    top: 0;
  }
  .section-concept .concept-sub-wrap-B.js-offset-active .right-wrap {
    top: 0;
  }
}

/* section-voice
============================================================ */
.section-voice {
  padding-top: 215px;
  padding-bottom: 180px;
  background-color: #fff;
}
.section-voice .top-title-wrap-C .title-ja {
  font-size: 20px;
}
.section-voice .voice-pickup-wrap {
  display: flex;
}
.section-voice .voice-pickup-wrap > * {
  width: 50%;
}
.section-voice .voice-pickup {
  transition: all .2s ease-in-out;
}
.section-voice .voice-pickup:hover {
  text-decoration: none;
  opacity: .7;
}
.section-voice .voice-pickup-wrap .img-block {
  height: 550px;
}
.section-voice .voice-pickup-wrap .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-voice .voice-pickup-wrap .desc-block {
  padding-left: 55px;
}
.section-voice .voice-pickup-wrap .desc-block .desc {
  margin-top: 50px;
}
.section-voice .voice-pickup-wrap .desc-block .desc .title {
  font-size: 23px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  color: #14648a;
  letter-spacing: 5px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.section-voice .voice-pickup-wrap .desc-block .desc .title::before {
  content: "";
  position: absolute;
  width: calc(100% - 5px);
  height: 19px;
  background-color: #fff000;
  display: inline-block;
  z-index: -1;
}
.section-voice .voice-pickup-wrap .desc-block .desc .title-sub {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #14648c;
}
.section-voice .voice-pickup-wrap .desc-block .desc .text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}
.section-voice .voice-pickup-wrap .desc-block .desc .com-category-wrap-A {
  margin-top: 8px;
}

/* list */
.section-voice .voice-list-wrap {
  margin-top: 77px;
  padding: 78px 15px 70px;
  background-color: #efebe0;
}
.section-voice .voice-list-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.section-voice .voice-list-wrap li {
  width: calc((100% - 45px * 3) / 4);
  margin-right: 45px;
}
.section-voice .voice-list-wrap li:nth-child(4n) {
  margin-right: 0;
}
.section-voice .voice-list-wrap li:nth-child(n + 5) {
  margin-top: 45px;
}
.section-voice .voice-list-wrap li a {
  transition: all .2s ease-in-out;
}
.section-voice .voice-list-wrap li a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-voice .voice-list-wrap li .img-wrap {
  height: 240px;
}
.section-voice .voice-list-wrap li .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-voice .voice-list-wrap .desc-wrap {
  margin-top: 15px;
}
.section-voice .voice-list-wrap .desc-wrap .title-sub {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #14648c;
}
.section-voice .voice-list-wrap .desc-wrap .text {
  font-size: 15px;
  font-weight: normal;
  margin-top: 5px;
}
.section-voice .voice-list-wrap .desc-wrap .com-category-wrap-A {
  margin-top: 3px;
}
.section-voice .-voice-mgn {
  margin-top: 100px;
}

/* bn */
.section-voice .voice-bn-wrap {
  text-align: center;
  margin-top: 70px;
}
.section-voice .voice-bn-wrap a {
  display: inline-block;
  width: 580px;
  transition: all .2s ease-in-out;
}
.section-voice .voice-bn-wrap a:hover {
  opacity: .7;
}

/* voice-list-btn-wrap */
.section-voice .voice-list-btn-wrap {
  margin-top: 70px;
}
.section-voice .voice-list-btn-wrap .top-btn-wrap {
  margin-top: 0;
}
.section-voice .voice-list-btn-wrap .top-btn-wrap .btn-base {
  /* padding: 19px 58px; */
  min-width: 265px;
}

.section-voice .voice-list-wrap .title-main {
  font-size: 27px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 55px;
}


/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-voice .voice-list-wrap li {
    width: calc((100% - 45px * 1) / 2);
    margin-right: 45px;
  }
  .section-voice .voice-list-wrap li:nth-child(4n),
  .section-voice .voice-list-wrap li:nth-child(2n) {
    margin-right: 0;
  }
  .section-voice .voice-list-wrap li:nth-child(n + 5),
  .section-voice .voice-list-wrap li:nth-child(n + 3) {
    margin-top: 45px;
  }
}
@media screen and (max-width: 811px) {
  .section-voice {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .section-voice .top-title-wrap-C .title-ja {
    font-size: 15px;
  }
  .section-voice .voice-pickup-wrap {
    display: block;
    margin-top: 50px;
    padding-bottom: 0;
    /* border-bottom: dashed 1px #ddd; */
  }
  .section-voice .voice-pickup-wrap > * {
    width: 100%;
  }
  .section-voice .voice-pickup-wrap .img-block {
    height: 50vw;
  }
  .section-voice .voice-pickup-wrap .desc-block {
    padding-left: 0;
  }
  .section-voice .voice-pickup-wrap .desc-block .desc {
    margin-top: 20px;
  }
  .section-voice .voice-pickup-wrap .desc-block .desc .text {
    font-size: 13px;
    margin-top: 5px;
  }
  .section-voice .voice-pickup-wrap .desc-block .desc .com-category-wrap-A {
    margin-top: 8px;
  }
  .section-voice .voice-pickup-wrap .desc-block .desc .title {
    font-size: 16px;
    letter-spacing: 5px;
    margin-bottom: 11px;
  }
  .section-voice .voice-pickup-wrap .desc-block .desc .title::before {
    height: 13px;
  }
  .section-voice .voice-pickup-wrap .desc-block .desc .title-sub {
    font-size: 12px;
  }
  .section-voice .top-btn-wrap.sp-only-811 {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .section-voice .top-btn-wrap.sp-only-811 .btn-base {
    min-width: 100%;
  }
  .section-voice .voice-list-btn-wrap {
    margin-top: 0;
  }
  .section-voice .voice-list-btn-wrap .top-btn-wrap .btn-base {
    min-width: 216px;
  }
  .section-voice .voice-list-btn-wrap .top-btn-wrap .btn-base {
    font-size: 12px;
  }

  /* list */
  .section-voice .voice-list-wrap .title-main {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .section-voice .voice-list-wrap {
    margin-top: 40px;
  }
  .section-voice .swiper {
    width: 200px !important;
    overflow: visible;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .section-voice .voice-list-wrap ul {
    display: flex;
    flex-wrap: nowrap;
    width: 200px !important;
  }
  .section-voice .voice-list-wrap {
    margin-top: 37px;
    padding: 38px 12px 30px;
  }
  .section-voice .voice-list-wrap li {
    /* width: 100%; */
    width: 200px !important;
    /* margin-right: 0; */
    /* margin-bottom: 25px; */
    margin-bottom: 0;
    /* margin-right: 15px; */
  }
  .section-voice .voice-list-wrap li:nth-child(2n) {
    /* margin-right: 15px; */
  }
  .section-voice .voice-list-wrap li:nth-child(4n) {
    margin-right: 0;
  }
  .section-voice .voice-list-wrap li:nth-child(n + 5) {
    margin-top: 0;
  }
  .section-voice .voice-list-wrap li:last-child {
    margin-bottom: 0;
  }
  .section-voice .voice-list-wrap li .img-wrap {
    /* height: 50vw; */
    height: 200px;
  }
  .section-voice .voice-list-wrap .desc-wrap {
    margin-top: 15px;
  }
  .section-voice .voice-list-wrap .desc-wrap .text {
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
  }
  .section-voice .voice-list-wrap .desc-wrap .com-category-wrap-A {
    margin-top: 3px;
  }
  .section-voice .voice-list-wrap .desc-wrap .title-sub {
    font-size: 12px;
  }
  .section-voice .slide-list-btn-wrap {
    position: relative;
    left: -10px;
  }
  .section-voice .slide-list-btn-wrap,
  .section-voice .slide-list-btn-wrap .slide-list-btn a {
    display: block;
    width: 200px;
  }
  .section-voice .slide-list-btn-wrap .slide-list-btn a {
    padding: 40px;
    padding-left: 0;
  }
  .section-voice .slide-list-btn-wrap .slide-list-btn img {
    width: 137px;
  }
  .section-voice .-voice-mgn {
    margin-top: 50px;
  }
  .section-voice .voice-list-wrap li:nth-child(n + 5),
  .section-voice .voice-list-wrap li:nth-child(n + 3) {
    margin-top: 0;
  }

  .section-voice .voice-list-wrap li a:hover {
    opacity: 1;
  }

  /* bn */
  .section-voice .voice-bn-wrap {
    margin-top: 50px;
  }
  .section-voice .voice-bn-wrap a {
    max-width: 580px;
    width: 100%;
  }
  .section-voice .voice-bn-wrap a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 321px) {
  .section-voice .slide-list-btn-wrap {
    width: 90px;
    position: relative;
    left: -10px;
  }
  .section-voice .slide-list-btn-wrap .slide-list-btn img {
    width: 90px;
  }
  .section-voice .slide-list-btn-wrap .slide-list-btn a {
    padding: 65px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* section-favo
============================================================ */
.section-favo {
  display: flex;
  align-items: center;
  height: 600px;
  padding: 0 70px 0 20px;
  background-color: #97b9cc;
}
.section-favo .title-wrap {
  /* width: 790px; */
  width: 41.146vw;
  padding-top: 75px;
}
.section-favo .title-wrap .inner {
  text-align: center;
  position: relative;
}
.section-favo .title-wrap .inner::before {
  content: "";
  position: absolute;
  top: calc(50% - 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 795px;
  height: 507px;
  background: url(../img/top/favo-img-2.png) center no-repeat;
  background-size: 795px auto;
  z-index: 0;
}
.section-favo .title-wrap .title {
  width: 189px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-favo .title-wrap .lead {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2.5px;
  color: #fff;
  margin-top: 65px;
  position: relative;
  z-index: 1;
}
.section-favo .desc-wrap {
  /* width: calc(100% - 790px); */
  width: calc(100% - 41.146vw);
}
.section-favo .desc-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.section-favo .desc-wrap li {
  width: calc((100% - 20px * 1) / 2);
  margin-right: 20px;
}
.section-favo .desc-wrap li:nth-child(2n) {
  margin-right: 0;
}
.section-favo .desc-wrap li:nth-child(n + 3) {
  margin-top: 20px;
}
.section-favo .desc-wrap li a {
  height: 225px;
  background-color: #eee;
  border-radius: 5px;
  display: block;
  position: relative;
  transition: all .2s ease-in-out;
}
.section-favo .desc-wrap li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 8px;
  height: 22px;
  background: url(../img/common/icon-arrow-line-right-wh.png) 0 0 no-repeat;
  background-size: 8px auto;
}
.section-favo .desc-wrap li a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-favo .desc-wrap li .item-wrap .img-block {
  height: 225px;
}
.section-favo .desc-wrap li .item-wrap .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.section-favo .desc-wrap li .btn-title-block {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-favo .desc-wrap li .btn-title-block img {
  display: block;
  height: 51px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-favo {
    display: block;
    height: auto;
    padding: 40px 20px 40px 20px;
    overflow: hidden;
  }
  .section-favo .title-wrap {
    /* width: 790px; */
    width: 100%;
    padding-top: 75px;
  }
  .section-favo .title-wrap .inner {
    text-align: center;
    position: relative;
  }
  .section-favo .title-wrap .inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 595px;
    height: 335px;
    background-size: 595px auto;
  }
  .section-favo .title-wrap .title {
    width: 189px;
  }
  .section-favo .title-wrap .lead {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .5px;
    margin-top: 65px;
  }
  .section-favo .desc-wrap {
    width: 100%;
    margin-top: 80px;
  }
  .section-favo .desc-wrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  .section-favo .desc-wrap li a {
    height: 225px;
  }
  .section-favo .desc-wrap li a::after {
    right: 15px;
  }
  .section-favo .desc-wrap li a:hover {
    opacity: 1;
  }
  .section-favo .desc-wrap li .item-wrap .img-block {
    height: 225px;
  }
  .section-favo .desc-wrap li .btn-title-block img {
    height: 40px;
  }
}
@media screen and (max-width: 811px) {
  .section-favo .desc-wrap li a {
    height: 160px;
  }
  .section-favo .desc-wrap li .item-wrap .img-block {
    height: 160px;
  }
}

/* section-lodina
============================================================ */
.section-lodina {
  height: 600px;
  padding: 0 70px 0 20px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
}
.section-lodina a {
  transition: all .2s ease-in-out;
}
.section-lodina a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-lodina .title-wrap {
  /* width: 790px; */
  width: 41.146vw;
  padding-top: 90px;
  position: relative;
}
.section-lodina .title-wrap::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/common/icon-blank-bk-large.png) 0 0 no-repeat;
  background-size: 15px auto;
}
.section-lodina .title-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 11px;
  height: 40px;
  background: url(../img/common/icon-arrow-line-right-bk.png) 0 0 no-repeat;
  background-size: 11px auto;
}
.section-lodina .title-wrap .inner {
  text-align: center;
}
.section-lodina .title-wrap .title {
  width: 289px;
  margin: 0 auto;
}
.section-lodina .title-wrap .lead {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2.5px;
  margin-top: 50px;
}
.section-lodina .img-block {
  width: calc(100% - 41.146vw);
  height: 487px;
}
.section-lodina .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

/* section-yuie
============================================================ */
.section-yuie {
  height: 600px;
  padding: 0 70px 0 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.section-yuie a {
  transition: all .2s ease-in-out;
}
.section-yuie a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-yuie .title-wrap {
  /* width: 790px; */
  width: 41.146vw;
  padding-top: 90px;
  position: relative;
}
.section-yuie .title-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 11px;
  height: 40px;
  background: url(../img/common/icon-arrow-line-right-bk.png) 0 0 no-repeat;
  background-size: 11px auto;
}
.section-yuie .title-wrap .inner {
  text-align: center;
}
.section-yuie .title-wrap .title {
  width: 289px;
  margin: 0 auto;
}
.section-yuie .title-wrap .lead {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2.5px;
  margin-top: 50px;
  position: relative;
  padding-top: 2em;
}
.section-yuie .title-wrap .lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid #000;
  width: 60%;
}
.section-yuie .img-block {
  width: calc(100% - 41.146vw);
}


/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-lodina {
    height: auto;
    padding: 40px 20px 40px 20px;
    display: block;
  }
  .section-lodina a:hover {
    opacity: 1;
  }
  .section-lodina .title-wrap {
    /* width: 790px; */
    width: 100%;
    padding-top: 40px;
    padding-bottom: 90px;
  }
  .section-lodina .title-wrap::before {
    content: "";
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: url(../img/common/icon-blank-bk-large.png) 0 0 no-repeat;
    background-size: 15px auto;
  }
  .section-lodina .title-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 11px;
    height: 40px;
    background: url(../img/common/icon-arrow-line-right-bk.png) 0 0 no-repeat;
    background-size: 11px auto;
  }
  .section-lodina .title-wrap .title {
    width: 220px;
    margin: 0 auto;
  }
  .section-lodina .title-wrap .lead {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .5px;
    margin-top: 10px;
  }
  .section-lodina .img-block {
    width: 100%;
    max-width: 750px;
    height: 240px;
    margin: 0 auto;
  }
  .section-yuie {
    height: auto;
    padding: 40px 20px 40px 20px;
    display: block;
  }
  .section-yuie a:hover {
    opacity: 1;
  }
  .section-yuie .title-wrap {
    /* width: 790px; */
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-yuie .title-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 11px;
    height: 40px;
    background: url(../img/common/icon-arrow-line-right-bk.png) 0 0 no-repeat;
    background-size: 11px auto;
  }
  .section-yuie .title-wrap .title {
    width: 220px;
    margin: 0 auto;
  }
  .section-yuie .title-wrap .lead {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: .5px;
    margin-top: 10px;
  }
  .section-yuie .img-block {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
  }
}

/* section-estate
============================================================ */
.section-estate {
  padding-top: 150px;
}
.section-estate .estate-wrap {
  margin-top: 90px;
}
.section-estate .estate-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.section-estate .estate-wrap li {
  width: calc((100% - 20px * 3) / 4);
  margin-right: 20px;
}
.section-estate .estate-wrap li:nth-child(4n) {
  margin-right: 0;
}
.section-estate .estate-wrap li:nth-child(n + 5) {
  margin-top: 45px;
}
.section-estate .estate-wrap li a {
  display: block;
  transition: all .2s ease-in-out;
}
.section-estate .estate-wrap li a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-estate .estate-wrap li .img-block {
  height: 200px;
  position: relative;
}
.section-estate .estate-wrap li .img-block .status {
  display: flex;
  position: absolute;
  top: -20px;
  left: -15px;
}
.section-estate .estate-wrap li .img-block .status .item {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  padding-top: 17px;
  display: block;
  margin-right: 6px;
}
.section-estate .estate-wrap li .img-block .status .base {
  color: #000;
  background-color: #fff;
}
.section-estate .estate-wrap li .img-block .status .new {
  color: #fff;
  background-color: #14648c;
}
.section-estate .estate-wrap li .img-block .list-categorys-warp {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
.section-estate .estate-wrap li .img-block .category {
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  padding: 8px 10px;
  color: #fff;
  display: inline-block;
}
.section-estate .estate-wrap li .img-block .category.-color-tochi {
  background-color: #0000a4;
}
.section-estate .estate-wrap li .img-block .category.-color-tateuri {
  background-color: #d37000;
}
.section-estate .estate-wrap li .img-block .category.-color-chukojutaku {
  background-color: #0094b6;
}
.section-estate .estate-wrap li .img-block .category.-color-area {
  background-color: #3c3c3c;
}
.section-estate .estate-wrap li .img-block .category.-color-city {
  background-color: #b1b1b1;
}
.section-estate .estate-wrap li .img-block .category.-color-intermediary {
  background-color: #e6e6e6;
  color: #7f7873;
}
.section-estate .estate-wrap li .img-block .img-outer {
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
.section-estate .estate-wrap li .img-block .img-outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
}
.section-estate .estate-wrap li .desc-block {
  margin-top: 15px;
}
.section-estate .estate-wrap li .desc-block .text {
  font-size: 14px;
}
.section-estate .-estate-mgn {
  margin-top: 60px;
}
.section-estate .top-btn-wrap.-last {
  margin-bottom: 30px;
}

.section-estate .estate-bottom-bn {
  margin-top: 30px;
  margin-bottom: -85px;
}
.section-estate .estate-bottom-bn a {
  display: block;
  transition: all .2s ease-in-out;
}
.section-estate .estate-bottom-bn a:hover {
  opacity: .7;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-estate .estate-wrap li {
    width: calc((100% - 20px * 1) / 2);
    margin-right: 20px;
  }
  .section-estate .estate-wrap li:nth-child(4n) {
    margin-right: 0;
  }
  .section-estate .estate-wrap li:nth-child(2n) {
    margin-right: 0;
  }
  .section-estate .estate-wrap li:nth-child(n + 5),
  .section-estate .estate-wrap li:nth-child(n + 3) {
    margin-top: 45px;
  }

  .section-estate .estate-bottom-bn {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: -180px;
    text-align: center;
    max-width: 375px;
  }
}
@media screen and (max-width: 811px) {
  .section-estate {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .section-estate .estate-wrap {
    margin-top: 50px;
  }
  .section-estate .estate-wrap ul {
    display: block;
  }
  .section-estate .estate-wrap li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .section-estate .estate-wrap li:nth-child(4n) {
    margin-right: 0;
  }
  .section-estate .estate-wrap li:nth-child(n + 5) {
    margin-top: 0;
  }
  .section-estate .estate-wrap li:last-child {
    margin-bottom: 0;
  }
  .section-estate .estate-wrap li a:hover {
    opacity: 1;
  }
  .section-estate .estate-wrap li .img-block {
    height: 60vw;
  }
  .section-estate .-estate-mgn {
    margin-top: 40px;
  }
  .section-estate .top-btn-wrap.-last {
    margin-bottom: 60px;
  }

  .section-estate .estate-bottom-bn {
    margin-top: 60px;
    margin-bottom: -180px;
  }
  .section-estate .estate-bottom-bn a:hover {
    opacity: 1;
  }
}

/* section-works
============================================================ */
.section-works {
  padding-top: 230px;
  padding-bottom: 120px;
  background-color: #fff;
}
.section-works .works-list {
  margin-top: 95px;
}
.section-works .works-list ul {
  display: flex;
  flex-wrap: wrap;
}
.section-works .works-list li {
  width: calc(100% / 4);
}
.section-works .works-list li .outer {
  position: relative;
}
.section-works .works-list li .outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .2s ease-in-out;
}
.section-works .works-list li .outer:hover::before {
  background-color: rgba(0, 0, 0, .6);
}
.section-works .works-list li .outer .status {
  display: flex;
  position: absolute;
  top: 28px;
  right: 28px;
}
.section-works .works-list li .outer .status .item {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  padding-top: 17px;
  display: block;
  margin-right: 6px;
}
.section-works .works-list li .outer .status .new {
  color: #fff;
  background-color: #14648c;
}
.section-works .works-list li .inner {
  /* height: 480px; */
  height: 25vw;
  overflow: hidden;
}
.section-works .works-list li .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-works .works-list li  .outer .desc-wrap {
  width: 290px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .2s ease-in-out;
  opacity: 0;
}
.section-works .works-list li .outer:hover .desc-wrap {
  opacity: 1;
}
.section-works .works-list li  .outer .desc-wrap .day,
.section-works .works-list li  .outer .desc-wrap .title {
  font-weight: bold;
  letter-spacing: 0;
  color: #fff;
}
.section-works .works-list li  .outer .desc-wrap .day {
  font-size: 13px;
}
.section-works .works-list li  .outer .desc-wrap .title {
  font-size: 18px;
  line-height: 1.4;
}
.section-works .-works-mgn {
  margin-top: 55px;
}

.section-works .bn-wrap {
  margin-top: 60px;
}
.section-works .bn-wrap a {
  display: block;
  transition: all .2s ease-in-out;
}
.section-works .bn-wrap a:hover {
  opacity: .7;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1281px) {
  .section-works .works-list li {
    width: calc(100% / 2);
  }
  .section-works .works-list li .inner {
    height: 50vw;
  }
}
@media screen and (max-width: 811px) {
  .section-works {
    padding-top: 180px;
    padding-bottom: 100px;
  }
  .section-works .works-list {
    margin-top: 40px;
  }
  .section-works .works-list ul {
    display: block;
  }
  .section-works .works-list li {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .section-works .works-list li:last-child {
    margin-bottom: 0;
  }
  .section-works .works-list li .outer::before {
    display: none;
  }
  .section-works .works-list li .outer .status {
    top: 14px;
    right: 10px;
  }
  .section-works .works-list li .inner {
    /* height: 480px; */
    /* height: auto; */
    height: calc(100vw - 40px);
  }
  .section-works .works-list li .outer .desc-wrap {
    width: 100%;
    position: static;
    transform: translate(0, 0);
    opacity: 1;
    padding: 20px 0;
    background-color: #fff;
  }
  .section-works .works-list li  .outer .desc-wrap .day,
  .section-works .works-list li  .outer .desc-wrap .title {
    color: #000;
  }
  .section-works .works-list li  .outer .desc-wrap .day {
    font-size: 13px;
  }
  .section-works .works-list li  .outer .desc-wrap .title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .section-works .desc-wrap .top-btn-wrap .btn-base {
    width: 100%;
  }
  .section-works .-works-mgn {
    margin-top: 40px;
  }
}

/* section-blog
============================================================ */
.section-blog {
  padding-top: 120px;
  padding-bottom: 100px;
}
.section-blog .com-section-inner {
  position: relative;
}
.section-blog .top-title-wrap-C {
  position: absolute;
  top: 60px;
  left: 40px;
}

/* blog-pickup */
.section-blog .blog-pickup a {
  display: block;
  height: 100%;
  transition: all .2s ease-in-out;
}
.section-blog .blog-pickup a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-blog .blog-pickup .flex-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.section-blog .blog-pickup .img-block {
  width: 690px;
  height: 530px;
  margin-left: -80px;
}
.section-blog .blog-pickup .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-blog .blog-pickup .desc-block {
  width: 490px;
  min-height: 208px;
  padding: 34px 25px;
  background-color: #fff;
  margin-top: 250px;
  position: relative;
  z-index: 1;
}
.section-blog .blog-pickup .desc-block .recommend-text {
  font-size: 27px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 5px;
  position: absolute;
  top: -12px;
}
.section-blog .blog-pickup .desc-block .title-sub {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #14648c;
  text-indent: -1em;
  margin-left: 1em;
}
.section-blog .blog-pickup .desc-block .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 8px;
}
.section-blog .blog-pickup .desc-block .com-category-wrap-A {
  margin-top: 10px;
}
.section-blog .blog-pickup .desc-block .text {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: .5px;
  margin-top: 15px;
}
.section-blog .blog-pickup .desc-block .day {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #787878;
  margin-top: 22px;
}

/* blog-body */
.section-blog .blog-body {
  margin-top: 55px;
}
.section-blog .blog-body ul {
  display: flex;
}
.section-blog .blog-body li {
  width: calc((100% - 25px * 2) / 3);
  margin-right: 25px;
}
.section-blog .blog-body li a {
  background-color: #fff;
  display: block;
  height: 100%;
  transition: all .2s ease-in-out;
}
.section-blog .blog-body li a:hover {
  text-decoration: none;
  opacity: .7;
}
.section-blog .blog-body li:last-child {
  margin-right: 0;
}
.section-blog .blog-body li .img-block {
  height: 268px;
  position: relative;
}
.section-blog .blog-body li .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-blog .blog-body li .desc-block {
  padding: 20px 25px 25px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.section-blog .blog-body li .desc-block .title-sub {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #14648c;
  text-indent: -1em;
  margin-left: 1em;
  padding-right: 80px;
}
.section-blog .blog-body li .desc-block .title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 8px;
}
.section-blog .blog-body li .desc-block .com-category-wrap-A {
  margin-top: 8px;
}
.section-blog .blog-body li .desc-block .text {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .5px;
  margin-top: 15px;
}
.section-blog .blog-body li .desc-block .day {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #787878;
  position: absolute;
  top: 20px;
  right: 25px;
  /* margin-top: 22px; */
}

/* New icon */
.section-blog .blog-pickup .img-block .status,
.section-blog .blog-pickup .desc-block .status {
  display: flex;
  position: absolute;
  top: 10px;
  right: 45px;
}
.section-blog .blog-pickup .desc-block .status {
  top: -25px;
  left: -10px;
  right: auto;
}
.section-blog .blog-body li .img-block .status,
.section-blog .blog-body li .desc-block .status {
  display: flex;
  position: absolute;
  top: -20px;
  left: -10px;
}
.section-blog .img-block .status .item,
.section-blog .desc-block .status .item {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  padding-top: 17px;
  display: block;
  margin-right: 6px;
}
.section-blog .img-block .status .new,
.section-blog .desc-block .status .new {
  color: #fff;
  background-color: #14648c;
}

/* btn */
.section-blog .-blog-mgn {
  margin-top: 78px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-blog .top-title-wrap-C {
    position: static;
    margin-bottom: 40px;
  }

  /* blog-pickup */
  .section-blog .blog-pickup a:hover {
    opacity: 1;
  }
  .section-blog .blog-pickup .flex-box {
    display: block;
  }
  .section-blog .blog-pickup .img-block {
    width: 100%;
    /* height: 100%; */
    height: 66.342vw;
    margin-left: 0;
    position: relative;
  }
  .section-blog .blog-pickup .desc-block {
    width: 100%;
    min-height: auto;
    padding: 20px 20px;
    margin-top: 0;
  }
  .section-blog .blog-pickup .desc-block .recommend-text {
    font-size: 27px;
    top: -12px;
  }
  .section-blog .blog-pickup .desc-block .title-sub {
    font-size: 14px;
  }
  .section-blog .blog-pickup .desc-block .title {
    font-size: 18px;
    margin-top: 8px;
  }
  .section-blog .blog-pickup .desc-block .com-category-wrap-A {
    margin-top: 10px;
  }
  .section-blog .blog-pickup .desc-block .text {
    font-size: 12px;
    margin-top: 15px;
  }
  .section-blog .blog-pickup .desc-block .day {
    font-size: 10px;
    margin-top: 22px;
  }

  /* blog-body */
  .section-blog .blog-body {
    margin-top: 55px;
  }
  .section-blog .blog-body ul {
    display: block;
  }
  .section-blog .blog-body li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .section-blog .blog-body li a:hover {
    opacity: 1;
  }
  .section-blog .blog-body li:last-child {
    margin-bottom: 0;
  }
  .section-blog .blog-body li .img-block {
    height: 66.342vw;
  }
  .section-blog .blog-body li .desc-block {
    padding: 20px 20px 25px;
  }
  .section-blog .blog-body li .desc-block .title-sub {
    font-size: 14px;
    padding-right: 0;
  }
  .section-blog .blog-body li .desc-block .title {
    font-size: 15px;
    margin-top: 8px;
  }
  .section-blog .blog-body li .desc-block .com-category-wrap-A {
    margin-top: 8px;
  }
  .section-blog .blog-body li .desc-block .text {
    font-size: 12px;
    margin-top: 15px;
  }
  .section-blog .blog-body li .desc-block .day {
    font-size: 10px;
    position: static;
    margin-top: 22px;
  }

  /* New icon */
  .section-blog .blog-pickup .img-block .status {
    top: -20px;
    left: -10px;
  }
  .section-blog .blog-body li .img-block .status {
    top: -20px;
    left: -10px;
  }

  /* btn */
  .section-blog .-blog-mgn {
    margin-top: 40px;
  }
}

/* section-model-house
============================================================ */
.section-model-house {
  padding-top: 140px;
  padding-bottom: 150px;
  background-color: #fff;
  overflow: hidden;
}
.section-model-house .flex-box {
  display: flex;
}
.section-model-house .model-house-body {
}
.section-model-house .model-house-body .body-title {
  max-width: 456px;
  margin: 75px auto 90px;
  position: relative;
}
.section-model-house .model-house-body .body-title .title-parts {
  width: 350px;
  position: absolute;
  top: -170px;
  right: -288px;
}
.section-model-house .flex-box ul {
  display: flex;
}
.section-model-house .flex-box li {
  width: calc((100% - 35px * 2) / 3);
  margin-right: 35px;
  text-align: center;
}
.section-model-house .flex-box li:last-child {
  margin-right: 0;
}
.section-model-house .model-house-body li .title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 27px;
}
.section-model-house .model-house-body li .top-btn-wrap {
  margin-top: 40px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-model-house {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-model-house .flex-box {
    display: block;
  }
  .section-model-house .model-house-body .body-title {
    max-width: 570px;
    margin: 60px auto 40px;
  }
  .section-model-house .model-house-body .body-title .title-parts {
    /* width: 350px;
    position: absolute;
    top: -170px;
    right: -288px; */
    display: none;
  }
  .section-model-house .flex-box ul {
    display: block;
  }
  .section-model-house .flex-box li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 60px;
  }
  .section-model-house .flex-box li:last-child {
    margin-bottom: 0;
  }
  .section-model-house .model-house-body li .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .section-model-house .model-house-body li .top-btn-wrap {
    margin-top: 20px;
  }
}

/* section-staff-and-campaign
============================================================ */
.section-staff-and-campaign {
  display: flex;
}
.section-staff-and-campaign > * {
  width: 50vw;
  text-align: center;
}
.section-staff-and-campaign .item {
  height: 520px;
  position: relative;
}
.section-staff-and-campaign .item .desc {
  padding-top: 130px;
}
.section-staff-and-campaign .item .title,
.section-staff-and-campaign .item .text {
  color: #fff;
}
.section-staff-and-campaign .item .title {
  font-size: 43px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 13px;
}
.section-staff-and-campaign .item .text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-top: 25px;
}
.section-staff-and-campaign .item .top-btn-wrap {
  margin-top: 55px;
}
.section-staff-and-campaign .item.-staff {
  background: url(../img/top/staff-and-campaign-img-1.jpg) center no-repeat;
  background-size: cover;
}
.section-staff-and-campaign .item.-campaign {
  background: url(../img/top/staff-and-campaign-img-2.jpg) center no-repeat;
  background-size: cover;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-staff-and-campaign {
    display: block;
  }
  .section-staff-and-campaign > * {
    width: 100%;
  }
  .section-staff-and-campaign .item {
    height: auto;
  }
  .section-staff-and-campaign .item .desc {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-staff-and-campaign .item .title {
    font-size: 30px;
    letter-spacing: 10px;
  }
  .section-staff-and-campaign .item .text {
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 20px;
  }
  .section-staff-and-campaign .item .top-btn-wrap {
    margin-top: 30px;
  }
}

/* section-contact
============================================================ */
.section-contact {
  padding-top: 150px;
  padding-bottom: 125px;
  background-color: #fff;
}
.section-contact .contact-info-body {
  width: 100%;
  padding: 68px 20px 65px;
  background-color: #f2f2d4;
  text-align: center;
}
.section-contact .contact-info-body .inner {
  max-width: 697px;
  margin: 0 auto;
}
.section-contact .contact-info-body .title-main {
  font-size: 43px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 10px;
}
.section-contact .contact-info-body .lead-A {
  max-width: 284px;
  margin: 55px auto 0;
}
.section-contact .contact-info-body .lead-B {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
}
.section-contact .contact-info-body .img-wrap {
  max-width: 697px;
  margin: 0 auto;
  margin-top: 23px;
}
.section-contact .contact-info-body .img-bottom-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 25px;
}
.section-contact .contact-info-body .bottom-links-wrap {
  margin-top: 50px;
}
.section-contact .contact-info-body .bottom-links-wrap .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.section-contact .contact-info-body .bottom-links-wrap .flex-box ul {
  display: flex;
}
.section-contact .contact-info-body .bottom-links-wrap li {
  width: calc((100% - 40px * 2) / 3);
  margin-right: 40px;
}
.section-contact .contact-info-body .bottom-links-wrap li:last-child {
  margin-right: 0;
}
.section-contact .contact-info-body .btn-base {
  font-size: 19px;
  line-height: 1;
  width: 100%;
}
.section-contact .contact-info-body .btn-base span {
  position: relative;
  padding-left: 30px;
}
.section-contact .contact-info-body .btn-base span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 14px;
  background: url(../img/common/icon-mail-2-bk.png) 0 0 no-repeat;
  background-size: 18px auto;
}
.section-contact .contact-info-body li .tel {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  padding-left: 24px;
  margin-top: 25px;
}
.section-contact .contact-info-body li .tel span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 18px;
  background: url(../img/common/icon-tel-bk.png) 0 0 no-repeat;
  background-size: 14px auto;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .section-contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-contact .contact-info-body {
    padding: 50px 20px 30px;
  }
  .section-contact .contact-info-body .inner {
    max-width: 100%;
  }
  .section-contact .contact-info-body .title-main {
    font-size: 30px;
  }
  .section-contact .contact-info-body .lead-A {
    max-width: 250px;
    margin: 30px auto 0;
  }
  .section-contact .contact-info-body .lead-B {
    font-size: 18px;
    margin-top: 10px;
  }
  .section-contact .contact-info-body .img-wrap {
    margin-top: 23px;
  }
  .section-contact .contact-info-body .img-bottom-text {
    margin-top: 25px;
  }
  .section-contact .contact-info-body .bottom-links-wrap {
    margin-top: 50px;
  }
  .section-contact .contact-info-body .bottom-links-wrap .flex-box ul {
    display: block;
  }
  .section-contact .contact-info-body .bottom-links-wrap li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .section-contact .contact-info-body .bottom-links-wrap li:last-child {
    margin-bottom: 0;
  }
  .section-contact .contact-info-body .bottom-links-wrap .title {
    font-size: 16px;
  }
  .section-contact .contact-info-body li .tel {
    margin-top: 20px;
  }
}

/* hoge
============================================================ */
.hoge {
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .hoge {
  }
}


