/* Articles */

.m-content * {
  box-sizing: border-box;
}

.articles-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.articles {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #edf6fa;
}

.articles__header {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: -webkit-linear-gradient(left, #03439b, #009ce5, #b0d4eb);
  background: linear-gradient(to right, #03439b, #009ce5, #b0d4eb);
  padding: 20px 20px 20px 30px;
  color: #fff;
  gap: 30px;
}

.articles__header p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .articles__header {
    flex-direction: column;
    padding: 25px 20px 20px;
    gap: 20px;
  }
}

.articles__header-text-area {
  width: 100%;
  margin-top: 4px;
}

.articles__header-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 16px;
}

.articles__header-image {
  max-width: 291px;
}

@media screen and (max-width: 767px) {
  .articles__header-image {
    max-width: 100%;
  }
}

.articles__header-image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .articles__header-title {
    font-size: 22px;
    margin-top: 8px;
    margin-bottom: 10px;
  }
}

.articles__header-text-area p {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .articles__header-text-area p {
    font-size: 12px;
  }
}

.articles__body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .articles__body {
    padding: 15px 10px;
    gap: 15px;
  }
}

.articles__card {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {
  .articles__card {
    padding: 15px;
    gap: 15px;
  }
}

.articles__card-text {
  display: flex;
  flex-direction: column;
}


.articles__card-title {
  padding: 8px 20px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  background: -webkit-linear-gradient(left, #009ce5, #03439b);
  background: linear-gradient(to right, #009ce5, #03439b);
}

@media screen and (max-width: 767px) {
  .articles__card-title {
    padding: 8px 10px;
    font-size: 16px;
  }
}

.articles__card-text p {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .articles__card-text p {
    font-size: 12px;
  }
}

/* Tags */
.tag {
  background-color: #fff;
  width: fit-content;
  color: #333333;
  font-size: 14px;
  padding: 4px 8px;
}

.tag--pink {
  background-color: #facfec;
}
.tag--orange {
  background-color: #f2dfb6;
}
.tag--yellow {
  background-color: #f2efaa;
}
.tag--green {
  background-color: #d9f2b6;
}
.tag--dark-green {
  background-color: #ace5c4;
}
.tag--blue {
  background-color: #b0e9eb;
}
.tag--dark-blue {
  background-color: #c8d9fa;
}
.tag--purple {
  background-color: #d7bcf5;
}

@media screen and (max-width: 767px) {
  .tag {
    font-size: 14px;
    padding: 0px 8px;
  }
}

/* Index */

.articles__card-index-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.articles__card--index {
  gap: 0px;
  padding: 24px 24px 40px 24px;
}

.m-linklist--index > li > a {
  font-weight: bold;
}

.m-linklist--index > li > a:after {
  left: 5px;
  top: 7px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.m-linklist--index > li > ul {
  margin-left: 24px;
}

.m-linklist--index > li > ul > li > a {
  text-decoration: none;
  font-size: 14px;
}

.m-linklist--index > li > ul > li > a:hover {
  text-decoration: underline;
}

.m-linklist--index > li > a:before {
  transition: none;
}

@media screen and (max-width: 767px) {
  .articles__card-index-title {
    font-size: 14px;
  }

  .articles__card--index {
    gap: 0px;
    padding: 22px 15px;
  }

  .m-linklist--index > li > a {
    font-size: 13px;
    padding-left: 24px;
  }

  .m-linklist--index > li > a:before {
    top: 3px;
    width: 14px;
    height: 14px;
  }

  .m-linklist--index > li > a:after {
    top: 6px;
    left: 4px;
  }

  .m-linklist--index > li > ul > li > a {
    font-size: 12px;
  }
}

/* Author profile */

.author-profile {
  display: flex;
  width: 100%;
  padding: 30px 20px 30px 25px;
  border: 1px solid #cccccc;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .author-profile {
    padding: 15px;
  }
}

.author-profile__left {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.author-profile__name-container {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .author-profile__name-container {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-bottom: none;
    padding-bottom: none;
    border-bottom: none;
  }
}

.author-profile__left-image {
  display: none;
  width: 184px;
  height: 184px;
}

.author-profile__left-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .author-profile__left-image {
    display: none;
    width: 92px;
    height: 92px;
  }

  .author-profile__left-image {
    display: block;
  }
}

.author-profile__name {
  font-size: 18px;
  font-weight: bold;
}

.author-profile__title {
  font-weight: normal;
  font-size: 14px;
}

.author-profile__name span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 8px;
}

@media screen and (max-width: 767px) {
  .author-profile__name {
    font-size: 18px;
  }
  .author-profile__title {
    font-size: 14px;
  }
  .author-profile__name span {
    font-size: 14px;
  }
}

.author-profile__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.author-profile__description p {
  margin: 0;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .author-profile__description p {
    margin: 0;
    font-size: 12px;
  }
}

.author-profile__right-image {
  width: 230px;
  height: 230px;
  flex-shrink: 0;
}

.author-profile__right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .author-profile__right-image {
    display: none;
  }
}

/* Tabs */

.horizontal-tabs {
  margin: 45px 0px 16px 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .horizontal-tabs {
    margin: 16px 0px;
  }
}

.horizontal-tabs__tab {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.horizontal-tabs__tab:not(.horizontal-tabs__tab--selected):hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .horizontal-tabs__tab {
    height: 54px;
    font-size: 11px;
  }
}

.horizontal-tabs__tab--selected {
  height: 68px;
  cursor: default;
}

@media screen and (max-width: 767px) {
  .horizontal-tabs__tab--selected {
    height: 64px;
  }
}

.horizontal-tabs__tab:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 20px solid red;
  z-index: 1;
  filter: drop-shadow(3px 2px 2px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 767px) {
  .horizontal-tabs__tab:not(:last-child)::after {
    right: -7px;
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-left: 7px solid red;
  }
}

.horizontal-tabs__tab--selected:not(:last-child)::after {
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
}

@media screen and (max-width: 767px) {
  .horizontal-tabs__tab--selected:not(:last-child)::after {
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
  }
}

.horizontal-tabs__tab:nth-child(1) {
  background-color: #009ce5;
}

.horizontal-tabs__tab:nth-child(1)::after {
  border-left-color: #009ce5;
}

.horizontal-tabs__tab:nth-child(1):not(.horizontal-tabs__tab--selected):hover {
  background-color: #4dbaed;
}

.horizontal-tabs__tab:nth-child(1):not(
    .horizontal-tabs__tab--selected
  ):hover::after {
  border-left-color: #4dbaed;
}

.horizontal-tabs__tab:nth-child(2) {
  background-color: #018dd9;
}

.horizontal-tabs__tab:nth-child(2)::after {
  border-left-color: #018dd9;
}

.horizontal-tabs__tab:nth-child(2):not(.horizontal-tabs__tab--selected):hover {
  background-color: #4dafe4;
}

.horizontal-tabs__tab:nth-child(2):not(
    .horizontal-tabs__tab--selected
  ):hover::after {
  border-left-color: #4dafe4;
}

.horizontal-tabs__tab:nth-child(3) {
  background-color: #0171c1;
}

.horizontal-tabs__tab:nth-child(3)::after {
  border-left-color: #0171c1;
}

.horizontal-tabs__tab:nth-child(3):not(.horizontal-tabs__tab--selected):hover {
  background-color: #4d9bd3;
}

.horizontal-tabs__tab:nth-child(3):not(
    .horizontal-tabs__tab--selected
  ):hover::after {
  border-left-color: #4d9bd3;
}

.horizontal-tabs__tab:nth-child(4) {
  background-color: #0255aa;
}

.horizontal-tabs__tab:nth-child(4)::after {
  border-left-color: #0255aa;
}

.horizontal-tabs__tab:nth-child(4):not(.horizontal-tabs__tab--selected):hover {
  background-color: #4d88c3;
}

.horizontal-tabs__tab:nth-child(4):not(
    .horizontal-tabs__tab--selected
  ):hover::after {
  border-left-color: #4d88c3;
}

.horizontal-tabs__tab:nth-child(5) {
  background-color: #03439b;
}

.horizontal-tabs__tab:nth-child(5):not(.horizontal-tabs__tab--selected):hover {
  background-color: #4e7bb9;
}

.tab-content {
  display: flex;
  flex-direction: column;
}

.horizontal-tabs-tab__text {
  position: relative;
  display: flex;
  flex-direction: row;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .horizontal-tabs-tab__text {
    flex-direction: column;
    align-items: center;
    line-height: 13px;
  }
}

.horizontal-tabs-tab__text::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -15px;
  margin-top: -5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.horizontal-tabs__tab--selected .horizontal-tabs-tab__text::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .horizontal-tabs-tab__text::before {
    display: none;
  }

  .horizontal-tabs__tab::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 8px;
    margin-top: -5px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .horizontal-tabs__tab--selected::before {
    display: none;
  }
}

