@charset "UTF-8";
/* ===========================================

  共通設定

=========================================== */
* {
  --content-w: 1120px;
  --content-w-num: 1120;
  --content-space: 40px;
  --sp-w: 750px;
  --sp-w-num: 750;
  --base-black: #111;
  --dim-gray: #6a6a6a;
  --very-light-grey: #cbcbcb;
  --bg-brown: rgba(225, 209, 186, 0.5);
  --wn-orange: #f57c00;
  --wn-red: #ff0f17;
  --wn-green: #26a92c;
  --step-indicator-color: #6a6a6a;
  --shadow-1: 0 8px 16px 0 rgba(71,71,71,0.2);
  --z-floating: 1;
  --z-breadcrumb: 1;
  --z-drawer-mask: 2;
  --z-drawer-nav: 3;
  --z-g-header: 3;
  font-family: Arial, Helvetica, sans-serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  font-feature-settings: "palt";
  box-sizing: border-box;
  line-height: 1.6;
}

a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.dp_liq {
  width: calc(100% - var(--content-space) * 2);
  max-width: var(--content-w);
  margin: auto;
  color: var(--base-black);
}

.dp_sp {
  display: none;
}

.underline {
  background: linear-gradient(transparent 60%, #fcfc5c 60%, #fcfc5c 90%, transparent 90%);
}

/*====================================
  スマホ表示設定
====================================*/
@media only screen and (max-width:800px) {
  .dp_pc {
    display: none;
  }
  .dp_sp {
    display: block;
  }
  .dp_liq {
    width: 100%;
    padding: 0 1rem;
  }
}
/*=================================
  ヘッダー
=================================*/
.g-header {
  background-color: #fff;
  border-bottom: 1px solid #d1d5db;
}

.g-header-inner {
  display: flex;
  align-items: center;
  height: 101px;
}

.g-header_logo img {
  width: 100%;
  height: auto;
}

.g-header_btn {
  margin-left: auto;
}

.g-header_btn a {
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 0 20px;
  border-radius: 32px;
  background-color: var(--wn-orange);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

/*====================================
  スマホ表示設定
====================================*/
@media only screen and (max-width:800px) {
  .g-header-inner {
    height: 3.625rem;
  }
  .g-header_logo {
    width: 9.25rem;
  }
}
/*=================================
  パンくず
=================================*/
.g-breadcrumb {
  background-color: #f3f4f6;
}

.g-breadcrumb-list {
  display: flex;
  margin-bottom: 78px;
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  font-weight: bold;
}

.g-breadcrumb-list a {
  font-weight: normal;
}

.g-breadcrumb-list li:nth-child(n+2) {
  margin-left: 18px;
  padding-left: 23px;
  background: url(../img/common/icon_next_gray.svg) no-repeat 0 center;
}

/*====================================
  スマホ表示設定
====================================*/
@media only screen and (max-width:800px) {
  .g-breadcrumb-list {
    padding: 0.6rem 0 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
  .g-breadcrumb-list li:nth-child(n+2) {
    margin-left: 0.6rem;
    padding-left: 0.6rem;
  }
}
/*=================================
  フッター
=================================*/
.g-footer {
  padding: 70px 0 28px;
  background-color: var(--wn-green);
}

.g-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 18px;
  width: 309px;
  margin-bottom: 60px;
  color: #fff;
}

.g-footer_logo a {
  display: block;
  width: 262px;
  margin-bottom: 48px;
}

.g-footer_logo img {
  width: 100%;
  height: auto;
}

.g-footer_copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*====================================
  スマホ表示設定
====================================*/
@media only screen and (max-width:800px) {
  .g-footer-links {
    font-size: 0.75rem;
  }
  .g-footer_logo a {
    width: 9.5625rem;
  }
  .g-footer_copy {
    font-size: 0.625rem;
  }
}
/*=================================
  ボタン
=================================*/
.g-btn_more {
  text-align: center;
}

.g-btn_more a {
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 132px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 999px;
  background: url(../img/common/icon_next_white.svg) no-repeat calc(100% - 31px) center/6px 10px var(--wn-green);
}

/*====================================
  スマホ表示設定
====================================*/
@media only screen and (max-width:800px) {
  .g-btn_more a {
    width: 100%;
    height: 2.9375rem;
    font-size: 0.875rem;
  }
}
/*=================================
  ブログ記事
=================================*/
.um__info {
  padding: 80px 0;
}

.um__info_ttl {
  margin-bottom: 48px;
  padding-top: 80px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  background: url(../img/common/icon_lamp.svg) center top no-repeat;
  background-size: 48px auto;
}

.um__info_ttl span {
  font-size: 24px;
  font-weight: 300;
}

.um__info-list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 56px;
}

.um__info-list a:hover {
  color: var(--wn-green);
}

.um__info-list_img {
  height: 253px;
  margin-bottom: 18px;
}

.um__info-list_img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.um__info-list_date {
  margin-bottom: 10px;
  color: var(--dim-gray);
  font-size: 14px;
  font-weight: 300;
}

.um__info-list_ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
}

/*====================================
  スマホ表示設定
====================================*/
@media only screen and (max-width:800px) {
  .um__info {
    padding: 2.5rem 0 3.125rem;
  }
  .um__info_ttl {
    margin-bottom: 1rem;
    padding-top: 2.375rem;
    font-size: 1.375rem;
    line-height: 1.27;
    background-size: 1.53125rem auto;
  }
  .um__info_ttl span {
    font-size: 0.875rem;
  }
  .um__info-list {
    overflow-x: scroll;
    gap: 1.5rem;
    margin: 0 -1rem 1.75rem 0;
    padding-right: 1rem;
  }
  .um__info-list li {
    width: 14.375rem;
  }
  .um__info-list_img {
    aspect-ratio: 4/3;
    height: auto;
    margin-bottom: 0.75rem;
  }
  .um__info-list_img img {
    border-radius: 15px;
  }
  .um__info-list_date {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
  }
  .um__info-list_ttl {
    font-size: 0.875rem;
  }
}
