@charset "UTF-8";
/* CSS Document */
/*--------------------
01.共通
02.ヘッダー
03.フッター
04.下層共通
--------------------*/

/*----------
01.共通
----------*/

* {
  box-sizing: border-box;
}

body {
  color: #2F2725;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.contents_in {
  margin: 0 auto;
  max-width: 1200px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

main {
  margin-top: 50px;
}

/*ボタンCSS*/

.btn_ptn01 a,
.btn_ptn01 span {
  position: relative;
  display: block;
  width: 100%;
  background: #2F2725;
  border: 2px solid #2F2725;
  border-radius: 20px;
  box-shadow: 2px 2px 5px 0 rgb(35 24 21 / 40%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 8px 30px 8px 20px;
  transition: all 0.3s;
  overflow: hidden;
  z-index: 1;
}

.btn_ptn01 a::before,
.btn_ptn01 span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.btn_ptn01 a:hover,
.btn_ptn01 span:hover {
  color: #2F2725;
}

.btn_ptn01 a:hover::before,
.btn_ptn01 span:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.btn_ptn01 a::after,
.btn_ptn01 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: block;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.3s;
}

.btn_ptn01 a:hover::after,
.btn_ptn01 span:hover::after {
  right: 10px;
  border-color: transparent transparent transparent #2F2725;
}


/*タイトルパターン*/
.title_ptn01 {
  font-size: 36px;
  line-height: 74px;
  letter-spacing: 0.5em;
  margin-bottom: 15px;
}

.title_ptn01 .title_deco {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  z-index: 1;
}

.title_ptn01 .title_deco::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  border-bottom: 44px solid transparent;
  border-left: 44px solid #FFFF00;
  z-index: -1;
}

.title_ptn01 .text_big {
  font-size: 48px;
}


.title_ptn02 {
  margin-bottom: 47px;
}

.title_ptn02 span {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0.15em;
  padding-bottom: 10px;
}

.title_ptn02 span::after {
  content: "";
  position: absolute;
  left: -48px;
  bottom: 0;
  display: block;
  width: calc(100% + 48px);
  height: 5px;
  background: #FFF100;
}

.title_ptn02.--center {
  text-align: center;
}

.title_ptn02.--center span::after {
  display: none;
}

.title_ptn03 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
}

.title_ptn03::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 9.5px 0 9.5px 15px;
  border-color: transparent transparent transparent #FFFF00;
  margin-right: 5px;
}





/*カテゴリー配色パターン*/

.category {
  display: inline-block;
  color: #fff;
  font-size: 16.3px;
  font-weight: 700;
  padding: 5px 20px;
  text-align: center;
}

.category.cate01 {
  background: #EA5514;
}

.category.cate02 {
  background: #FFF100;
  color: #2F2725;
}

.category.cate03 {
  background: #22AC38;
}

.category.cate04 {
  background: #0067C0;
}


/*ラインマーカー*/
.line_yellow {
  background: linear-gradient(transparent 50%, #FFFF00 50%);
}

.line_green {
  background: linear-gradient(transparent 50%, #8FC300 50%);
}

.line_green02 {
  background: linear-gradient(transparent 90%, #8FC300 90%);
}

.line_lightgreen {
  background: linear-gradient(transparent 50%, #CCEA7F 50%);
}

/*ストライプ柄*/

.line_stripe {
  position: relative;
  z-index: 0;
}

.line_stripe:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background: -webkit-repeating-linear-gradient(-45deg, #FFFF01, #FFFF01 4px, transparent 4px, transparent 8px);
  background: repeating-linear-gradient(-45deg, #FFFF01, #FFFF01 4px, transparent 4px, transparent 8px);
  z-index: -1;
}

/*パンくずリスト*/
.pankuzu_area {
  padding: 10px 0;
}

.pankuzu_area ul {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 20px;
}

.pankuzu_area ul li a {
  color: #2F2725;
  position: relative;
}

.pankuzu_area li a::after {
  content: "＞";
  display: inline-block;
  margin: 0 5px;
}



/*ページャー*/
.pagination {
  padding: 40px 0 20px;
}

.pagination ul {
  display: flex;
  justify-content: center;
}

.pagination ul li {
  margin: 0 5px;
}

.pagination ul li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #2F2725;
  color: #2F2725;
  transition: all 0.3s;
}

.pagination ul li .page-numbers.current,
.pagination ul li .page-numbers:hover {
  background-color: #2F2725;
  color: #fff;
}

.pagination ul li a.next.page-numbers,
.pagination ul li a.prev.page-numbers {
  display: none !important;
}


/*----------
02.ヘッダー
----------*/
header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  gap: 1.1%;
  /* justify-content: space-between; */
  width: 100%;
  height: 50px;
  background: #231815;
  padding: 6px 10px 8px;
  overflow: hidden;
  transition: .3s;
  z-index: 999;
}

header .logo_g {
  display: block;
  max-width: 262px;
  width: 13.7%;
}

header .logo_g a {
  display: block;
  width: 100%;
}

header .header_right {
  flex: 1;
}

header #g_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header #g_nav .g_nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header #g_nav .g_nav_list li {
  position: relative;
}

header #g_nav .g_nav_list li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 1px;
  height: 1em;
  background: #fff;
}

header #g_nav .g_nav_list li:last-child::after {
  display: none;
}