/* Cards */
.cards-container {
  display: flex;
  padding: 20px;
  background-color: #edf6fa;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  column-gap: 12px;
  row-gap: 16px;
}

.cards-container--animation {
  animation: fadeIn 300ms ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .cards-container {
    column-gap: 10px;
    row-gap: 12px;
    padding: 10px;
  }
}

a.card {
  text-decoration: none;
}

.card {
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  box-sizing: border-box;
  padding: 8px 8px 20px 8px;
  width: calc(33.33% - 8px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card--hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .card {
    width: calc(50% - 5px);
    padding: 5px 5px 10px 5px;
  }
}

.card__tag {
  position: absolute;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .card__tag > .tag {
    font-size: 10px;
    padding: 0px 4px;
  }
}

.card__image {
  width: 100%;
  height: 169px;
}

@media screen and (max-width: 767px) {
  .card__image {
    height: 80px;
  }
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__title {
  margin: 16px 0px 12px 0px;
  padding: 0px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  line-height: 23px;
  height: 48px;
}

@media screen and (max-width: 767px) {
  .card__title {
    margin: 9px 0px 11px 0px;
    font-size: 11px;
    height: 40px;
    line-height: 15px;
  }

  .card__title--smaller-sp {
    font-size: 9px;
  }
}

.card__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #029de5;
  border-right: 2px solid #029de5;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 50%;
  transform: rotate(45deg) translateY(calc(-50% - 3px));
}

.card__text {
  font-size: 14px;
  color: #000;
  text-align: left;
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  .card__text {
    font-size: 10px;
    line-height: 15px;
  }
}

/* link */
.back_index {
  /* display: inline; */
  margin-left: 15px;
  text-decoration: none !important;
}
.back_index:hover {
  text-decoration: underline !important;
}

/* バナー画像 */
.houjin-banner {
  width: auto;
}

@media screen and (max-width: 767px) {
  .houjin-banner {
    width: 100%;
  }
}

/* 小見出しのマージン調整 */
.articles__card-text > .m-heading3-s:first-child {
  margin-top: 0;
}

/* おすすめ商品の追加部品 */
.m-panel .add-area {
  border-top: 1px dashed #ccc;
  padding: 10px 0 10px 20px;
}

.add-area .add-area__ttl {
  position: relative;
  font-size: 14px;
  padding-left: 50px;
}

.add-area .add-area__ttl::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 32px;
  height: 28px;
  background: url(/resources/img/icon_woman.svg) no-repeat 0 0;
}

