@charset "utf-8";

/* ======================================================
 * helloarticle.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Header
 * - Main
 * - Footer
 * - Clearfix
 * Media Queries
 * Print
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Main
 * - Footer
 * - Clearfix
 * Media Queries
====================================================== */

@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  /* ----- font ----- */
  body {
    font-family: "Noto Sans", "Noto Sans CJK JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .type-lato {
    font-family: Lato;
  }
  
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    width: 100%;
    background-color: #e2dfdc;
  }
  .HeaderBody {
    max-width: 1680px;
    margin: 0 auto;
    padding: 70px 40px 52px;
  }
  .HeaderBody > *:first-child {
    margin-top: 0 !important;
  }
  
  /* ----- header-identity ----- */
  .header-identity .identity_logo {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .header-identity .identity_logo img {
    width: 148px;
    height: 100%;
  }
  
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    overflow-x: hidden;
  }
  /* ----- container ----- */
  /* contents */
  .contents-01 {
    width: 100%;
    padding-bottom: 76px;
    background-color: #e2dfdc;
  }
  .contents-02 {
    width: 100%;
    margin-bottom: 81px;
  }
  .contents-01 .contents-wrap {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 40px;
  }
  /* ----- helloarticle-heading-lv1 ----- */
  .helloarticle-heading-lv1 {
    text-align: center;
    margin-bottom: 13px;
    font-size: 5rem;
    font-weight: bold;
    color: #313131;
  }
  /* ----- helloarticle-heading-lv2 ----- */
  .helloarticle-heading-lv2 {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  section + section > .helloarticle-heading-lv2 {
    margin-top: 78px;
  }
  .helloarticle-heading-lv2 .heading_title {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    font-size: 3.6rem;
    font-weight: 600;
    color: #444;
  }
  .helloarticle-heading-lv2 .heading_title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 58px;
    height: 2px;
    background-color: #cba671;
    content: "";
    transform: translateX(-50%);
  }
  /* v2 */
  .helloarticle-heading-lv2-v2 {
    margin-bottom: 31px;
  }
  .helloarticle-heading-lv2-v2 .heading_title {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 500;
    color: #444;
  }
  /* ----- helloarticle-heading-lv3 ----- */
  .helloarticle-heading-lv3 {
    margin-bottom: 16px;
  }
  .helloarticle-heading-lv3 .heading_title {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }
  /* ----- helloarticle-lead ----- */
  .helloarticle-lead {
    text-align: center;
    font-size: 2rem;
    color: #313131;
  }
  /* ----- helloarticle-card ----- */
  .helloarticle_slide-wrap{
    display: flex;
    flex-flow: row wrap;
  }
  .helloarticle-card .card_item {
    margin-top: 32px;
    outline: none;
    opacity: 0;
  }
  .helloarticle-card .card_item .card_image img{
    width: 100%;
  }
  .helloarticle-card.pickUp_slider .card_item {
    width: calc(((100% - (50px * 2))/3) - 0.1px);
    margin-left: 50px;
  }
  .helloarticle-card.tips_slider {
    margin-top: -40px;
  }
  .helloarticle-card.tips_slider .card_item {
    width: calc(((100% - (35px * 2))/3) - 0.1px);
    margin-left: 35px;
  }
  .helloarticle-card .card_item .card_link{
    outline: none;
  }
  .helloarticle-card .card_item.fadein{
    transition: 2s;
    opacity: 1;
  }
  .helloarticle-card .card_item:nth-child(3n+1) {
    margin-left: 0;
  }
  .helloarticle-card .card_link {
    display: inline-block;
    width: 100%;
  }
  .helloarticle-card .card_image {
    overflow: hidden;
    position: relative;
    border-radius: 32px;
    z-index: 1;
  }
  .helloarticle-card .card_link .card_image .image_inner {
    transition: all .25s;
  }
  .helloarticle-card .card_link:hover .card_image .image_inner {
    transform: scale(1.1);
  }
  .helloarticle-card .card_title {
    margin-top: 9px;
    line-height: 1.65;
    color: #313131;
  }
  .helloarticle-card .card_tag {
    margin-top: 1px;
    line-height: 1.65;
    color: #9e6d26;
  }
  .helloarticle-card .card_date {
    margin-top: 1px;
    font-size: 1.4rem;
    color: #999;
  }
  /* ----- helloarticle-media ----- */
  .helloarticle-media {
    display: flex;
    justify-content: space-between;
  }
  .helloarticle-media .media_detail {
    width: calc(100% - 53.6%);
    max-width: 730px;
    margin-top: 30px;
    margin-left: auto;
    padding-right: 40px;
  }
  .helloarticle-media .media_image {
    width: 53.6%;
  }
  .helloarticle-media .media_image a {
    display: inline-block;
    width: 100%;
  }
  .helloarticle-media .media_image a:hover {
    opacity: .7;
  }
  /* ----- helloarticle-description ----- */
  .helloarticle-description {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 25px 0;
    border-top: 2px dotted #666;
  }
  .helloarticle-description:last-child {
    border-bottom: 2px dotted #666;
  }
  .helloarticle-description dt {
    width: 19%;
    padding: 0 8px;
    color: #666;
  }
  .helloarticle-description dd {
    width: 81%;
    padding-right: 10px;
    color: #313131;
  }
  /* ----- helloarticle-logo ----- */
  .helloarticle-logo {
    width: 94px;
    margin: 30px 10px 0;
  }
  /* ----- helloarticle-info ----- */
  .helloarticle-info {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    max-width: 1680px;
    margin: 64px auto 0;
    padding: 0 40px;
  }
  .info_column {
    display: flex;
    align-items: center;
  }
  .info_column .info_image {
    width: 120px;
    margin-right: 29px;
    margin-left: 15px;
  }
  .info_column .info_lead {
    font-size: 2.2rem;
    line-height: 1.65;
  }
  /* ----- helloarticle-note ----- */
  .helloarticle-note {
    margin-top: 13px;
  }
  .helloarticle-note > li {
    position: relative;
    padding-left: 1em;
    font-size: 1.4rem;
    color: #666;
  }
  .helloarticle-note > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  /* ----- helloarticle-button ----- */
  .helloarticle-button {
    margin-top: 18px;
  }
  .helloarticle-button [class*="type-link"] {
    text-align: center;
    position: relative;
    display: inline-block;
    min-width: 363px;
    padding: 15px 55px;
    border-radius: 99px;
    background-color: #4b4b4b;
    border: 1px solid #4b4b4b;
    color: #fff;
  }
  .helloarticle-button [class*="type-link"]:hover {
    border: 1px solid #e4e4e4;
    background-color: #fff;
    color: #4b4b4b;
  }
  .helloarticle-button .type-link_blank::after {
    position: absolute;
    top: 50%;
    right: 37px;
    width: 15px;
    height: 11px;
    background: url("/sp/helloarticle/img/helloarticle_ic01.png") no-repeat center/cover;
    content: "";
    transform: translateY(-50%);
  }
  .helloarticle-button .type-link_blank:hover::after {
    background: url("/sp/helloarticle/img/helloarticle_ic02.png") no-repeat center/cover;
  }
  .helloarticle-button .link_label {
    font-weight: bold;
  }
  /* ----- helloarticle-app ----- */
  .helloarticle-app {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    max-width: 1680px;
    margin: 60px auto 0;
    padding: 0 40px;
  }
  .app_column {
    display: flex;
  }
  .app_column .app_item.type-app {
    width: 177px;
    margin-right: 26px;
  }
  .app_column .app_item.type-google {
    width: 199px;
  }
  .app_column .app_link {
    display: inline-block;
    transition: all .25s;
  }
  .app_column .app_link:hover {
    opacity: .5;
  }
  .app_column .app_link img {
    width: 100%;
  }
  /* ----- helloarticle-tag-name ----- */
  .helloarticle-tag-name{
    margin-top: 20px;
  }
  .helloarticle-tag-name .helloarticle-tag-name__label{
    font-size: 3.7rem;
    color: #9e6d26;
    text-align: center;
  }
  /* ----- helloarticle-gallery ----- */
  .js-gallery{
    display: none;
  }
  .helloarticle-gallery-wrap{
    margin-top: -9px;
  }
  .helloarticle-gallery-contents + .helloarticle-gallery-contents{
    margin-top: 45px;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item{
    width: calc(((100% - 48px * 3) / 4) - 0.1px);
    margin-top: 48px;
    margin-left: 48px;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item:nth-child(4n + 1){
    margin-left: 0;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item:nth-child(-n + 4){
    margin-top: 0;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item .card_image{
    border-radius: 32px;
    overflow: hidden;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item .card_image img{
    width: 100%;
  }
  /* ----- helloarticle-tag-name ----- */
  .helloarticle-tag-name .helloarticle-gallery-tag__label{
    
  }
  /* ----- helloarticle-tag ----- */
  .helloarticle-tag{
    display: -webkit-flex;
    display: flex;
    padding: 0 55px;
    margin-top: -2px;
    justify-content: center;
  }
  .helloarticle-tag__inner{
    display: -webkit-flex;
    display: flex;
  }
  .helloarticle-tag .helloarticle-tag__title{
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #9e6d26;
    font-weight: bold;
  }
  .helloarticle-tag .helloarticle-tag__list{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-left: 19px;
    margin-top: -2px;
  }
  .helloarticle-tag .helloarticle-tag__list li{
    background-color: #cba671;
    padding: 3px 10px;
    border-radius: 5px;
    margin: 2px 0 0 2px;
    cursor: pointer;
  }
  .helloarticle-tag .helloarticle-tag__list li:hover,
  .helloarticle-tag .helloarticle-tag__list li.is-current{
    background-color: #4b4b4b;
  }
  .helloarticle-tag .helloarticle-tag__list li .helloarticle-tag__label{
    color: #fff;
  }
  .helloarticle-card{
    display: none;
    position: relative;
    padding: 0 54px;
  }
  .helloarticle-tag + .helloarticle-card{
    margin-top: 5px;
  }
  .helloarticle-card > .slick-arrow{
    z-index: 2;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    padding: 0;
    overflow: hidden;
    border: none;
    outline: none;
    background-color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    cursor: pointer;
  }
  .helloarticle-card.pickUp_slider > .slick-arrow{
    width: 30px;
    height: 80px;
  }
  .helloarticle-card.tips_slider > .slick-arrow{
    width: 30px;
    height: 50px;
  }
  .helloarticle-card .slick-arrow.slick-next{
    right: 0;
  }
  .helloarticle-card .slick-arrow.slick-prev{
    left: 0;
  }
  .helloarticle-card > .slick-arrow.slick-next:before,
  .helloarticle-card > .slick-arrow.slick-prev:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
  }
  .helloarticle-card.pickUp_slider > .slick-arrow.slick-next:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic04.png);
  }
  .helloarticle-card.pickUp_slider > .slick-arrow.slick-prev:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic03.png);
  }
  .helloarticle-card.tips_slider > .slick-arrow.slick-next:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic06.png);
  }
  .helloarticle-card.tips_slider > .slick-arrow.slick-prev:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic05.png);
  }
  .helloarticle-card > .slick-dots{
    margin: 36px auto 0;
    padding: 0;
    width: 100%;;
    text-align: center;
  }
  .helloarticle-card > .slick-dots > li{
    display: inline-block;
    padding: 0 10px;
    font-size: 0;
    list-style: none;
  }
  .helloarticle-card > .slick-dots > li > button{
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    outline: none;
    background-color: #fff;
    border: none;
    text-indent: -9999em;
    transition: all .25s cubic-bezier(.4,0,.2,1) 0s;
    cursor: pointer;
  }
  .helloarticle-card > .slick-dots > li.slick-active > button{
    background-color: #4b4b4b;
  }
  .js-reset-disp{
    cursor: pointer;
  }
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  
  /* ----- FooterBody ----- */
  .FooterBody {
    width: 100%;
    background-color: #4b4b4b;
  }
  
  /* ----- footer-wrap ----- */
  .footer-wrap {
    max-width: 1680px;
    margin: 0 auto;
    padding: 68px 40px 63px;
  }
  
  /* ----- footer-block ----- */
  .footer-block {
    display: flex;
  }
  
  /* ----- footer-logo-hello ----- */
  .footer-logo-hello {
    width: 110px;
    margin-right: 65px;
  }
  /* ----- footer-utility ----- */
  .footer-utility {
    flex: 1 1 auto;
  }
  /* ----- footer-logo-tepra ----- */
  .footer-logo-tepra {
    width: 68px;
    margin: 0 40px;
  }
  /* ----- footer-logo-official ----- */
  .footer-logo-official {
    width: 153px;
  }
  
  /* ----- footer-column ----- */
  .footer-column {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 4px;
  }
  
  /* ----- footer-sns ----- */
  .footer-sns {
    display: flex;
    align-items: center;
  }
  .footer-sns .sns_title {
    color: #fff;
    font-size: 1.6rem;
    margin-right: 34px;
  }
  .footer-sns .sns_column {
    display: flex;
  }
  .footer-sns .sns_item {
    width: 30px;
    margin-left: 30px;
  }
  .footer-sns .sns_item:first-child {
    margin-left: 0;
  }
  
  /* ----- footer-copyright ----- */
  .footer-copyright {
    margin-top: 20px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}


