@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  /*display: none;*/
}

.slick-arrow.slick-hidden:before {
  color: #cccccc;
  opacity: 1;
  cursor: default;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../images/fonts/slick.eot");
  src: url("../images/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../images/fonts/slick.woff") format("woff"), url("../images/fonts/slick.ttf") format("truetype"), url("../images/fonts/slick.svg#slick") format("svg");
}
/************************ Arrows ************************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 45px;
  height: 45px;
  margin-top: -23px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: #edb826;
}
.slick-prev.slick-hidden,
.slick-next.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-prev:before {
  left: 50%;
  margin-left: -4px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.slick-next:before {
  right: 50%;
  margin-right: -4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.slick-prev {
  left: -30px;
}

[dir=rtl] .slick-prev {
  right: -30px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -30px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -30px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/************************ Dots ************************/
.slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .slick-dots {
    margin-bottom: 8vw;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .slick-dots li {
    margin: 0 2.6666666667vw;
  }
}

.slick-dots li button {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  font-size: 0;
  display: block;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: #eeeeee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 768px) {
  .slick-dots li button {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #edb826;
}

.slick-dots li.slick-active button {
  background: #edb826;
}

.c-alert {
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
}
.c-alert.is-s {
  padding: 5px 10px;
  font-size: rem(14px);
}
.c-alert.is-m {
  padding: 15px;
  font-size: rem(16px);
}
.c-alert.is-l {
  padding: 15px;
  font-size: rem(21px);
}
.c-alert.is-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.c-alert.is-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.c-alert.is-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.c-alert.is-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.c-error {
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 2px solid #ffcfcf;
  background: #fff0f0;
  color: #ff0000;
}

.u-em,
.c-em {
  font-weight: bold;
  color: #ff6600;
}

.c-btn {
  display: inline-block;
  position: relative;
  padding: 12px 15px;
  border: 1px solid #231815;
  border-bottom: none;
  border-radius: 0px;
  min-width: 210px;
  line-height: 1.4;
  background: transparent;
  color: #231815;
  font-size: 1.25rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 100ms 0s ease;
  transition: all 100ms 0s ease;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 2;
}
@media only screen and (max-width: 990px) {
  .c-btn {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn {
    padding: 3.2vw 4vw;
    min-width: 40vw;
    font-size: 4.2666666667vw;
    cursor: pointer;
  }
}
.c-btn:hover {
  background-color: transparent;
  color: #231815;
  cursor: pointer;
  text-decoration: none;
}
.c-btn:hover:after {
  background: rgba(237, 184, 38, 0.6);
}
.c-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: calc(100% - 5px);
  background: #231815;
}
@media only screen and (max-width: 768px) {
  .c-btn:before {
    width: 100%;
  }
}
.c-btn:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  height: 100%;
  width: 100%;
  background: rgba(237, 184, 38, 0.8);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .c-btn:after {
    top: 0.8vw;
    left: 0;
  }
}