.add-area .add-area__ttl > span {
  font-size: 16px;
  font-weight: bold;
}

/* CVエリアのマージン調整 */
.houjin-cv-area .m-btnarea-ac {
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
  .houjin-cv-area .m-btnarea-ac {
    margin: 40px -15px 0;
  }
}

/* Stages */
.stages-container {
  display: flex;
  flex-direction: column;
  background-color: #edf6fa;
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .stages-container {
    padding: 0px;
  }
}

.stage {
  display: flex;
  flex-direction: row;
  border-top: 8px solid #000;
}

.stage--a,
.stage--a .stage__label::after {
  border-top-color: #009ce5;
}

.stage--a .stage__label {
  background-color: #009ce5;
}

.stage--a .stage__pickups-title,
.stage--a .stage__description-list {
  color: #009ce5;
}

.stage--a .stage__pickups-bottom {
  background-color: #7fcdf2;
}

.stage--b,
.stage--b .stage__label::after {
  border-top-color: #018dd9;
}

.stage--b .stage__label {
  background-color: #018dd9;
}

.stage--b .stage__pickups-title,
.stage--b .stage__description-list {
  color: #018dd9;
}

.stage--b .stage__pickups-bottom {
  background-color: #80c6ec;
}

.stage--c,
.stage--c .stage__label::after {
  border-top-color: #0171c1;
}