header #g_nav .g_nav_list li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.15em;
  padding: 0.5em 0.7em;
  background: transparent;
  z-index: 1;
  transition: .3s;
}

header #g_nav .g_nav_list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

header #g_nav .g_nav_list li a:hover {
  color: #2F2725;
  font-weight: 700;
}

header #g_nav .g_nav_list li a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

header #g_nav .external_link_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 25px;
}

header #g_nav .external_link_list li {
  margin-left: 20px;
}

header #g_nav .external_link_list li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.15em;
}

header #g_nav .external_link_list li a .icon {
  display: block;
  width: 2.07142857em;
  margin-right: 0.714285714em;
}

header #g_nav .external_link_list li a.online .icon {
  width: 1.42857143em;
}


/*----------
03.フッター
----------*/
/*お問い合わせ*/
.contact_link_area {
  width: 100%;
  background-color: #EFEFEF;
  background: #8FC300;
  color: #fff;
  padding: 45px 0 60px;
  text-align: center;
}

.contact_link_area .contents_in {
  max-width: 785px;
}

.contact_link_area h2 {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact_link_area h2:before,
.contact_link_area h2:after {
  border-top: 2px solid #fff;
  content: "";
  width: 15px;
}

.contact_link_area h2:before {
  margin-right: 0.5em;
}

.contact_link_area h2:after {
  margin-left: 0.5em;
}

.contact_link_area p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 35px;
  text-align: center;
}

.contact_link_area .btn_ptn01 {
  max-width: 350px;
  margin: 0 auto;
}

.contact_link_area .btn_ptn01 a {
  background: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #8FC300;
  font-size: 20px;
  padding: 12px 30px 12px 20px;
}

.contact_link_area .btn_ptn01 a::before {
  background: #8FC300;
}

.contact_link_area .btn_ptn01 a:hover {
  color: #fff;
}

.contact_link_area .btn_ptn01 a::after {
  border-color: transparent transparent transparent #8FC300;
}

.contact_link_area .btn_ptn01 a:hover::after {
  border-color: transparent transparent transparent #fff;
}

/*法人様相談窓口*/

.contact_banner_area {
  background: #EFEFEF;
  padding: 85px 0 75px;
}

.contact_banner_area .contact_banner_g {
  display: flex;
  justify-content: space-between;
}

.contact_banner_area .contact_banner_g .left_box {
  width: 45%;
}

.contact_banner_area .contact_banner_g .left_box .box_title {
  color: #231815;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.contact_banner_area .contact_banner_g .left_box p {
  color: #231815;
  font-size: 20px;
  line-height: 1.6;
}

.contact_banner_area .contact_banner_g .right_box {
  width: 45%;
}

.contact_banner_area .contact_banner_g .right_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 308px;
  width: 57%;
  aspect-ratio: 308/229;
  background-image: url(../img/common/bg_contact01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.contact_banner_area .contact_banner_g .right_box a::before {
  display: block;
  content: "";
  aspect-ratio: 308/229;
  width: 42%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: width 0.3s, background-color 0.3s;
}

.contact_banner_area .contact_banner_g .right_box a span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.67;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact_banner_area .contact_banner_g .right_box a:hover::before {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}


/*ショップリンク*/
.shop_link_area {
  width: 100%;
  background-color: #636464;
  color: #fff;
  padding: 45px 0 60px;
}

.shop_link_area .contents_in {
  max-width: 785px;
}

.shop_link_area h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.shop_link_area h2:before,
.shop_link_area h2:after {
  border-top: 2px solid #fff;
  content: "";
  width: 15px;
}

.shop_link_area h2:before {
  margin-right: 0.5em;
}

.shop_link_area h2:after {
  margin-left: 0.5em;
}

.shop_link_area p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 35px;
  text-align: center;
}