/***** ボタン 状態・大きさ *****/
.c-btn.is-primary {
  border-color: transparent;
  background: #edb826;
  color: #ffffff;
  position: relative;
}
.c-btn.is-primary:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-primary:before {
    right: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #ffffff;
    border-bottom: 0.2666666667vw solid #ffffff;
  }
}
.c-btn.is-primary.is-no-arrow {
  position: relative;
}
.c-btn.is-primary.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-primary.is-no-arrow:before {
    left: 0vw;
    margin-top: 0vw;
    width: 0vw;
    height: 0vw;
    border-right: 0vw solid #696969;
    border-bottom: 0vw solid #696969;
  }
}
.c-btn.is-primary:hover {
  background: rgba(237, 184, 38, 0.9);
  color: #ffffff;
}
.c-btn.is-success {
  border-color: #398439;
  background: #449d44;
  color: #ffffff;
}
.c-btn.is-success:hover {
  background: #398439;
  color: #ffffff;
}
.c-btn.is-link {
  border-color: #edb826;
  border-width: 1px;
  background: #ffffff;
  color: #edb826;
  position: relative;
}
.c-btn.is-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #edb826;
  border-bottom: 1px solid #edb826;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-link:before {
    right: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #edb826;
    border-bottom: 0.2666666667vw solid #edb826;
  }
}
.c-btn.is-link:hover {
  position: relative;
  background: #edb826;
  color: #ffffff;
}
.c-btn.is-link:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-link:hover:before {
    right: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #ffffff;
    border-bottom: 0.2666666667vw solid #ffffff;
  }
}
.c-btn.is-disable {
  border-color: #dddddd;
  background: #e5e5e5;
  color: #aaaaaa;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
}
.c-btn.is-disable:hover {
  margin: 0 2px 2px 0;
}
.c-btn.is-arrow {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-arrow:before {
    right: 4vw;
    margin-top: -1.0666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #666666;
    border-bottom: 0.5333333333vw solid #666666;
  }
}
.c-btn.is-arrow-bottom {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow-bottom:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-arrow-bottom:before {
    right: 3.2vw;
    margin-top: -1.0666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #666666;
    border-bottom: 0.5333333333vw solid #666666;
  }
}
.c-btn.is-no-arrow {
  position: relative;
}
.c-btn.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-no-arrow:before {
    left: 0vw;
    margin-top: 0vw;
    width: 0vw;
    height: 0vw;
    border-right: 0vw solid #696969;
    border-bottom: 0vw solid #696969;
  }
}
.c-btn.is-pdf {
  padding: 12px 45px;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-pdf {
    padding: 3.2vw 12vw;
  }
}
.c-btn.is-secondary::after {
  background: rgba(0, 0, 0, 0.15);
}
.c-btn.is-secondary:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
.c-btn.is-s {
  padding: 4px 5px;
  font-size: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-s {
    padding: 1.0666666667vw 1.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-btn.is-m {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .c-btn.is-m {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn.is-m {
    font-size: 4.2666666667vw;
  }
}
.c-btn.is-l {
  font-size: 2.25rem;
}
@media only screen and (max-width: 1230px) {
  .c-btn.is-l {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn.is-l {
    font-size: 4.2666666667vw;
  }
}

/***** moreボタン *****/
.c-second-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .c-second-btn-wrap {
    display: block;
  }
}
.c-second-btn-wrap .c-btn-more {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 768px) {
  .c-second-btn-wrap .c-btn-more {
    padding-left: 4vw;
    padding-right: 4vw;
    margin-top: 0;
    margin-bottom: 4vw;
    padding: 0;
  }
}

.c-btn-more {
  margin-top: 45px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-btn-more {
    margin-top: 8vw;
  }
}
.c-btn-more.is-left {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .c-btn-more.is-left {
    text-align: center;
  }
}
.c-btn-more.is-right {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .c-btn-more.is-right {
    text-align: center;
  }
}

.c-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 768px) {
  .c-card-list {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.c-card-list__item {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-card-list__item {
    margin-bottom: 8vw;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
.c-card-list__item.is-top {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-card-list__item.is-top {
    margin-bottom: 8vw;
  }
}

.c-card-list__link {
  overflow: hidden;
  display: block;
  border: 1px solid #dddddd;
  border-radius: 5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-card-list__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c-card-list__link:hover {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .c-card-list__link {
    border-radius: 1.3333333333vw;
  }
}

.c-card-list__txt {
  padding: 15px;
}
@media only screen and (max-width: 768px) {
  .c-card-list__txt {
    padding: 4vw;
  }
}

.c-card-list__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .c-card-list__ttl {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.c-card-list__body {
  color: #231815;
}

.c-contents-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
    margin-bottom: 12vw;
  }
}

.c-contents-category-list__item {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__item {
    width: auto;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.c-contents-category-list__link {
  display: block;
  padding: 12px;
  border: 1px solid #edb826;
  background: #ffffff;
  color: #231815;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link {
    padding: 3.2vw;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: left;
  }
}
.c-contents-category-list__link:hover, .c-contents-category-list__link.is-on {
  background: #edb826;
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-list__link.is-page-link {
  position: relative;
  z-index: 0;
}
.c-contents-category-list__link.is-page-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #edb826;
  border-bottom: 1px solid #edb826;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link.is-page-link:before {
    right: 4vw;
    margin-top: -1.0666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.c-contents-category-list__link.is-page-link:hover::before, .c-contents-category-list__link.is-page-link.is-on::before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

.c-contents-sub-category-list {
  position: absolute;
  bottom: 1px;
  left: 10px;
  z-index: 1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: calc(100% - 20px);
  background: #ffffff;
  border: 1px solid #edb826;
  border-top: none;
  overflow: hidden;
  line-height: 0;
  -webkit-transition: line-height 0.1s ease-out;
  transition: line-height 0.1s ease-out;
}
@media only screen and (max-width: 768px) {
  .c-contents-sub-category-list {
    bottom: 0;
    left: 2.6666666667vw;
    width: calc(100% - 5.3333333333vw);
  }
}

.c-contents-sub-category-list__item {
  padding: 15px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  -webkit-transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out;
  transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out;
}
.c-contents-sub-category-list__item.is-close {
  height: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-sub-category-list__item {
    padding-left: 4vw;
    padding-right: 0;
  }
}

.c-contents-sub-category-list__link {
  display: inline-block;
  color: #231815;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out, opacity 0.1s linear, visibility 0.1s linear;
  transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out, opacity 0.1s linear, visibility 0.1s linear;
}
.c-contents-sub-category-list__link i {
  font-size: 1.875rem;
  color: #edb826;
  line-height: 0;
  -webkit-transition: line-height 0.1s ease-out;
  transition: line-height 0.1s ease-out;
}
.c-contents-sub-category-list__link:hover {
  color: #edb826;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .c-contents-sub-category-list__link i {
    font-size: 5.3333333333vw;
  }
}

.c-contents-category-list__link.is-on + .c-contents-sub-category-list {
  z-index: 2;
  line-height: 1.5;
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item.is-close {
  height: auto;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item {
    padding-top: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item > .c-contents-sub-category-list__link {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
  opacity: 1;
  visibility: visible;
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item > .c-contents-sub-category-list__link > i {
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item > .c-contents-sub-category-list__link {
    padding-top: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}

/***** カテゴリーリスト 02 *****/
.c-contents-category-type02-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type02-list {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
    margin-bottom: 12vw;
  }
}

.c-contents-category-type02-list__item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type02-list__item {
    width: auto;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    margin-bottom: 0.5333333333vw;
  }
}

.c-contents-category-type02-list__link {
  display: block;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #007ae5;
  background: #ffffff;
  color: #007ae5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type02-list__link {
    padding: 3.2vw;
    padding-left: 4vw;
    padding-right: 4vw;
    border-radius: 1.3333333333vw;
    text-align: left;
  }
}
.c-contents-category-type02-list__link:hover {
  background: rgba(0, 122, 229, 0.8);
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-type02-list__link.is-on {
  background: #007ae5;
  color: #ffffff;
  text-decoration: none;
}

/***** カテゴリーリスト 03 *****/
.c-contents-category-type03-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list {
    display: block;
    margin-bottom: 12vw;
  }
}

.c-contents-category-type03-list__item {
  border-right: 1px solid #dddddd;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list__item {
    margin-bottom: 0.2666666667vw;
    border-right: 0;
    border-bottom: 1px solid #dddddd;
    width: auto;
  }
}
.c-contents-category-type03-list__item:first-child {
  border-left: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list__item:first-child {
    border-top: 1px solid #dddddd;
    border-left: 0;
  }
}

.c-contents-category-type03-list__link {
  display: block;
  padding: 12px;
  background: #ffffff;
  color: #007ae5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list__link {
    padding: 3.2vw;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: left;
  }
}
.c-contents-category-type03-list__link:hover {
  background: rgba(0, 122, 229, 0.8);
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-type03-list__link.is-on {
  background: #007ae5;
  color: #ffffff;
  text-decoration: none;
}

/* カテゴリ用 */
.c-category-list-type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01 {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
  }
}

.c-category-list-type01__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__item {
    margin-bottom: 8vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    width: auto;
  }
}
.c-category-list-type01__item.is-top {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__item.is-top {
    margin-bottom: 8vw;
  }
}

.c-category-list-type01__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-category-list-type01__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-category-list-type01__img {
  position: relative;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__img {
    margin-bottom: 2.6666666667vw;
  }
}

.c-category-list-type01__ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.875rem;
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__ttl {
    font-size: 4.8vw;
  }
}

/* 内容用 */
.c-category-list-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02 {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
  }
}

.c-category-list-type02__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02__item {
    margin-bottom: 8vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    width: auto;
  }
}

.c-category-list-type02__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-category-list-type02__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c-category-list-type02__link:hover {
  text-decoration: none;
}

.c-category-list-type02-txt {
  position: relative;
  padding: 30px 15px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02-txt {
    padding: 8vw 4vw;
  }
}

.c-category-list-type02-txt__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02-txt__ttl {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.c-category-list-type02-txt__category {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 5px 15px;
  min-width: 120px;
  background: #edb826;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02-txt__category {
    top: -4vw;
    right: -0.2666666667vw;
    padding: 1.3333333333vw 4vw;
    min-width: 32vw;
    font-size: 3.2vw;
  }
}

.c-category-list-type02-txt__body {
  color: #231815;
}

.c-check-list__item {
  margin-bottom: 15px;
  margin-right: 30px;
}
.c-check-list__item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-check-list__item {
    margin-right: 0;
    margin-bottom: 4vw;
  }
}

/* メインビジュアル */
.p-main-visual-wrap {
  position: relative;
}

.p-main-visual-link {
  position: relative;
}

.p-main-visual__img {
  position: relative;
}
.p-main-visual__img img {
  width: 100%;
}

.p-main-visual__link {
  color: #fff;
}
.p-main-visual__link:hover {
  color: #fff;
  text-decoration: none;
}
.p-main-visual__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.p-main-visual-txt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.p-main-visual-txt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.p-main-visual-txt__txt {
  display: inline-block;
  letter-spacing: 0.3em;
  font-size: 3.5rem;
  line-height: 1.25;
}
@media only screen and (max-width: 1230px) {
  .p-main-visual-txt__txt {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__txt {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-main-visual-txt__txt {
    font-size: 7.4666666667vw;
  }
}

.p-main-visual-txt__min {
  margin-top: 5px;
  color: #fff;
  letter-spacing: 0.25em;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .p-main-visual-txt__min {
    font-size: 3.2vw;
  }
}

.p-main-visual-scroll {
  position: absolute;
  bottom: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1230px) {
  .p-main-visual-scroll {
    bottom: 115px;
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual-scroll {
    bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-main-visual-scroll {
    bottom: 16vw;
  }
}

.p-main-visual-scroll__btn {
  display: block;
  width: 90px;
  height: 90px;
  -webkit-animation: scroll 2.5s infinite;
          animation: scroll 2.5s infinite;
}
@media only screen and (max-width: 768px) {
  .p-main-visual-scroll__btn {
    width: 12vw;
    height: 12vw;
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  25% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
  75% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  25% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
  75% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-ttl-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .c-ttl-main {
    margin-bottom: 8vw;
  }
}

.c-ttl-main__en {
  display: inline-block;
  font-size: 2.5rem;
  color: #525352;
}
@media only screen and (max-width: 1230px) {
  .c-ttl-main__en {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-ttl-main__en {
    font-size: 6.4vw;
  }
}

.c-ttl-main__ja {
  display: inline-block;
  margin-top: 15px;
  margin-left: 15px;
  color: #525352;
}
@media only screen and (max-width: 1230px) {
  .c-ttl-main__ja {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-ttl-main__ja {
    margin-top: 2.6666666667vw;
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}

.c-ttl-sub {
  position: relative;
  margin-bottom: 45px;
  font-size: 1.5rem;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub {
    margin-bottom: 8vw;
    font-size: 6.4vw;
  }
}
.c-ttl-sub.is-left {
  text-align: left;
}

.c-ttl-sub-s {
  margin-bottom: 30px;
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub-s {
    margin-bottom: 5.3333333333vw;
    font-size: 4.8vw;
  }
}

.c-ttl-sub-ss {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub-ss {
    margin-bottom: 4vw;
    font-size: 4.2666666667vw;
  }
}

.c-lead {
  margin-bottom: 45px;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-lead {
    margin-bottom: 12vw;
    font-size: 4.8vw;
  }
}

/***** 下層ヘッダービジュアル *****/
.c-second-header-visual {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  background-position: center;
}

.c-second-header-visual-bg {
  position: relative;
  padding: 0;
  padding-top: 100px;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-bg {
    height: 40vw;
    padding-top: 13.3333333333vw;
  }
}

.c-second-header-visual-ttl {
  font-weight: bold;
  font-size: 2.8125rem;
  line-height: 2.8125rem;
  color: #ffffff;
}
.c-second-header-visual-ttl span {
  display: block;
  margin-top: 15px;
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-ttl {
    font-size: 8vw;
    line-height: 8vw;
  }
  .c-second-header-visual-ttl span {
    margin-top: 4vw;
    font-size: 4vw;
    line-height: 4vw;
  }
}

/*************** お問合せ ***************/
.p-contact-top-contents {
  margin-top: 90px;
}
@media only screen and (max-width: 990px) {
  .p-contact-top-contents {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-top-contents {
    margin-top: 12vw;
  }
}

.p-contact-ttl-wrap {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1230px) {
  .p-contact-ttl-wrap {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 990px) {
  .p-contact-ttl-wrap {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-ttl-wrap {
    margin-bottom: 12vw;
  }
}

.p-contact-top-ttl {
  font-size: 2.25rem;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 1230px) {
  .p-contact-top-ttl {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-top-ttl {
    font-size: 4.8vw;
  }
}

.p-contact-body {
  margin-top: 30px;
  font-size: 1.25rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-contact-body {
    margin-top: 8vw;
    font-size: 4.8vw;
    text-align: left;
  }
}

.p-contact-top-wrap {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-contact-top-company {
  margin-bottom: 15px;
  font-size: 2.25rem;
}
@media only screen and (max-width: 1230px) {
  .p-contact-top-company {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-top-company {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.p-contact-top-address,
.p-contact-top-info {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-contact-top-address,
  .p-contact-top-info {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-top-address,
  .p-contact-top-info {
    font-size: 4.2666666667vw;
  }
}

.p-contact-top-tel-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-contact-top-tel-list {
    display: block;
  }
}

.p-contact-top-tel-list__item {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-contact-top-tel-list__item {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-top-tel-list__item {
    font-size: 4.2666666667vw;
  }
}
.p-contact-top-tel-list__item:first-child {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .p-contact-top-tel-list__item:first-child {
    margin-right: 0;
  }
}
.p-contact-top-tel-list__item span {
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .p-contact-top-tel-list__item span {
    margin-left: 4vw;
  }
}

.p-contact-top-tel-list__link {
  display: inline-block;
  color: #231815;
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .p-contact-top-tel-list__link {
    margin-left: 4vw;
  }
}

.p-contact-body-caution {
  margin-top: 15px;
  font-weight: bold;
  color: #ff0000;
}
@media only screen and (max-width: 768px) {
  .p-contact-body-caution {
    margin-top: 4vw;
  }
}

.p-contact-complete {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete {
    margin-top: 8vw;
    text-align: left;
  }
}

.p-contact-complete_icon {
  margin-bottom: 30px;
  font-size: 72px;
  color: #aaaaaa;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete_icon {
    margin-bottom: 8vw;
    font-size: 19.2vw;
  }
}

/***** フォームテーブル *****/
.p-form-list {
  margin-bottom: 30px;
}
.p-form-list .c-check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-form-list {
    margin-bottom: 8vw;
  }
  .p-form-list .c-check-list {
    display: block;
    margin-top: 2.6666666667vw;
  }
}

.p-form-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .p-form-list__item {
    display: block;
    margin-bottom: 8vw;
  }
}
.p-form-list__item.is-confirm {
  margin-bottom: 0;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 768px) {
  .p-form-list__item.is-confirm {
    padding: 4vw 0;
  }
}
.p-form-list__item.is-confirm:first-child {
  border-top: 1px solid #cccccc;
}

.p-form-list__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 315px;
  color: #525352;
}
@media only screen and (max-width: 1230px) {
  .p-form-list__ttl {
    width: 285px;
  }
}
@media only screen and (max-width: 990px) {
  .p-form-list__ttl {
    width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .p-form-list__ttl {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 4vw;
    padding: 0;
    width: auto;
    min-height: inherit;
    background: transparent;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-form-list__ttl.is-confirm {
  min-height: inherit;
}
@media only screen and (max-width: 768px) {
  .p-form-list__ttl.is-confirm {
    font-size: 3.2vw;
    color: #777777;
  }
}

.p-form-list__ttl-s {
  margin-bottom: 3px;
}
@media only screen and (max-width: 768px) {
  .p-form-list__ttl-s {
    margin-bottom: 0.8vw;
  }
}

.p-form-list__name {
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: normal;
}
@media only screen and (max-width: 1230px) {
  .p-form-list__name {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-form-list__name {
    font-size: 4.8vw;
  }
  .p-form-list__name.is-confirm {
    font-size: 3.2vw;
  }
}

.form-required {
  margin-top: 8px;
  margin-left: 30px;
  padding: 2px 15px;
  border-radius: 3px;
  font-size: 12px;
  background: #e86b6a;
  color: #ffffff;
}
@media only screen and (max-width: 1230px) {
  .form-required {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 990px) {
  .form-required {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .form-required {
    margin-top: 0;
    padding: 0.5333333333vw 4vw;
    border-radius: 0.8vw;
    font-size: 3.2vw;
  }
}

.p-form-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-form-list__body.is-confirm {
  color: #525352;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-form-list__body.is-confirm {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-form-list__body.is-confirm {
    font-size: 4.8vw;
  }
}
.p-form-list__body.is-mail-confirm {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-form-list__body.is-mail-confirm {
    font-size: 4.8vw;
  }
}

.p-form-list__box {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .p-form-list__box {
    margin-bottom: 2.6666666667vw;
  }
}

.p-form-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-form-btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-form-btn-box__item {
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .p-form-btn-box__item {
    margin-left: 4vw;
    margin-right: 4vw;
    margin-bottom: 8vw;
  }
  .p-form-btn-box__item.is-next {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-textarea-box {
  padding: 15px;
  height: 150px;
}
@media only screen and (max-width: 768px) {
  .p-textarea-box {
    padding: 4vw;
    height: 48vw;
  }
}

.text-box-area,
.text-box-tsubo {
  position: relative;
  width: 210px;
}
@media only screen and (max-width: 768px) {
  .text-box-area,
  .text-box-tsubo {
    width: 40vw;
  }
}

.text-box-unit {
  display: inline-block;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .text-box-unit {
    font-size: 4.8vw;
  }
}
.text-box-unit.is-margin {
  margin-right: 30px;
}

.p-contact-confirm-body {
  margin: 45px 0;
  padding: 30px;
  background-color: #f1efec;
}
@media only screen and (max-width: 768px) {
  .p-contact-confirm-body {
    margin: 12vw 0;
    padding: 8vw 4vw;
  }
}

.c-btn.is-form-send, .c-btn.is-form-back {
  min-width: 250px;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-form-send, .c-btn.is-form-back {
    min-width: 66.6666666667vw;
  }
}

.contact-privacy {
  margin-bottom: 90px;
  padding: 0 60px;
  height: 180px;
  overflow-y: scroll;
  background: #f1efec;
}
@media only screen and (max-width: 768px) {
  .contact-privacy {
    margin-bottom: 16vw;
    padding: 0 8vw;
    height: 40vw;
  }
}

.p-privacy-main-ttl {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-privacy-main-ttl {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-privacy-main-ttl {
    margin-top: 8vw;
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.p-privacy-body {
  margin-bottom: 60px;
  color: #231815;
}
@media only screen and (max-width: 1230px) {
  .p-privacy-body {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .p-privacy-body {
    margin-bottom: 8vw;
  }
}

.p-privacy-box {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .p-privacy-box {
    margin-bottom: 12vw;
  }
}

.p-privacy-ttl {
  margin-bottom: 15px;
  color: #525352;
  font-size: 1.375rem;
  font-weight: normal;
}
@media only screen and (max-width: 1230px) {
  .p-privacy-ttl {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-privacy-ttl {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.p-privacy-txt {
  color: #525352;
  font-size: 1.125rem;
}
@media only screen and (max-width: 1230px) {
  .p-privacy-txt {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-privacy-txt {
    font-size: 4.2666666667vw;
  }
}

/***** TOP TOPICS *****/
.p-top-main-wrap {
  position: relative;
}

.p-top-sticky-instagram-wrap {
  position: absolute;
  top: 0;
  height: 100%;
}

.p-top-sticky-instagram {
  position: sticky;
  top: 0;
  z-index: 99;
  padding-top: 300px;
  padding-left: 30px;
}
@media only screen and (max-width: 1230px) {
  .p-top-sticky-instagram {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-sticky-instagram {
    padding-top: 210px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sticky-instagram {
    padding-top: 24vw;
    padding-left: 2vw;
  }
}

.p-top-sticky-instagram__link {
  display: inline-block;
  width: 4.6875rem;
  height: 4.6875rem;
  line-height: 4.6875rem;
  text-align: center;
  color: #525352;
  font-size: 3.125rem;
  border-radius: 50%;
  background-color: #fff;
}
@media only screen and (max-width: 1230px) {
  .p-top-sticky-instagram__link {
    width: 3.75rem;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 2.8125rem;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-sticky-instagram__link {
    width: 2.8125rem;
    height: 2.8125rem;
    line-height: 2.8125rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sticky-instagram__link {
    width: 12vw;
    height: 12vw;
    line-height: 12vw;
    font-size: 8.5333333333vw;
  }
}

.p-top-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 780px;
}
@media only screen and (max-width: 1230px) {
  .p-top-about {
    height: 405px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about {
    height: 72vw;
  }
}

.p-top-about-instagram {
  position: absolute;
  top: 300px;
  left: 45px;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-instagram {
    top: 150px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-about-instagram {
    top: 210px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-instagram {
    display: none;
  }
}

.p-top-about-instagram__link {
  color: #525352;
  font-size: 3.125rem;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-instagram__link {
    font-size: 2.8125rem;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-about-instagram__link {
    font-size: 2rem;
  }
}

.p-top-about-wrap {
  margin-bottom: 120px;
  text-align: center;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-wrap {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-wrap {
    margin-bottom: 16vw;
  }
}

.p-top-about-txt {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-txt {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-txt {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
.p-top-about-txt.is-margin {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-txt.is-margin {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-txt.is-margin {
    margin-bottom: 0;
  }
}

.p-top-about-btn-wrap {
  text-align: center;
}

.p-top-about-btn-inner {
  position: relative;
  margin: 0 auto;
  padding-right: 30px;
  padding-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .p-top-about-btn-inner {
    padding-right: 8vw;
    padding-bottom: 8vw;
  }
}
.p-top-about-btn-inner:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 58px;
  border-radius: 100%;
  background: rgba(237, 184, 38, 0.6);
}
@media only screen and (max-width: 1230px) {
  .p-top-about-btn-inner:before {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-btn-inner:before {
    right: 4vw;
    bottom: 2.6666666667vw;
    width: 9.6vw;
    height: 9.6vw;
  }
}

.p-top-about-btn {
  display: inline-block;
  position: relative;
  min-width: 235px;
  color: #525352;
  font-size: 1.5rem;
  text-align: left;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-btn {
    min-width: 165px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-btn {
    min-width: 30.6666666667vw;
    font-size: 3.2vw;
  }
}
.p-top-about-btn:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 225px;
  background: #525352;
}
@media only screen and (max-width: 1230px) {
  .p-top-about-btn:before {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-btn:before {
    width: 26.6666666667vw;
  }
}
.p-top-about-btn:after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 13px;
  height: 1px;
  width: 50px;
  background: #525352;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media only screen and (max-width: 1230px) {
  .p-top-about-btn:after {
    right: -3px;
    bottom: 11px;
    width: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-about-btn:after {
    right: -0.8vw;
    bottom: 2.4vw;
    width: 9.3333333333vw;
  }
}

/***** TOP 売りたい方 *****/
.p-top-sell {
  position: relative;
  padding: 60px 0;
  background-color: #f1efec;
  overflow: hidden;
  min-height: 490px;
}
@media only screen and (max-width: 1230px) {
  .p-top-sell {
    min-height: 400px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-sell {
    padding: 45px 0;
    min-height: 310px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sell {
    padding-top: 0;
    padding-bottom: 12vw;
  }
}
.p-top-sell .c-btn-more {
  margin-top: 0;
}

.p-top-sell-img {
  position: absolute;
  top: 0;
  right: calc(50% - 15px);
  width: 735px;
}
@media only screen and (max-width: 1230px) {
  .p-top-sell-img {
    right: 50%;
    width: 600px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-sell-img {
    right: calc(50% + 15px);
    width: 465px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sell-img {
    position: static;
    margin-bottom: 4vw;
    padding: 0 4vw;
    width: auto;
  }
}

.p-top-sell-contents {
  margin: 100px 0 0 auto;
  width: calc(50% - 90px);
}
@media only screen and (max-width: 1230px) {
  .p-top-sell-contents {
    margin-top: 60px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-sell-contents {
    margin-top: 35px;
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sell-contents {
    margin-top: 0;
    width: auto;
  }
}

.p-top-sell-ttl {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.p-top-sell-ttl.is-right {
  text-align: right;
}
@media only screen and (max-width: 990px) {
  .p-top-sell-ttl {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sell-ttl {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.p-top-sell-txt {
  margin-bottom: 60px;
  font-size: 1.25rem;
  line-height: 2.5;
}
.p-top-sell-txt.is-right {
  text-align: right;
}
@media only screen and (max-width: 1230px) {
  .p-top-sell-txt {
    margin-bottom: 45px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-sell-txt {
    margin-bottom: 15px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-sell-txt {
    margin-bottom: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}

/***** TOP 買いたい方 *****/
.p-top-buy {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  min-height: 490px;
}
@media only screen and (max-width: 1230px) {
  .p-top-buy {
    min-height: 400px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-buy {
    padding: 45px 0;
    min-height: 310px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-buy {
    padding-top: 0;
    padding-bottom: 12vw;
  }
}
@media only screen and (min-width: 1351px) {
  .p-top-buy .u-wide-container {
    width: 1350px;
  }
}
.p-top-buy .c-btn-more {
  margin-top: 0;
}

.p-top-buy-img {
  position: absolute;
  top: 0;
  left: calc(50% + 15px);
  width: 735px;
}
@media only screen and (max-width: 1230px) {
  .p-top-buy-img {
    left: 50%;
    width: 600px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-buy-img {
    left: calc(50% + 15px);
    width: 465px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-buy-img {
    position: static;
    margin-bottom: 4vw;
    padding: 0 4vw;
    width: auto;
  }
}

.p-top-buy-contents {
  margin-top: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1230px) {
  .p-top-buy-contents {
    margin-top: 60px;
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 990px) {
  .p-top-buy-contents {
    margin-top: 35px;
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .p-top-buy-contents {
    margin-top: 0;
    width: auto;
  }
}

.p-top-buy-ttl {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 990px) {
  .p-top-buy-ttl {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-buy-ttl {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.p-top-buy-txt {
  margin-bottom: 60px;
  font-size: 1.25rem;
  line-height: 2.5;
}
@media only screen and (max-width: 1230px) {
  .p-top-buy-txt {
    margin-bottom: 45px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-buy-txt {
    margin-bottom: 15px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-buy-txt {
    margin-bottom: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
@media only screen and (max-width: 1230px) {
  .p-top-buy-txt .u-pc-only {
    display: none;
  }
}

/***** TOP おすすめ物件/物件アーカイブ *****/
.p-top-estate {
  overflow: hidden;
}

.p-top-estate-wrap {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1380px;
}

.p-top-estate-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -30px;
}
@media only screen and (max-width: 1230px) {
  .p-top-estate-list {
    margin: 0 -15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-list {
    display: block;
    margin: 0;
  }
}

.p-top-estate-list__item {
  padding: 0 30px;
  width: 33.333%;
}
@media only screen and (max-width: 1230px) {
  .p-top-estate-list__item {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-list__item {
    margin-bottom: 8vw;
    padding: 0;
    width: auto;
  }
}

.p-top-estate-list__link {
  color: #525352;
}
.p-top-estate-list__link:hover {
  text-decoration: none;
}
.p-top-estate-list__link:hover img {
  opacity: 0.8;
}

.p-top-estate-list__img {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .p-top-estate-list__img {
    margin-bottom: 4vw;
  }
}
.p-top-estate-list__img.is-sold {
  position: relative;
}
.p-top-estate-list__img.is-sold:before {
  content: "Sold";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 5px 10px;
  width: 95px;
  height: 95px;
  background: rgba(237, 184, 38, 0.8);
  font-size: 1.25rem;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 2;
}
@media only screen and (max-width: 1230px) {
  .p-top-estate-list__img.is-sold:before {
    width: 65px;
    height: 65px;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-list__img.is-sold:before {
    right: 1.3333333333vw;
    bottom: 1.3333333333vw;
    padding: 1.3333333333vw 2.6666666667vw;
    width: 17.3333333333vw;
    height: 17.3333333333vw;
    font-size: 3.2vw;
  }
}

.p-top-estate-list__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top-estate-list__ttl {
  margin-right: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #525352;
  font-size: 1.125rem;
}
@media only screen and (max-width: 1230px) {
  .p-top-estate-list__ttl {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-list__ttl {
    margin-right: 4vw;
    font-size: 4.8vw;
  }
}
.p-top-estate-list__ttl span {
  display: block;
  font-size: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .p-top-estate-list__ttl span {
    font-size: 3.2vw;
  }
}

.p-top-estate-btn-inner {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-estate-btn-inner:before {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -15px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: rgba(237, 184, 38, 0.6);
}
@media only screen and (max-width: 768px) {
  .p-top-estate-btn-inner:before {
    right: -2.6666666667vw;
    bottom: -2.6666666667vw;
    width: 8vw;
    height: 8vw;
  }
}

.p-top-estate-btn {
  display: inline-block;
  position: relative;
  min-width: 115px;
  color: #525352;
  font-size: 0.75rem;
  text-align: left;
}
@media only screen and (max-width: 990px) {
  .p-top-estate-btn {
    min-width: 65px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-btn {
    min-width: 24vw;
    font-size: 3.2vw;
  }
}
.p-top-estate-btn:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 110px;
  background: #525352;
}
@media only screen and (max-width: 990px) {
  .p-top-estate-btn:before {
    width: 55px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-btn:before {
    width: 21.3333333333vw;
  }
}
.p-top-estate-btn:after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 7px;
  height: 1px;
  width: 25px;
  background: #525352;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media only screen and (max-width: 990px) {
  .p-top-estate-btn:after {
    bottom: 4px;
    width: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-estate-btn:after {
    right: -0.5333333333vw;
    bottom: 1.6vw;
    width: 6.6666666667vw;
  }
}

/***** TOP NEWS *****/
.p-top-news-list__item {
  padding-top: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 768px) {
  .p-top-news-list__item {
    padding-top: 4vw;
    padding-bottom: 1.3333333333vw;
  }
}

.p-top-news-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #525352;
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  .p-top-news-list__link {
    padding: 0;
  }
}
.p-top-news-list__link:hover {
  text-decoration: none;
}
.p-top-news-list__link:hover .p-top-news-list__ttl {
  text-decoration: underline;
}

.p-top-news-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  min-width: 260px;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list-head {
    min-width: 225px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-news-list-head {
    margin-right: 0;
    min-width: inherit;
  }
}

.p-top-news-list__date {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .p-top-news-list__date {
    margin-right: 4vw;
    font-size: 3.7333333333vw;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-news-list__category {
    font-size: 3.7333333333vw;
  }
}
.p-top-news-list__category span {
  display: block;
  color: #525352;
}

.p-top-news-list__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .p-top-news-list__ttl {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    margin-top: 2.6666666667vw;
    width: 100%;
    font-size: 4.2666666667vw;
  }
}

/*************** ボトム バナー ***************/
.l-bottom-bnr {
  padding-top: 60px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .l-bottom-bnr {
    padding-top: 8vw;
    padding-bottom: 16vw;
  }
}

.l-bottom-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -45px;
  margin-right: -45px;
}
@media only screen and (max-width: 1230px) {
  .l-bottom-bnr-list {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media only screen and (max-width: 768px) {
  .l-bottom-bnr-list {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.l-bottom-bnr-list__item {
  margin-bottom: 30px;
  padding-left: 45px;
  padding-right: 45px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1230px) {
  .l-bottom-bnr-list__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .l-bottom-bnr-list__item {
    margin-bottom: 8vw;
    padding-left: 0;
    padding-right: 0;
    width: auto;
    text-align: center;
  }
}

.l-bottom-bnr-list__img {
  margin-bottom: 5px;
  border: 1px solid #525352;
}
@media only screen and (max-width: 768px) {
  .l-bottom-bnr-list__img {
    margin-bottom: 1.3333333333vw;
  }
}

.l-bottom-bnr-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-bottom-bnr-list__body {
    text-align: left;
  }
}

/*************** お問合せ ***************/
.p-top-contact-top-contents {
  margin-top: 120px;
}
@media only screen and (max-width: 1230px) {
  .p-top-contact-top-contents {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-contact-top-contents {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-contents {
    margin-top: 12vw;
  }
}

.p-top-contact-top-ttl {
  margin-bottom: 120px;
  font-size: 2.25rem;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 1230px) {
  .p-top-contact-top-ttl {
    margin-bottom: 90px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-contact-top-ttl {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-ttl {
    margin-bottom: 12vw;
    font-size: 4.8vw;
  }
}

.p-top-contact-top-wrap {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-wrap {
    margin: 0 8vw;
    width: auto;
  }
}

.p-top-contact-top-company {
  margin-bottom: 15px;
  font-size: 2.25rem;
}
@media only screen and (max-width: 1230px) {
  .p-top-contact-top-company {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-company {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.p-top-contact-top-address {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-top-contact-top-address {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-address {
    font-size: 4.2666666667vw;
  }
}

.p-top-contact-top-tel-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-tel-list {
    display: block;
  }
}

.p-top-contact-top-tel-list__item {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-top-contact-top-tel-list__item {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-tel-list__item {
    font-size: 4.2666666667vw;
  }
}
.p-top-contact-top-tel-list__item:first-child {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-tel-list__item:first-child {
    margin-right: 0;
  }
}
.p-top-contact-top-tel-list__item span {
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-tel-list__item span {
    margin-left: 4vw;
  }
}

.p-top-contact-top-tel-list__link {
  display: inline-block;
  color: #231815;
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .p-top-contact-top-tel-list__link {
    margin-left: 4vw;
  }
}