.stage--c .stage__label {
  background-color: #0171c1;
}

.stage--c .stage__pickups-title,
.stage--c .stage__description-list {
  color: #0171c1;
}

.stage--c .stage__pickups-bottom {
  background-color: #80b8e0;
}

.stage--d,
.stage--d .stage__label::after {
  border-top-color: #0255aa;
}
.stage--d .stage__label {
  background-color: #0255aa;
}

.stage--d .stage__pickups-title,
.stage--d .stage__description-list {
  color: #0255aa;
}

.stage--d .stage__pickups-bottom {
  background-color: #80aad4;
}

.stage--e {
  border-top-color: #03439b;
}

.stage--e .stage__label::after {
  display: none;
}

.stage--e .stage__label {
  background-color: #03439b;
}

.stage--e .stage__pickups-title,
.stage--e .stage__description-list {
  color: #03439b;
}

.stage--e .stage__pickups-bottom {
  background-color: #81a1cd;
}

.stage__inner-container {
  display: flex;
  flex-direction: row;
  padding: 20px;
  background-color: #fff;
  gap: 20px;
  filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 767px) {
  .stage__inner-container {
    flex-direction: column;
    padding: 10px;
    gap: 8px;
  }
}

.stage__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  flex-shrink: 0;
  background-color: #000;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .stage__label {
    width: 42px;
    font-size: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .stage__label > ul {
    display: none;
  }
}

.stage__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
  border-top: 40px solid red;
  z-index: 1;
  filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 767px) {
  .stage__label::after {
    border-left: 21px solid transparent;
    border-right: 21px solid transparent;
    border-top: 10px solid red;
  }
}

.stage__label > ul {
  margin-top: 24px;
  font-size: 16px;
  font-weight: normal;
}

.stage__label > ul > li {
  line-height: 24px;
}

.stage__label > ul > li::before {
  content: "・";
}

.stage__description {
  padding: 10px;
  font-size: 16px;
  line-height: 24px;
}

.stage__description-list {
  display: none;
}

@media screen and (max-width: 767px) {
  .stage__description {
    padding: 4px;
    font-size: 12px;
  }

  .stage__description-list {
    display: block;
    max-height: 48px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .stage__description-list li::before {
    content: "・";    
  }
}

.stage__pickups {
  width: 510px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .stage__pickups {
    width: 100%;
  }

  .stage__pickups .m-btn {
    text-align: left;
  }
}

.stage__pickups-top {
  background-color: #dcf0fa;
  padding: 15px 20px;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .stage__pickups-top {
    gap: 8px;
    padding: 14px 10px;
  }
}

.stage__pickups-title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  width: 100%;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .stage__pickups-title {
    text-align: center;
    margin-bottom: 8px;
    line-height: 18px;
  }
}

.stage__pickups-top > .m-btn {
  width: calc(50% - 5px);
}