.shop_link_area .banner_g {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.shop_link_area .banner_g li {
  max-width: 380px;
  width: 48.4%;
}

.shop_link_area .banner_g li a {
  display: block;
  transition: all 0.3s;
}

.shop_link_area .banner_g li a:hover {
  opacity: 0.9;
}

/*フッターメニュー*/
footer .footer_bottom {
  background: #505050;
  color: #fff;
  padding: 50px 0 60px;
}

footer .footer_bottom .contents_in {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

footer .footer_bottom .company_overview {
  width: 45%;
}

footer .footer_bottom .company_overview .footer_logo {
  width: 73.5%;
  margin-bottom: 40px;
}

footer .footer_bottom .company_overview .company {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
}

footer .footer_bottom .company_overview .address_text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  margin-bottom: 1.5em;
}

footer .footer_bottom .company_overview dl {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

footer .footer_bottom .company_overview dl dt {
  display: block;
  font-weight: 500;
}

footer .footer_bottom .company_overview .btn_official {
  max-width: 280px;
  width: 100%;
}

footer .footer_bottom .company_overview .btn_official a {
  display: flex;
  align-items: center;
  width: 100%;
  background: #C8C8C8;
  border-radius: 1em;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  padding: 0.4375em 1em 0.4375em 0.875em;
  transition: all 0.3s;
}

footer .footer_bottom .company_overview .btn_official a:hover {
  background: #ffffff;
}

footer .footer_bottom .company_overview .btn_official a .icon {
  display: block;
  width: 1.8125em;
  margin-right: 0.6875em;
}

footer .footer_bottom .footer_nav_g {
  width: 46.67%;
  display: flex;
  justify-content: space-between;
  margin-top: 110px;
}

footer .footer_bottom .footer_nav {
  width: 50%;
  max-width: 280px;
}

footer .footer_bottom .footer_nav li a {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.625em 0;
  text-decoration: none;
  transition: all 0.3s;
  z-index: 1;
}

footer .footer_bottom .footer_nav li a .icon_bousai {
  display: block;
  width: 2.5em;
  margin-right: 0.625em;
}

footer .footer_bottom .footer_nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
}

footer .footer_bottom .footer_nav li a:hover::before {
  width: 100%;
}

footer .footer_bottom .footer_etc {
  width: 47.3%;
}

footer .footer_bottom .footer_etc>li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.15em;
}

footer .footer_bottom .footer_etc li a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
  z-index: 1;
}

footer .footer_bottom .footer_etc>li>a {
  padding: 0.625em 0;
}

footer .footer_bottom .footer_etc li a .icon_cart {
  display: block;
  width: 1.25em;
  margin-right: 0.75em;
}

footer .footer_bottom .footer_etc li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
}

footer .footer_bottom .footer_etc li a:hover::before {
  width: 100%;
}

footer .footer_bottom .footer_etc .shop_link_list {
  padding-left: 2em;
  margin-top: 0.6875em;
}

footer .footer_bottom .footer_etc .shop_link_list .list_title {
  margin-bottom: 1.0625em;
}

footer .footer_bottom .footer_etc .shop_link_list .sub_list .shoptitle {
  font-size: 0.75em;
  letter-spacing: 0;
  margin-bottom: 0.2em;
}

footer .footer_bottom .footer_etc .shop_link_list .sub_list a {
  display: block;
  font-size: 0.875em;
  letter-spacing: 0;
  padding-left: 1em;
  margin-bottom: 0.714em;
}

footer .footer_bottom .footer_etc .shop_link_list .sub_list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #FFFFFF;
  margin-right: 5px;
  transition: all 0.5s ease;
}


footer .copyright {
  display: block;
  width: 100%;
  background: #505050;
  color: #fff;
  font-size: 16px;
  padding: 5px 0 15px;
  text-align: center;
}