/* ======================================================
 * Media Queries
====================================================== */
@media screen and (min-width: 768px) and (max-width: 1680px) {
  .helloarticle-media .media_detail {
    margin-left: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1520px) {
  .helloarticle-media .media_detail {
    width: 35.2vw;
  }
  .helloarticle-media .media_image {
    width: calc(100% - 35.2vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .helloarticle-lead {
    font-size: 1.47vw;
  }
  .helloarticle-description dt {
    width: 32%;
  }
  .helloarticle-description dd {
    width: 68%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .helloarticle-tag .helloarticle-tag__inner{
    display: block;
  }
  .helloarticle-tag .helloarticle-tag__title{
    text-align: center;
  }
  .helloarticle-tag .helloarticle-tag__list{
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1196px) {
  .helloarticle-media {
    display: block;
  }
  .helloarticle-media .media_detail {
    width: 100%;
    margin: 30px auto;
    padding: 0;
  }
  .helloarticle-media .media_image {
    text-align: right;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 931px) {
  .footer-logo-hello {
    margin-right: 9%;
  }
  .footer-sns {
    margin-right: 2%;
  }
}
@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  /* ----- font ----- */
  body {
    font-family: "Noto Sans", "Noto Sans CJK JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .type-lato {
    font-family: Lato;
  }

  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    width: 100%;
    background-color: #e2dfdc;
  }
  .HeaderBody {
    padding: 34px 15px 28px;
  }
  .HeaderBody > *:first-child {
    margin-top: 0 !important;
  }
  
  /* ----- header-identity ----- */
  .header-identity .identity_logo {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .header-identity .identity_logo img {
    width: 110px;
    height: 100%;
  }
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    overflow-x: hidden;
  }
  /* ----- container ----- */
  /* contents */
  .contents-01 {
    padding: 0 15px 50px;
    background-color: #e2dfdc;
  }
  .contents-02 {
    padding: 32px 15px 39px;
  }
  /* ----- helloarticle-heading-lv1 ----- */
  .helloarticle-heading-lv1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #313131;
  }
  /* ----- helloarticle-heading-lv2 ----- */
  .helloarticle-heading-lv2 {
    text-align: center;
    margin-top: 33px;
    margin-bottom: 25px;
  }
  section + section > .helloarticle-heading-lv2 {
    margin-top: 68px;
  }
  .helloarticle-heading-lv2 .heading_title {
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
    font-size: 2.5rem;
    font-weight: 600;
    color: #444;
  }
  .helloarticle-heading-lv2 .heading_title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 59px;
    height: 3px;
    background-color: #cba671;
    content: "";
    transform: translateX(-50%);
  }
  /* v2 */
  .helloarticle-heading-lv2-v2 {
    margin-bottom: 15px;
  }
  .helloarticle-heading-lv2-v2 .heading_title {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 500;
    color: #444;
  }
  /* ----- helloarticle-heading-lv3 ----- */
  .helloarticle-heading-lv3 {
    margin-bottom: 14px;
  }
  .helloarticle-heading-lv3 .heading_title {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  /* ----- helloarticle-lead ----- */
  .helloarticle-lead {
    text-align: center;
    font-size: 1.2rem;
    color: #313131;
    line-height: 1.45;
  }
  /* ----- helloarticle-card ----- */
  .helloarticle_slide-wrap{
    display: flex;
    flex-flow: row wrap;
  }
  .helloarticle-card .card_item {
    width: calc(((100% - 15px)/2) - 0.1px);
    margin-left: 15px;
    outline: none;
    opacity: 0;
    transition: 2s;
  }
  .helloarticle-card .card_item .card_image img{
    width: 100%;
  }
  .helloarticle-card .card_item .card_link{
    outline: none;
  }
  .helloarticle-card .card_item.fadein{
    opacity: 1;
  }
  .helloarticle-card .card_item:nth-child(2n+1) {
    margin-left: 0;
  }
  .helloarticle-card .card_link {
    display: inline-block;
    width: 100%;
  }
  .helloarticle-card .card_image {
    overflow: hidden;
    border-radius: 16px;
  }
  .helloarticle-card .card_title {
    margin-top: 6px;
    line-height: 1.65;
    color: #313131;
  }
  .helloarticle-card .card_tag {
    margin-top: 1px;
    line-height: 1.65;
    color: #9e6d26;
  }
  .helloarticle-card .card_date {
    font-size: 1.2rem;
    color: #999;
  }
  /* ----- helloarticle-media ----- */
  .helloarticle-media .media_image {
    margin: 34px -15px 0;
  }
  /* ----- helloarticle-description ----- */
  .helloarticle-description {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 19px 0 18px;
    border-top: 2px dotted #666;
  }
  .helloarticle-description:last-child {
    border-bottom: 2px dotted #666;
  }
  .helloarticle-description dt {
    width: 30%;
    padding: 0 5px;
    color: #666;
  }
  .helloarticle-description dd {
    width: 70%;
    padding-right: 10px;
    color: #313131;
  }
  /* ----- helloarticle-logo ----- */
  .helloarticle-logo {
    width: 77px;
    margin: 15px 5px 0;
  }
  /* ----- helloarticle-info ----- */
  .helloarticle-info {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    margin-top: 36px;
  }
  .info_column {
    display: flex;
    align-items: center;
  }
  .info_column .info_image {
    width: 73px;
    margin-right: 14px;
  }
  .info_column .info_lead {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  /* ----- helloarticle-note ----- */
  .helloarticle-note {
    margin-top: 10px;
  }
  .helloarticle-note > li {
    position: relative;
    padding-left: 1em;
    font-size: 1.3rem;
    color: #666;
  }
  .helloarticle-note > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  /* ----- helloarticle-button ----- */
  .helloarticle-button {
    margin-top: 15px;
  }
  .helloarticle-button [class*="type-link"] {
    text-align: center;
    display: inline-block;
    min-width: 225px;
    padding: 19px 15px 20px;
    border-radius: 99px;
    background-color: #4b4b4b;
    color: #fff;
  }
  .helloarticle-button .link_label {
    position: relative;
    font-weight: bold;
  }
  .helloarticle-button .type-link_blank .link_label {
    padding-right: 18px;
  }
  .helloarticle-button .type-link_blank .link_label::after {
    position: absolute;
    top: 50%;
    right: -6px;
    width: 15px;
    height: 11px;
    background: url("/sp/helloarticle/img/helloarticle_ic01.png") no-repeat center/cover;
    content: "";
    transform: translateY(-50%);
  }
  /* ----- helloarticle-app ----- */
  .helloarticle-app {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    margin-top: 24px;
  }
  .helloarticle-app .helloarticle-heading-lv3 {
    margin-bottom: 10px;
  }
  .app_column {
    display: flex;
  }
  .app_column .app_item.type-app {
    width: 133px;
    margin-right: 20px;
  }
  .app_column .app_item.type-google {
    width: 150px;
  }
  .app_column .app_link {
    display: inline-block;
  }
  /* ----- helloarticle-tag-name ----- */
  .helloarticle-tag-name{
    margin-top: 20px;
  }
  .helloarticle-tag-name .helloarticle-tag-name__label{
    color: #9e6d26;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
  }
  /* ----- helloarticle-gallery ----- */
  .js-gallery {
      display: none;
  }
  .helloarticle-gallery-contents + .helloarticle-gallery-contents{
    margin-top: 45px;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item{
    width: calc(((100% - 15px)/2) - 0.1px);
    margin-top: 15px;;
    margin-left: 15px;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item:nth-child(2n + 1){
    margin-left: 0;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item:nth-child(-n + 2){
    margin-top: 0;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item .card_image{
    border-radius: 16px;
    overflow: hidden;
  }
  .helloarticle-gallery-contents .helloarticle-gallery-card .card_item .card_image img{
    width: 100%;
  }
  /* ----- helloarticle-tag ----- */
  .helloarticle-tag{
    margin-top: -5px;
    text-align: center;
  }
  .helloarticle-tag .helloarticle-tag__title{
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #9e6d26;
    font-weight: bold;
  }
  .helloarticle-tag .helloarticle-tag__list{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-top: 3px;
  }
  .helloarticle-tag .helloarticle-tag__list li{
    background-color: #cba671;
    padding: 1px 10px;
    border-radius: 5px;
    margin: 5px 0 0 5px;
  }
  .helloarticle-tag .helloarticle-tag__list li.is-current{
    background-color: #4b4b4b;
  }
  .helloarticle-tag .helloarticle-tag__list li .helloarticle-tag__label{
    color: #fff;
    font-size: 1.2rem;
  }
  .helloarticle-tag + .helloarticle-card,
  .helloarticle-tag-name + .helloarticle-card{
    margin-top: 24px;
  }
  .helloarticle-card{
    display: none;
    padding: 0 20px;
  }
  .helloarticle-card > .slick-arrow{
    z-index: 2;
    position: absolute;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    overflow: hidden;
    border: none;
    outline: none;
    background-color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    cursor: pointer;
  }
  .helloarticle-card.pickUp_slider > .slick-arrow{
    width: 15px;
    height: 40px;
  }
  .helloarticle-card.tips_slider > .slick-arrow{
    width: 14px;
    height: 25px;
  }
  .helloarticle-card .slick-arrow.slick-next{
    right: 0;
  }
  .helloarticle-card .slick-arrow.slick-prev{
    left: 0;
  }
  .helloarticle-card > .slick-arrow.slick-next:before,
  .helloarticle-card > .slick-arrow.slick-prev:before{
    -webkit-backface-visibility: hidden;
    display: inline-block;
    position: relative;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    content: "";
  }
  .helloarticle-card.pickUp_slider > .slick-arrow.slick-next:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic04.png);
  }
  .helloarticle-card.pickUp_slider > .slick-arrow.slick-prev:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic03.png);
  }
  .helloarticle-card.tips_slider > .slick-arrow.slick-next:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic06.png);
  }
  .helloarticle-card.tips_slider > .slick-arrow.slick-prev:before{
    background-image: url(/sp/helloarticle/img/helloarticle_ic05.png);
  }
  .helloarticle-card > .slick-dots{
    margin: 25px auto 0;
    padding: 0;
    width: 100%;;
    text-align: center;
  }
  .helloarticle-card > .slick-dots > li{
    display: inline-block;
    padding: 0 8px;
    font-size: 0;
    list-style: none;
  }
  .helloarticle-card > .slick-dots > li > button{
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    outline: none;
    background-color: #fff;
    border: none;
    text-indent: -9999em;
    transition: all .25s cubic-bezier(.4,0,.2,1) 0s;
    cursor: pointer;
  }
  .helloarticle-card > .slick-dots > li.slick-active > button{
    background-color: #4b4b4b;
  }
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  /* ----- FooterBody ----- */
  .FooterBody {
    background-color: #4b4b4b;
  }
  
  /* ----- footer-wrap ----- */
  .footer-wrap {
    padding: 0 15px 27px;
  }
  
  /* ----- footer-block ----- */
  .footer-block {
    display: flex;
    flex-flow: column wrap;
  }
  
  /* ----- footer-logo-hello ----- */
  .footer-logo-hello {
    text-align: center;
    width: 100%;
    order: 1;
    padding: 34px 0 20px;
  }
  .footer-logo-hello img {
    width: 83px;
  }
  /* ----- footer-utility ----- */
  .footer-utility {
    width: 100%;
    order: 3;
    border-top: 1px solid #666;
    padding: 25px 0 0;
  }
  /* ----- footer-logo-tepra ----- */
  .footer-logo-tepra {
    width: 51px;
    margin-right: 29px;
  }
  /* ----- footer-logo-official ----- */
  .footer-logo-official {
    width: 115px;
    padding-top: 4px;
  }
  
  /* ----- footer-column ----- */
  .footer-column {
    display: flex;
    justify-content: center;
  }
  
  /* ----- footer-sns ----- */
  .footer-sns {
    text-align: center;
    width: 100%;
    order: 2;
    padding: 10px 0 20px;
    border-top: 1px solid #666;
  }
  .footer-sns .sns_title {
    color: #fff;
    font-size: 1.2rem;
  }
  .footer-sns .sns_column {
    display: flex;
    justify-content: center;
    margin-top: 7px;
  }
  .footer-sns .sns_item {
    width: 23px;
    margin-left: 22px;
  }
  .footer-sns .sns_item:first-child {
    margin-left: 0;
  }
  
  /* ----- footer-copyright ----- */
  .footer-copyright {
    margin-top: 16px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
  }
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}


/* ======================================================
 * Media Queries
====================================================== */
/***
@media only screen and (min-width: 320px) and (max-width: 767px) {
}
@media only screen and (max-width: 736px) {
}
@media only screen and (max-width: 667px) {
}
@media only screen and (max-width: 640px) {
}
@media only screen and (max-width: 568px) {
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 414px) {
}
@media only screen and (max-width: 375px) {
}
@media only screen and (max-width: 360px) {
}
@media only screen and (max-width: 320px) {
}
***/

/* ======================================================
 * Print
====================================================== */
@media print {
  body {
    width: 1280px !important;
    margin: 0 auto !important;
  }
  body[data-browser="chrome"] {
    zoom: .85;
  }
  .helloarticle-card .card_item {
    width: calc(((100% - (50px * 2))/3) - 0.1px);
    margin-left: 50px;
  }
}