@media screen and (max-width: 767px) {
  .stage__pickups-top > .m-btn {
    width: 100%;
  }
}

.stage__pickups-bottom {
  background-color: #000;
  padding: 15px 20px;
}

@media screen and (max-width: 767px) {
  .stage__pickups-bottom {
    padding: 10px;
  }
}

.stage__pickups-bottom > .m-btn {
  width: 100%;
}

.top-articles-container {
  display: flex;
  flex-direction: row;
  background-color: #edf6fa;
  padding: 16px;
  width: 100%;
  justify-content: space-between;
}

.top-articles-container .articles__card {
  width: calc(33.33% - 8px);
}

@media screen and (max-width: 767px) {
  .top-articles-container {
    flex-direction: column;
    padding: 10px;
    row-gap: 10px;
  }

  .top-articles-container .articles__card {
    width: 100%;
    padding: 10px;
  }
}

.top-articles-container-2column {
  display: flex;
  flex-direction: row;
  background-color: #edf6fa;
  padding: 16px;
  width: 100%;
}

.top-articles-container-2column .articles__card {
  width: calc(33.33% - 8px);
  margin-right: 12px;
}

@media screen and (max-width: 767px) {
  .top-articles-container-2column {
    flex-direction: column;
    padding: 10px;
    row-gap: 10px;
  }

  .top-articles-container-2column .articles__card {
    width: 100%;
    padding: 10px;
  }
}

.top__header {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 360px;
  z-index: -1;
  background: url(/houjin/img/bg_top_header_pc.png) right no-repeat, linear-gradient(to right, #03439b, #0b7cc8, #b0d4eb);
}
.top__header-title-area {
  width: 100%;
  height: auto;
  margin: auto 60px;
}
.top__header-title {
  font-size: 28px;
  font-weight: bold;
  color: #FFF;
}
.top__header-title-area p {
  font-size: 16px;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .top__header {
    height: 360px;
    z-index: -1;
    background: url(/houjin/img/bg_top_header_sp.png) right no-repeat, linear-gradient(to right, #03439b, #0b7cc8, #b0d4eb);
  }
  .top__header-title-area {
    width: 280px;
    margin: auto 20px;
  }
  .top__header-title {
    font-size: 22px;
  }
  .top__header-title-area p {
    font-size: 12px;
  }
}

.m-linklist--top li {
  display: inline-block;
}

.m-linklist--top li a {
  padding-left: 24px;
  padding-right: 65px;
}

@media screen and (max-width: 767px){
  .m-linklist--top li a {
    padding-right: 0;
  }
}

.m-linklist--top li a::after {
  top: 7px;
  left: 5px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 767px){
  .m-linklist--top li a::after {
    top: 6px;
    left: 4px;
  }
}


.articles__card-text .link-list {
  margin-top: 20px;
}

/* houjin top CTAエリア */
.houjin-top-cta-area {
  display: flex;
}
.houjin-cta-area-left {
  width: 50%;
}
.houjin-cta-area-left .m-btnarea-ac {
  margin: 0;
}
.houjin-cta-area-right {
  width: 50%;
}
.houjin-cta-area-right .m-contactbox {
  margin: 0;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .houjin-top-cta-area {
    display: block;
  }
  .houjin-cta-area-left {
    width: 100%;
  }
  .houjin-cta-area-left .m-btnarea-ac {
    margin: 30px -15px;
  }
  .houjin-cta-area-right {
    width: 100%;
  }
  .houjin-cta-area-right .m-contactbox {
    padding: 18px;
  }
}

.top-sp-menu {
  display: none;
}

@media screen and (max-width: 767px) {
  .top-sp-menu {
    display: block;
  }
}


/* 記事エリア おすすめ商品の高さ調整 */
@media screen and (min-width: 768px) {
  .g-ht-145 {
    height: 145px !important;
  }
  .g-ht-165 {
    height: 165px !important;
  }
}