footer .footer_bottom .company_overview .btn_ptn01 {
  max-width: 220px;
  margin-top: 10px;
}

footer .footer_bottom .company_overview .btn_ptn01 a {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #2F2725;
  font-size: 16px
}

footer .footer_bottom .company_overview .btn_ptn01 a::before {
  background: #2F2725;
}

footer .footer_bottom .company_overview .btn_ptn01 a:hover {
  color: #fff;
}

footer .footer_bottom .company_overview .btn_ptn01 a::after {
  border-color: transparent transparent transparent #2F2725;
  border-width: 5px 0 5px 10px;
}

footer .footer_bottom .company_overview .btn_ptn01 a:hover::after {
  border-color: transparent transparent transparent #fff;
}





/*----------
04.下層共通
----------*/
/*下層ページタイトル*/
.under_page .title_area {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 95px;
}

.under_page .title_area .title_ptn01 {
  letter-spacing: 0.5em;
  margin-bottom: 15px;
}

.under_page .title_area p {
  font-size: 20px;
  line-height: 28px;
}














@media only screen and (max-width:1400px) {

  /*----------
01.共通
----------*/
  .contents_in {
    width: 94%;
  }

  /*----------
  02.ヘッダー
  ----------*/

  header #g_nav .g_nav_list li a {
    font-size: clamp(8.5px, 1vw, 14px);
  }

  header #g_nav .external_link_list li a {
    font-size: clamp(8px, 1vw, 14px);
  }

  header #g_nav .external_link_list {
    padding-right: 0;
  }

  header #g_nav .external_link_list li {
    margin-left: 10px;
  }

}


