@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@400&display=swap);
@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #333333;
  -webkit-print-color-adjust: exact;
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

/* ロゴ（catalog.htmlと同じ構造） */
.form_logo {
  text-align: center;
  padding: 100px 0 20px;
}

.form_logo .header_title_logo {
  width: 200px;
}

/* メインコンテンツ */
.guidance {
  max-width: calc(1000px - (15px + 15px));
  margin: 0 auto;
  padding: 0 20px 60px;
}

.guidance__page-title {
  font-size: 24px;
  font-weight: 700;
  border-left: 5px solid #e8930b;
  padding-left: 14px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.guidance__page-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.guidance__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* カテゴリ */
.guidance__category {
  margin-bottom: 28px;
}

.guidance__category-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* 商品カード */
.guidance__card {
  border: 1px solid #e8930b;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.guidance__card-body {
  display: flex;
  align-items: stretch;
  padding: 20px 20px 16px;
  gap: 0;
}

.guidance__card-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  border-right: solid 1px #e8930b;
  padding-right: 16px;
  display: flex;
  align-items: center;
}

.guidance__card-logo {
  flex-shrink: 0;
  width: 180px;
  text-align: center;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guidance__card-logo img {
  max-width: 100%;
  height: auto;
}

.guidance__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 16px 24px;
  background: #e8930b;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  transition: opacity 0.2s;
}

.guidance__card-btn::after {
  content: ">";
  position: absolute;
  right: 16px;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #e8930b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  -webkit-text-stroke: 1px #e8930b;
}

.guidance__card-btn:hover {
  opacity: 0.85;
}

@media only screen and (max-width: 770px) {
  .form_logo {
    padding: 80px 0 16px;
  }

  .form_logo .header_title_logo {
    width: 160px;
  }

  .guidance {
    padding: 0 16px 40px;
  }

  .guidance__page-title {
    font-size: 20px;
  }

  .guidance__heading {
    font-size: 20px;
  }

  .guidance__card-body {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 12px;
  }

  .guidance__card-text {
    font-size: 14px;
    border-right: none;
    border-bottom: solid 1px #e8930b;
    padding-right: 0;
    padding-bottom: 12px;
    width: 100%;
  }

  .guidance__card-logo {
    width: 200px;
    padding-left: 0;
  }

  .guidance__card-btn {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 14px 20px;
    font-size: 16px;
  }
}

/*** グローバルナビ ***/
#gnavi {
  position: fixed;
  top: 0;
  z-index: 100;
  height: 70px;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  background: #fff;
}
#gnavi.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#gnavi.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gnavi_wrapper {
  display: flex;
  justify-content: flex-end;
  height: 88px;
  background: #fff;
}
.gnavi {
  width: 100%;
  max-width: 1040px;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  list-style: none;
}
.gnavi li {
  padding: 0 5px;
  border-left: solid 1px #d0d0d0;
  text-align: center;
}
.gnavi li:first-child {
  border: none;
}
.gnavi a {
  display: block;
  padding-top: 10px;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
}
.gnavi span {
  display: block;
  font-size: 11px;
  color: #ee8100;
  font-family: "Roboto";
  opacity: 0;
  transition: 0.5s;
}
.gnavi a:hover,
.gnavi a.this_page {
  background: #fffbef;
}
.gnavi a:hover span,
.gnavi a.this_page span {
  opacity: 1;
}

/*タブレット以上*/
@media screen and (min-width: 771px) {
  .drawer {
    display: none;
  }
}
/*タブレット以下のドロワーメニュー*/
@media screen and (max-width: 770px) {
  #gnavi {
    display: none;
  }
  header {
    position: relative;
  }
  .drawer {
    display: block;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
  }
  .drawer-hidden {
    display: none;
  }
  /* ハンバーガーメニュースペース */
  .drawer-open {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 68px;
    width: 68px;
    cursor: pointer;
    background-color: #fff;
  }
  /* ハンバーガーメニューアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: "";
    display: block;
    position: absolute;
    height: 4px;
    width: 36px;
    border-radius: 4px;
    background: #ee8100;
    transition: 0.5s;
  }
  .drawer-open span:before {
    bottom: 12px;
  }
  .drawer-open span:after {
    top: 12px;
  }
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(238, 129, 0, 0);
  }
  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
    background: #ee8100;
  }
  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #ee8100;
  }
  .drawer-content {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.5s;
  }
  .drawer-logo {
    position: absolute;
    top: 7px;
    width: 155px;
  }
  .drawer-content ul {
    list-style: none;
    width: 100%;
    padding: 0;
  }
  .drawer-content li {
    position: relative;
  }
  .drawer-content li::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 45px;
    height: 1px;
    background-color: #c4c4c4;
  }
  .drawer-content a {
    display: block;
    width: 100%;
    height: 80px;
    padding: 20px 0;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
  }
  .drawer-content span {
    display: block;
    font-family: "Roboto";
    font-size: 11px;
    color: #ee8100;
    opacity: 0;
  }
  .drawer-content a:hover,
  .drawer-content a.this_page {
    background: #fffbef;
  }
  .drawer-content a:hover span,
  .drawer-content a.this_page span {
    opacity: 1;
  }
  #drawer-check:checked ~ .drawer-content {
    left: 0;
  }
  .gnav-sns-box {
    width: 100%;
    padding-left: 12px;
    float: left;
  }
  .gnav-sns-box img {
    float: left;
    margin: 10px;
  }
  .hover-wh img:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: “alpha(opacity=100) ”;
    filter: brightness(1000%);
  }
}

#page-top {
  width: 90px;
  margin: 200px 0 -45px auto;
  position: relative;
  z-index: 1;
}

#page-top a {
  display: block;
  padding: 15px;
  width: 90px;
  height: 90px;
  z-index: 5;
}

#page-top img {
  width: 100%;
}

footer {
}

.footer_wrapper {
  padding-bottom: 18px;
  background: linear-gradient(to right, #ee8100 0%, #ed8e18 30%, #f5b66b 100%);
}

.footer_navi_wrapper {
}

.footer_navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 100px 15px;
  margin: 0 auto;
  list-style: none;
}

.footer_navi li {
  margin: 1em 0;
  text-align: center;
}

.footer_navi a {
  padding: 15px 1em 15px 0;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
}

.footer_navi li:last-child a {
  padding-right: 0;
}

.footer_navi a:hover {
  color: #333;
}

.footer_navi a::after {
  content: "";
  margin-left: 1em;
  border-right: solid 1px #fff;
}

.footer_navi li:last-child a::after {
  border-right: none;
}

.copyright_wrapper {
  width: 100%;
  padding: 5px 15px;
  background: #fff;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #ee8100;
  text-align: center;
}

@media only screen and (max-width: 599px) {
  #page-top {
    margin-left: calc(50vw - 90px / 2);
    margin-top: 170px;
  }
  footer {
    margin-top: -30px;
  }
  .footer_navi {
    padding-top: 74px;
    padding-bottom: 40px;
  }
  .footer_navi li {
    margin: 0.5em 0;
  }
  .footer_navi a {
    font-size: 10px;
  }
  .copyright_wrapper {
    font-size: 12px;
  }
}