@media only screen and (max-width:1280px) {

  /*----------
  01.共通
  ----------*/

  .category {
    font-size: 14px;
    padding: 5px 15px;
  }

  .btn_ptn01 a,
  .btn_ptn01 span {
    font-size: 18px;
  }

  .title_ptn01 {
    font-size: 28px;
    line-height: 48px;
  }

  .title_ptn01 .text_big {
    font-size: 40px;
  }

  .title_ptn01 .title_deco::before {
    top: -5px;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #FFFF00;
  }

  .title_ptn02 {
    margin-bottom: 30px;
  }

  .title_ptn02 span {
    font-size: 30px;
    line-height: 50px;
  }

  .title_ptn02 span::after {
    left: -30px;
    width: calc(100% + 30px);
    height: 4px;
  }

  .title_ptn03 {
    font-size: 18px;
    line-height: 30px;
  }

  .title_ptn03::before {
    border-width: 7.5px 0 7.5px 12px;
  }




  /*----------
03.フッター
----------*/
  .contact_link_area h2 {
    font-size: 24px;
  }

  /*法人様相談窓口*/
  .contact_banner_area .contact_banner_g .left_box .box_title {
    font-size: clamp(20px, 1.88vw, 24px);
  }

  .contact_banner_area .contact_banner_g .left_box p {
    font-size: clamp(16px, 1.56vw, 20px);
  }

  .contact_banner_area .contact_banner_g .right_box a span {
    font-size: clamp(12px, 1.56vw, 20px);
  }

  footer .footer_bottom .company_overview .footer_logo {
    width: clamp(300px, 31.02vw, 397px);
    margin-bottom: 3.13vw;
  }

  footer .footer_bottom .company_overview .company {
    font-size: clamp(20px, 2.19vw, 28px);
  }

  footer .footer_bottom .company_overview .address_text {
    font-size: clamp(16px, 1.88vw, 24px);
  }

  footer .footer_bottom .company_overview dl {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  footer .footer_bottom .company_overview .btn_official {
    width: fit-content;
  }

  footer .footer_bottom .company_overview .btn_official a {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  footer .footer_bottom .footer_nav_g {
    width: 65%;
    margin-top: 8.59vw;
  }

  footer .footer_bottom .footer_nav li a {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  footer .footer_bottom .footer_etc>li {
    font-size: clamp(14px, 1.25vw, 16px);
  }

}

@media only screen and (max-width:1024px) {
  /*----------
01.共通
----------*/

  .title_ptn01 {
    font-size: 24px;
    line-height: 40px;
  }

  .title_ptn01 .text_big {
    font-size: 32px;
  }

  /*----------
02.ヘッダー
----------*/

  header #g_nav .g_nav_list li a {
    padding: 0 0.4em;
  }


  /*----------
03.フッター
----------*/

  /* footer .footer_bottom .company_overview .company a {
    font-size: 25px;
  }

  footer .footer_bottom .company_overview dl {
    font-size: 16px;
  }

  footer .footer_bottom .footer_nav {
    width: calc(100% - 260px);
  } */



  /*----------
04.下層共通
----------*/


}

@media only screen and (max-width:767px) {

  /*----------
01.共通 767
----------*/
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .contents_in {
    width: 90%;
  }

  main {
    margin-top: 60px;
  }

  .title_ptn01 {
    letter-spacing: 0.3em;
    text-align: center;
  }

  .title_ptn01 .title_deco::before {
    top: -6px;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #FFFF00;
  }

  .btn_ptn01 a,
  .btn_ptn01 span {
    border-radius: 25px;
    font-size: 16px;
    padding: 13px 30px 13px 20px
  }

  .title_ptn02 span {
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0.1em;
    padding-bottom: 8px;
  }

  .title_ptn03 {
    font-size: 16px;
    line-height: 24px;
  }


  /*ページャー*/

  .pagination {
    padding: 30px 0 0;
  }



  /*----------
02.ヘッダー 767px
----------*/

  header {
    position: fixed;
    height: 60px;
    padding: 12px 8.5px;
  }

  header .logo_g {
    max-width: 262px;
    width: 73.18%;
  }

  /*ハンバーガーメニュー*/
  header #g_nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: -100%;
    display: block;
    max-width: none;
    width: 80%;
    height: 100vh;
    background: #505050;
    transition: all 0.3s;
    overflow-y: scroll;
  }

  header #g_nav.active {
    z-index: 999;
    right: 0;
  }

  header #g_nav .g_nav_list {
    display: block;
    max-width: none;
    padding: 60px 0 10px;
  }

  header #g_nav .g_nav_list li::after {
    display: none;
  }

  header #g_nav .g_nav_list li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    letter-spacing: 0;
    padding: 14px 1.875em;
    text-decoration: none;
    margin: 0;
  }

  header #g_nav .g_nav_list li:first-child a {
    border-top: 1px solid #ccc;
  }

  header #g_nav .g_nav_list li a::before {
    display: none;
  }

  header #g_nav .g_nav_list li a::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 30px;
    display: block;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #fff;
    transition: all 0.3s;
  }

  header #g_nav .g_nav_list li a:hover {
    color: #fff;
    font-weight: 500;
  }

  header #g_nav .g_nav_list li a .icon_bousai {
    display: block;
    width: 2.5em;
    margin-right: 0.8em;
  }

  header #g_nav .external_link_list {
    display: block;
    padding: 0;
    margin-bottom: 7px;
  }

  header #g_nav .external_link_list li {
    margin: 0;
  }

  header #g_nav .external_link_list li a {
    font-size: 16px;
    letter-spacing: 0.15em;
    padding: 10px 0.5em 10px 2.4em;
  }

  header #g_nav .external_link_list li a .icon {
    width: 1.8125em;
    margin-right: 0.9em;
  }

  header #g_nav .external_link_list li a.online .icon {
    width: 1.25em;
    margin-right: 1em;
    margin-left: 0.4em;
  }

  header #g_nav .external_link_list {
    display: block;
    padding: 0;
    margin-bottom: 7px;
  }

  header #g_nav .sp_list li {
    margin-bottom: 0.6em;
  }

  header #g_nav .sp_list li a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.15em;
    padding: 10px 2em 10px 5em;
    z-index: 1;
  }

  header #g_nav .sp_list li a::before {
    content: "";
    width: 0.3125em;
    height: 0.3125em;
    position: absolute;
    top: 1em;
    left: 3.25em;
    z-index: -1;
    display: block;
    background: #fff;
    border-radius: 50%;
  }


  /*ハンバーガーボタン*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 16px;
    right: 15px;
    width: 34px;
    height: 28px;
    cursor: pointer;
  }

  .openbtn.active {
    top: 14px;
    right: 10px;
  }

  .openbtn span {
    display: inline-block;
    background-color: #fff;
    transition: all .4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
  }

  .openbtn span:nth-of-type(1) {
    top: 0;
  }

  .openbtn span:nth-of-type(2) {
    top: 12px;
  }

  .openbtn span:nth-of-type(3) {
    top: 25px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 10px;
    left: 0;
    width: 80%;
    transform: translateY(6px) rotate(-45deg);
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 22px;
    left: 0;
    width: 80%;
    transform: translateY(-6px) rotate(45deg);
  }

  /*END　ハンバーガーボタン*/
  /*END　ハンバーガーメニュー*/


  /*----------
03.フッター
----------*/
  /*お問い合わせ*/
  .contact_link_area {
    padding: 45px 0;
  }

  .contact_link_area h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact_link_area .btn_ptn01 {
    max-width: 260px;
    margin: 0 auto;
  }

  .contact_link_area .btn_ptn01 a {
    font-size: 16px;
    padding: 13px 30px 13px 20px;
  }

  /*法人様相談窓口*/
  .contact_banner_area .contact_banner_g {
    display: block;
  }

  .contact_banner_area .contact_banner_g .left_box {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact_banner_area .contact_banner_g .left_box .box_title {
    font-size: 18px;
  }

  .contact_banner_area .contact_banner_g .left_box p {
    font-size: 16px;
  }

  .contact_banner_area .contact_banner_g .right_box {
    width: 100%;
  }

  .contact_banner_area .contact_banner_g .right_box a {
    max-width: none;
    width: 100%;
  }

  .contact_banner_area .contact_banner_g .right_box a span {
    font-size: 18px;
  }

  .shop_link_area .banner_g {
    display: block;
  }

  .shop_link_area h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .shop_link_area .banner_g li {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }

  .shop_link_area .banner_g li:first-child {
    margin-bottom: 20px;
  }

  footer .footer_bottom {
    padding: 40px 0 45px;
  }

  footer .footer_bottom .contents_in {
    display: block;
  }

  footer .footer_bottom .company_overview {
    max-width: none;
    width: 100%;
    margin-bottom: 40px;
  }

  footer .footer_bottom .company_overview .company {
    font-size: 24px;
    margin-bottom: 5px;
  }


  footer .footer_bottom .company_overview .company a:hover {
    color: #fff;
  }

  footer .footer_bottom .company_overview .company a::before {
    display: none;
  }

  footer .footer_bottom .company_overview .address_text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  footer .footer_bottom .company_overview dl {
    font-size: 16px;
    margin: 0 auto 15px;
  }

  footer .footer_bottom .company_overview .btn_official {
    width: 280px;
  }

  footer .footer_bottom .company_overview .btn_official a {
    font-size: 16px;
  }

  footer .footer_bottom .footer_nav_g {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  footer .footer_bottom .footer_nav {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0 auto 10px;
  }

  footer .footer_bottom .footer_nav li a {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    padding: 0.5em 0;
    text-decoration: none;
    margin: 0;
  }

  footer .footer_bottom .footer_nav li a::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 15px;
    display: block;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #fff;
    transition: all 0.3s;
  }

  footer .footer_bottom .footer_nav li a::before {
    display: none;
  }

  footer .footer_bottom .footer_nav li a:hover {
    color: #fff;
    font-weight: 500;
  }

  footer .copyright {
    font-size: 12px;
  }

  footer .footer_bottom .company_overview .btn_ptn01 {
    margin: 0 0 20px;
  }

  footer .footer_bottom .company_overview .btn_ptn01 a {
    font-size: 15px;
    padding: 10px 30px 10px 20px;
  }

  footer .footer_bottom .footer_etc {
    width: 100%;
    padding-left: 1em;
  }

  footer .footer_bottom .footer_etc .shop_link_list .sub_list .shoptitle {
    font-size: 12px;
  }

  footer .footer_bottom .footer_etc .shop_link_list .sub_list a {
    font-size: 14px;
  }


  /*----------
04.下層共通
----------*/

  /*下層ページタイトル*/
  .under_page .title_area {
    background-size: cover;
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .under_page .title_area .title_ptn01 {
    letter-spacing: 0.15em;
    margin-bottom: 15px;
  }

  .under_page .title_area p {
    font-size: 14px;
    line-height: 26px;
  }



}

@media only screen and (max-width:360px) {

  /*----------
    02.ヘッダー 360px
    ----------*/


  header #g_nav .g_nav_list li a {
    font-size: 14px;
  }

  header #g_nav .external_link_list li a {
    font-size: 14px;
  }

  header #g_nav .sp_list li a {
    font-size: 14px;
  }

}