@charset "UTF-8";
/*------------------------------------------------------------
共通タグ
------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック Medium", "游ゴシック", Yu Gothic Medium, YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
  min-width: 1400px;
}
body.on {
  overflow: hidden;
}

img {
  vertical-align: bottom;
  border: none;
}

a {
  color: inherit;
  transition: all 0.25s;
}
a img {
  transition: all 0.25s;
}

h1 a,
h1 a img {
  transition: none;
}

li {
  list-style: none;
}

input,
textarea,
select {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック Medium", "游ゴシック", Yu Gothic Medium, YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    system-ui, sans-serif;
  font-size: 1.4rem;
  box-sizing: border-box;
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  background: #fff;
  width: 17px;
  height: 17px;
  margin: 0 3px 0 0;
  border: 1px solid #ccc;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
}
input[type="radio"]:checked:after {
  display: block;
  content: "";
  background: #333;
  width: 50%;
  height: 50%;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="color"] {
  -webkit-appearance: none;
  appearance: none;
  line-height: 38px;
  height: 40px;
  padding: 0 5px;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}
input[type="file"] {
  width: 100%;
  height: 40px;
}
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  line-height: 40px;
  color: #fff;
  background: #004b9e;
  border: none;
  border-radius: 0;
  text-align: center;
  padding: 0 20px;
  transition: all 0.25s;
  cursor: pointer;
}
input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: 0.75;
}
input[type="submit"][disabled],
input[type="button"][disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}
input:-webkit-autofill {
  -webkit-transition: background-color 9999s;
  transition: background-color 9999s;
}

textarea {
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  line-height: 1;
  height: 40px;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

label input[type="checkbox"] + span:before,
label input[type="hidden"] + span:before {
  display: block;
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 1px solid #ccc;
}
label input[type="checkbox"]:checked + span:after,
label input[type="hidden"] + span:after {
  display: block;
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 8px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #004b9e;
  border-right: 3px solid #004b9e;
}

.wpcf7c-conf {
  background: transparent !important;
  border-color: transparent !important;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 10px 15px !important;
  border: none !important;
  border-radius: 5px !important;
}

.wpcf7-not-valid {
  border-color: #e4007f !important;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7-validation-errors {
  color: #e4007f;
  background: rgba(204, 0, 0, 0.05);
  text-align: center;
}

.wpcf7-mail-sent-ok {
  color: #004b9e;
  background-color: rgba(0, 75, 158, 0.05);
  text-align: center;
}

@media screen and (max-width: 812px) {
  body {
    font-size: 1.2rem;
    line-height: 1.5;
    padding-top: 70px !important;
    min-width: 375px;
  }

  input,
  textarea,
  select {
    font-size: 1.2rem;
  }

  input[type="submit"]:hover,
  input[type="button"]:hover {
    opacity: 1;
  }
  input.wpcf7-back,
  input.wpcf7-submit {
    width: 40%;
  }

  label {
    padding-left: 25px;
  }
  label input[type="checkbox"] + span:before,
  label input[type="hidden"] + span:before {
    height: 19px;
    width: 19px;
  }
  label input[type="checkbox"]:checked + span:after,
  label input[type="hidden"] + span:after {
    top: 2px;
    left: 6px;
  }

  .wpcf7-validation-errors,
  .wpcf7-mail-sent-ok {
    text-align: left;
  }
}
/*------------------------------------------------------------
共通クラス
------------------------------------------------------------*/
.inner {
  width: 1080px;
  margin: 0 auto;
}

.sp,
.sp_inline {
  display: none;
}

.title_large {
  font-size: 2.4rem;
  line-height: 1.4;
  color: #004b9e;
  text-align: center;
}
.title_large small {
  font-size: 1rem;
}

.title_middle_blue,
.post_area h1 {
  font-size: 2.1rem;
  color: #fff;
  background: #004b9e;
  padding: 20px;
  margin: 60px 0 40px;
  border-radius: 10px;
}
.title_middle_blue:nth-of-type(1),
.post_area h1:nth-of-type(1) {
  margin-top: 0;
}

.title_middle_gray,
.post_area h2:not(.title_middle_blue),
.title_middle_gray,
.post_area h3:not(.title_middle_blue) {
  font-size: 2.1rem !important;
  color: #004b9e;
  background: #eaeaea;
  padding: 20px;
  margin: 60px 0 40px;
  border-radius: 10px;
}
.title_middle_gray:nth-of-type(1),
.post_area h2:nth-of-type(1):not(.title_middle_blue) {
  margin-top: 0;
}

.title_small_blue {
  font-size: 2.1rem;
  color: #004b9e;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 812px) {
  .inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .sp_inline {
    display: inline;
  }

  .title_middle_blue,
  .post_area h1 {
    font-size: 1.6rem;
    padding: 10px;
    margin: 30px 0 20px;
    border-radius: 5px;
  }

  .title_middle_gray,
  .post_area h2:not(.title_middle_blue),
  .title_middle_gray,
  .post_area h3:not(.title_middle_blue) {
    font-size: 1.6rem !important;
    padding: 10px;
    margin: 30px 0 20px;
    border-radius: 5px;
  }

  .title_small_blue {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------
幅調整用：主にフォームに使用
------------------------------------------------------------*/
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 812px) {
  .w10 {
    width: 40%;
  }

  .w20 {
    width: 40%;
  }

  .w30 {
    width: 40%;
  }

  .w40 {
    width: 100%;
  }

  .w50 {
    width: 100%;
  }

  .w60 {
    width: 100%;
  }

  .w70 {
    width: 100%;
  }

  .w80 {
    width: 100%;
  }

  .w90 {
    width: 100%;
  }

  .w90 {
    width: 100%;
  }
}
/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
@media screen and (max-width: 812px) {
  #wrapper {
    overflow: hidden;
  }
}

#h1_sp {
  display: none;
}
@media screen and (max-width: 812px) {
  #h1_sp {
    display: block;
    color: #004b9e;
    font-size: 1.2rem;
    line-height: 18px;
    letter-spacing: 0.05em;
    margin: 20px 20px 0;
  }
}
/*------------------------------------------------------------
PC用ヘッダー
------------------------------------------------------------*/

#header2020 .pc .member_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 32px;
  min-width: 1080px;
}
#header2020 .pc .member_header h1 {
  font-size: 1.4rem;
  color: #004b9e;
  font-weight: normal;
  /*  padding-left: 40px;*/
  padding-left: 15px;
  border-left: 10px solid #004b9e;
}
#header2020 .pc .member_header ul {
  display: flex;
  align-items: center;
  padding-right: 7px;
}
#header2020 .pc .member_header ul li {
  margin-left: 12px;
}
#header2020 .pc .member_header ul li.login {
  margin-left: 20px;
}
#header2020 .pc .member_header ul li a {
  display: block;
  text-decoration: none;
  line-height: 22px;
  padding: 8px 0 5px 30px;
  background: no-repeat left center;
  background-size: auto 22px;
  color: #074b9e;
}
#header2020 .pc .member_header ul li a:hover {
  text-decoration: underline;
}
#header2020 .pc .member_header ul li.user {
  color: #004b9e;
  margin-right: 18px;
  letter-spacing: 0.05em;
}

#header2020 .pc .member_header ul li.user strong {
  margin-right: 5px;
}

#header2020 .pc .member_header ul li.mypage {
  background: #e4017f;
  border-radius: 0 0 5px 5px;
  margin-left: 0;
}

#header2020 .pc .member_header ul li.mypage a {
  background-image: url(../images/common/ico_home.svg);
  background-size: 20px auto;
  width: 130px;
  background-position: top 8px left 12px;
  color: #fff;
  padding: 7px 0 0 42px;
  height: 35px;
}
#header2020 .pc .member_header ul li.register {
  background: #004b9e;
  border-radius: 0 0 5px 5px;
  margin-right: 16px;
}
#header2020 .pc .member_header ul li.register a {
  background-image: url(../images/common/icon_regist_white.svg);
  background-size: 21px auto;
  width: 154px;
  background-position: top 7px left 11px;
  color: #fff;
  padding: 7px 0 0 48px;
  height: 35px;
  letter-spacing: 0.05em;
}
#header2020 .pc .member_header ul li.login a {
  background-image: url("../images/common/icon_login.svg");
  padding-left: 26px;
  background-size: auto 22px;
}
#header2020 .pc .member_header ul li.logout {
  margin-left: 25px;
}
#header2020 .pc .member_header ul li.logout a {
  background-image: url("../images/common/ico_logout.svg");
  padding-left: 26px;
  background-size: auto 22px;
}
#header2020 .pc .member_header ul li.cart a {
  background-image: url("../images/common/icon_cart.svg");
  color: #fff;
}
#header2020 .pc .member_header ul li.cart a span {
  display: block;
  font-size: 1.1rem;
  background-color: #f00;
  text-align: center;
  width: 22px;
  border-radius: 100%;
}
#header2020 .pc .main_header {
  padding: 5px 0 16px 20px;
  display: flex;
  /* align-items: center;*/
}
.logo_h {
  margin-top: 14px;
  width: 224px;
  height: auto;
}
#header2020 .pc .main_header figure {
  margin-left: 11px;
}
#header2020 .pc .main_header .tel_mail {
  margin-left: 42px;
}
@media screen and (max-width: 1560px) {
  #header2020 .pc .main_header .tel_mail {
    margin-left: 27px;
  }
}
#header2020 .pc .main_header .tel_mail dl + dl {
  margin-top: 8px;
}
#header2020 .pc .main_header .tel_mail dl dt {
  font-size: 1.2rem;
  line-height: 1;
  padding-left: 34px;
  margin-top: 3px;
  letter-spacing: 0.05em;
}
#header2020 .pc .main_header .tel_mail dl dd {
  line-height: 1;
  padding-left: 35px;
  margin-top: 6px;
}
#header2020 .pc .main_header .tel_mail .tel dd {
  background: url("../images/common/icon_tel_blue.svg") no-repeat left center;
}
#header2020 .pc .main_header .tel_mail .mail dd {
  background: url(../images/common/icon_mail_blue.svg) no-repeat 3px top;
  margin-top: 4px;
  padding-left: 37px;
}
#header2020 .pc .main_header .contact_sample {
  margin-top: 23px;
}
#header2020 .pc .main_header .contact_sample p {
  margin-left: 18px;
  font-weight: bold;
}
#header2020 .pc .main_header .contact_sample p.contact {
  width: 139px;
}
#header2020 .pc .main_header .contact_sample p.contact a {
  display: block;
  line-height: 31px;
  font-size: 1rem;
  text-decoration: none;
  color: #004b9e;
  border: 1px solid #004b9e;
  background: url(../images/common/icon_mail_blue.svg) no-repeat 15px center;
  background-size: 20px 16px;
  padding-left: 42px;
  border-radius: 20px;
}
#header2020 .pc .main_header .contact_sample p.contact a:hover {
  color: #fff;
  background-color: #004b9e;
  background-image: url("../images/common/icon_mail_white.svg");
  background-size: 20px 16px;
}
#header2020 .pc .main_header .contact_sample p.sample {
  width: 139px;
  margin-top: 8px;
}
#header2020 .pc .main_header .contact_sample p.sample a {
  display: block;
  font-size: 1rem;
  line-height: 30px;
  text-decoration: none;
  color: #fff;
  background: #f6ab00 url("../images/common/icon_sample.svg") no-repeat 12px
    center;
  padding-left: 43px;
  border-radius: 20px;
}
#header2020 .pc .main_header .contact_sample p.sample a:hover {
  opacity: 0.6;
}
#header2020 .pc .main_header .order_menu {
  margin-left: auto;
  display: flex;
  margin-top: 14px;
}
#header2020 .pc .main_header .order_menu li {
  width: 89px;
  height: 90px;
  text-align: center;
}
#header2020 .pc .main_header .order_menu li small {
  font-size: 1.2rem;
}
#header2020 .pc .main_header .order_menu li a {
  display: block;
  height: 100%;
  border-top: 1px solid #004b9e;
  border-bottom: 1px solid #004b9e;
  border-left: 1px solid #004b9e;
  background: no-repeat center 11px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 16px;
  padding-top: 52px;
  color: #004b9e;
}
#header2020 .pc .main_header .order_menu li a:hover {
  color: #fff;
  background-color: #004b9e;
}
#header2020 .pc .main_header .order_menu li.quote a {
  background-image: url(../images/common/icon_quote_blue.svg);
  padding-top: 60px;
  background-position: top 13px center;
}
#header2020 .pc .main_header .order_menu li.quote a:hover {
  background-image: url("../images/common/icon_quote_white.svg");
}
#header2020 .pc .main_header .order_menu li.order a {
  background-image: url("../images/common/icon_order_blue.svg");
}
#header2020 .pc .main_header .order_menu li.order a:hover {
  background-image: url("../images/common/icon_order_white.svg");
}
#header2020 .pc .main_header .order_menu li.repeat a {
  background-image: url("../images/common/icon_repeat_blue.svg");
}
#header2020 .pc .main_header .order_menu li.repeat a:hover {
  background-image: url("../images/common/icon_repeat_white.svg");
}

#header2020 .pc .main_header .order_menu li.send_data a {
  border: none;
  color: #fff;
  background-color: #727171;
  background-image: url("../images/common/icon_send_data.svg");
}
#header2020 .pc .main_header .order_menu li.send_data a:hover {
  background-color: #004b9e;
}
#header2020 .pc .menu_fix_pc.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
}
#header2020 .pc .nav_service {
  background: #eaeaea;
}
#header2020 .pc .nav_service ul {
  display: flex;
  align-items: center;
  gap: 34px;
  max-width: 1021px;
  width: 100%;
  position: relative;
  height: 39px;
}
#header2020 .pc .nav_service ul li a {
  display: block;
  font-size: 1.2rem;
  text-decoration: none;
  background: no-repeat left center;
}
#header2020 .pc .nav_service ul li a:hover {
  text-decoration: underline;
}
#header2020 .pc .nav_service ul li.home a {
  background-image: url("../images/common/icon_home_gray.svg");
  background-size: 16px 15px;
  padding-left: 28px;
}
/* #header2020 .pc .nav_service ul li.guide a {
  background-image: url("../images/common/icon_guide_gray.svg");
}
#header2020 .pc .nav_service ul li.guide_data a {
  background-image: url("../images/common/icon_guide_data_gray.svg");
}
#header2020 .pc .nav_service ul li.template a {
  background-image: url("../images/common/icon_template_gray.svg");
}
#header2020 .pc .nav_service ul li.qa a {
  background-image: url("../images/common/icon_qa_gray.svg");
}
#header2020 .pc .nav_service ul li.voice a {
  background-image: url("../images/common/icon_voice_gray.svg");
} */
#header2020 .pc .nav_service ul li.feature {
  display: flex;
  align-items: center;
}
/* #header2020 .pc .nav_service ul li.feature a {
  background-image: url("../images/common/icon_feature_gray.svg");
} */
#header2020 .pc .nav_service ul li.feature span {
  display: block;
  width: 36px;
  height: 23px;
  background: #ff0000;
  font-size: 1rem;
  border-radius: 5px;
  line-height: 23px;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  margin-left: 12px;
}
#header2020 .pc .nav_service ul li.search {
  width: 214px;
  position: absolute;
  right: 0;
}
#header2020 .pc .nav_service ul li.search input[type="search"] {
  border: none;
  background: #e2e2e2 url(../images/common/icon_search_gray.svg) no-repeat left
    7px center;
  background-size: 16px auto;
  width: 100%;
  padding-left: 40px;
  height: 38px;
}
#header2020 .pc .nav_service ul li.search input[type="submit"] {
  font-size: 1.1rem;
  line-height: 24px;
  color: #fff;
  background: #999;
  text-align: center;
  padding: 0;
  width: 56px;
  border-radius: 12px;
  display: none;
}
#header2020 .pc .nav_product {
  background: #004b9e;
  position: relative;
}
#header2020 .pc .nav_product.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
}
#header2020 .pc .nav_product > ul {
  display: flex;
  justify-content: center;
  max-width: 1020px;
  width: 100%;
}
#header2020 .pc .nav_product > ul > li {
  font-size: 1rem;
  line-height: 14px;
  font-weight: bold;
  color: #fff;
  background: no-repeat center 16px;
  background-position: top 15px center;
  text-align: center;
  height: 85px;
  /* padding: 32px 0 15px; */
  width: 145px;
  transition: background-color 0.25s;
  flex-grow: 1;
  /* padding: 32px 0 13px; */
}
#header2020 .pc .nav_product > ul > li:hover {
  color: #004b9e;
  background-color: #fff;
}
#header2020 .pc .nav_product > ul > li:hover > a {
  border-right: 1px solid #fff;
}
#header2020 .pc .nav_product > ul > li.clearfile:hover > a {
  border-left: 1px solid #fff;
}
#header2020 .pc .nav_product > ul > li.clearfile {
  background-image: url("../images/common/icon_clearfile_white.svg");
  background-size: auto 20px;
  /* background-position: top 22px center; */
}
#header2020 .pc .nav_product > ul > li.clearfile > a {
  border-left: 1px solid #376da8;
}
#header2020 .pc .nav_product > ul > li.clearfile:hover {
  background-image: url("../images/common/icon_clearfile_blue.svg");
  background-size: auto 20px;
  /* background-position: top 22px center; */
}
#header2020 .pc .nav_product > ul > li.ondemand {
  background-image: url("../images/common/icon_ondemand_white.svg");
  background-size: auto 20px;
  /* background-position: top 23px center; */
}
#header2020 .pc .nav_product > ul > li.ondemand:hover {
  background-image: url("../images/common/icon_ondemand_blue.svg");
  background-size: auto 20px;
  /* background-position: top 23px center; */
}
#header2020 .pc .nav_product > ul > li.case {
  background-image: url("../images/common/icon_case_white.svg");
  background-size: auto 20px;
  /* background-position: top 23px center; */
}
#header2020 .pc .nav_product > ul > li.case:hover {
  background-image: url("../images/common/icon_case_blue.svg");
  background-size: auto 20px;
  /* background-position: top 23px center; */
}
#header2020 .pc .nav_product > ul > li.bagcase {
  background-image: url("../images/common/icon_clear.svg");
  background-size: auto 20px;
  /* background-position: top 19px center; */
}
#header2020 .pc .nav_product > ul > li.bagcase:hover {
  background-image: url("../images/common/icon_clear_white.svg");
  background-size: auto 20px;
  /* background-position: top 19px center; */
}
#header2020 .pc .nav_product > ul > li.others {
  background-image: url("../images/common/icon_others_white.svg");
  background-size: auto 20px;
  /* background-position: top 25px center; */
}
/* #header2020 .pc .nav_product > ul > li.others > a {
  padding-top: 83px !important;
} */
#header2020 .pc .nav_product > ul > li.others:hover {
  background-image: url("../images/common/icon_others_blue.svg");
  background-size: auto 20px;
  /* background-position: top 25px center; */
}
#header2020 .pc .nav_product > ul > li.stone {
  background-image: url("../images/common/icon_stone_white.svg");
  background-size: auto 20px;
  /* background-position: top 24px center; */
}
#header2020 .pc .nav_product > ul > li.stone > a {
  padding-top: 83px !important;
}
#header2020 .pc .nav_product > ul > li.stone:hover {
  background-image: url("../images/common/icon_stone_blue.svg");
  background-size: auto 20px;
  /* background-position: top 24px center; */
}
#header2020 .pc .nav_product > ul > li.sdg {
  background-image: url("../images/common/icon_sdg_white.svg");
  background-size: auto 20px;
  /* background-position: top 24px center; */
}
/* #header2020 .pc .nav_product > ul > li.sdg > a {
  padding-top: 83px !important;
} */
#header2020 .pc .nav_product > ul > li.sdg:hover {
  background-image: url("../images/common/icon_sdg_blue.svg");
  background-size: auto 20px;
  /* background-position: top 24px center; */
}
#header2020 .pc .nav_product > ul > li.ff-wear {
  background-image: url("../images/common/ic_ff-wear-w.svg");
  background-size: auto 20px;
  /* background-position: top 24px center; */
}
#header2020 .pc .nav_product > ul > li.ff-wear:hover {
  background-image: url("../images/common/ic_ff-wear-bl.svg");
  background-size: auto 20px;
  /* background-position: top 24px center; */
}
#header2020 .pc .nav_product > ul > li > a {
  display: block;
  text-decoration: none;
  padding-top: 55px;
  /* min-height: 122px;
  padding-top: 73px; */
  position: relative;
  border-right: 1px solid #376da8;
  height: 100%;
  /* padding-left: 20px;
  padding-right: 20px; */
}
/* #header2020 .pc .nav_product > ul > li > a:before {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - (16px * 2));
  background: #fff;
  position: absolute;
  top: 16px;
  left: -1px;
}
#header2020 .pc .nav_product > ul > li:last-child > a:after {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - (16px * 2));
  background: #fff;
  position: absolute;
  top: 16px;
  right: 0;
} */
#header2020 .pc .nav_product > ul > li.ondemand > a,
#header2020 .pc .nav_product > ul > li.case > a,
#header2020 .pc .nav_product > ul > li.bagcase > a {
  padding-top: 45px;
}
#header2020 .pc .nav_product > ul > li > div {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: #fff;
  width: 100%;
  text-align: left;
}
#header2020 .pc .nav_product > ul > li > div .inner {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
}
#header2020 .pc .nav_product > ul > li.clearfile > div .inner {
  width: auto;
  /* justify-content: center; */
  max-width: 1120px;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl {
  margin-right: 15px;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl > dt,
#header2020 .pc .nav_product > ul > li > div .inner > dl > dd {
  line-height: 220%;
  font-size: 1.3rem;
  color: #004b9e;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl > dt a,
#header2020 .pc .nav_product > ul > li > div .inner > dl > dd a {
  text-decoration: none;
  color: #004b9e;
  transition: font-size 0s;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl > dt a {
  font-size: 1.3rem;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl > dd a {
  font-size: 1rem;
}
/* #header2020 .pc .nav_product > ul > li > div .inner > dl > dt a:hover, #header2020 .pc .nav_product > ul > li > div .inner > dl > dd a:hover {
  text-decoration: underline;
} */
#header2020 .pc .nav_product > ul > li > div .inner > dl > dd a:hover {
  /* font-size: 1.5rem; */
  /* text-decoration: underline; */
  font-size: 1.5rem;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl > dt a:hover {
  text-decoration: underline;
}
#header2020 .pc .nav_product > ul > li > div .inner > dl > dd {
  margin-left: 1em;
  position: relative;
}

@media screen and (max-width: 1450px) {
  #header2020 .pc .main_header .tel_mail {
    margin-left: 32px;
  }
}
@media screen and (max-width: 1220px) {
  #header2020 .pc .main_header .tel_mail {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1500px) {
  #header2020 .pc .main_header {
    align-items: center;
  }
  #header2020 .pc .main_header figure {
    margin-left: 10px;
  }

  #header2020 .pc .main_header .contact_sample {
    display: block;
    margin-left: 10px;
  }
  #header2020 .pc .main_header .contact_sample p {
    margin-left: 0;
  }
  #header2020 .pc .main_header .contact_sample p.contact a {
    background-position: 20px center;
    padding-left: 50px;
  }
  #header2020 .pc .main_header .order_menu {
    flex-wrap: wrap;
    width: 250px;
    border-bottom: 1px solid #004b9e;
  }
  #header2020 .pc .main_header .order_menu li {
    width: 125px;
    height: 45px;
  }
  #header2020 .pc .main_header .order_menu li a {
    border-bottom: none;
    background: no-repeat 10px center;
    background-size: 20px auto;
    padding-top: 5px;
    padding-left: 30px;
  }
  #header2020 .pc .main_header .order_menu li.quote a {
    padding-top: 14px;
  }
  #header2020 .pc .main_header .order_menu li.order a {
    background-size: 28px auto;
    background-position: 8px center;
  }
  #header2020 .pc .main_header .order_menu li.quote a {
    padding-top: 15px;
    padding-left: 30px;
    background-size: 21px auto;
    background-position: 8px center;
  }
}
/*@media screen and (max-width: 1080px) {
  #header2020 .pc .main_header {
    width: 1080px;
  }
}*/
/*------------------------------------------------------------
SP用ヘッダー
------------------------------------------------------------*/
#header2020 .sp .bt_sp_menu {
  position: fixed;
  bottom: 60px;
  left: 0;
  z-index: 100;
  width: 60px;
  height: 60px;
  background: #f6ab00 linear-gradient(to bottom, #fff, #fff) no-repeat center
    center;
  background-size: 30px 3px;
  transition: background-size 0.2s;
  color: rgba(51, 51, 51, 0);
  overflow: hidden;
}
#header2020 .sp .bt_sp_menu:before,
#header2020 .sp .bt_sp_menu:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: 0.2s;
}
#header2020 .sp .bt_sp_menu:before {
  transform: translate(0, -10px);
}
#header2020 .sp .bt_sp_menu:after {
  transform: translate(0, 10px);
}
#header2020 .sp .bt_sp_menu.on {
  background-size: 0 2px;
  transition-delay: 0s;
}
#header2020 .sp .bt_sp_menu.on:before {
  transform: rotate(-45deg);
}
#header2020 .sp .bt_sp_menu.on:after {
  transform: rotate(45deg);
}
#header2020 .sp .sp_head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 70px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
}
#header2020 .sp .sp_head ul {
  display: flex;
}
#header2020 .sp .sp_head ul li {
  text-align: center;
  width: auto;
  height: 50px;
  margin-left: 10px;
}
#header2020 .sp .sp_head ul li a {
  display: block;
  text-decoration: none;
  line-height: 1;
  color: #004b9e;
  background: no-repeat center 2px;
  background-size: auto 28px;
  padding-top: 38px;
  position: relative;
}
#header2020 .sp .sp_head ul li a span {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 20px;
  color: #fff;
  background: #f00;
  width: 20px;
  border-radius: 100%;
}
#header2020 .sp .sp_head ul li.history a {
  background-image: url("../images/common/icon_repeat_blue.svg");
}
#header2020 .sp .sp_head ul li.cart a {
  background-image: url("../images/common/icon_cart.svg");
}

#header2020 .sp .sp_head ul li.mailcontact a {
  background-image: url("../images/common/contact_mail.svg");
}
#header2020 .sp .sp_head ul li.samplecontact a {
  background-image: url("../images/common/sample_contact.svg");
}

#header2020 .sp .sp_main_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-weight: bold;
  color: #fff;
  background: #004b9e;
  text-align: center;
  overflow-y: scroll;
}
#header2020 .sp .sp_main_menu a {
  text-decoration: none;
}
#header2020 .sp .sp_main_menu .user {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
#header2020 .sp .sp_main_menu .register_login {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#header2020 .sp .sp_main_menu .register_login li {
  width: calc(50% - 5px);
  height: 50px;
}
#header2020 .sp .sp_main_menu .register_login li a {
  display: block;
  background: #032e60 no-repeat 10px center;
  font-size: 1.4rem;
  line-height: 50px;
  padding-left: 20px;
}
#header2020 .sp .sp_main_menu .register_login li.register a,
#header2020 .sp .sp_main_menu .register_login li.mypage a {
  background-image: url("../images/common/icon_regist_white.svg");
}
#header2020 .sp .sp_main_menu .register_login li.login a,
#header2020 .sp .sp_main_menu .register_login li.logout a {
  background-image: url("../images/common/icon_login_white.svg");
}
#header2020 .sp .sp_main_menu .order_menu {
  display: flex;
  justify-content: center;
}
#header2020 .sp .sp_main_menu .order_menu li {
  width: 32%;
}
#header2020 .sp .sp_main_menu .order_menu li small {
  font-size: 1.2rem;
}
#header2020 .sp .sp_main_menu .order_menu li a {
  display: block;
  background: no-repeat center 10px;
  line-height: 1.2;
  height: 90px;
  padding-top: 55px;
}
#header2020 .sp .sp_main_menu .order_menu li.quote a {
  background-image: url("../images/common/icon_quote_white.svg");
}
#header2020 .sp .sp_main_menu .order_menu li.order a {
  background-image: url("../images/common/icon_order_white.svg");
}
#header2020 .sp .sp_main_menu .order_menu li.repeat a {
  background-image: url("../images/common/icon_repeat_white.svg");
}
#header2020 .sp .sp_main_menu .contact_sample {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
#header2020 .sp .sp_main_menu .contact_sample p {
  width: calc(50% - 5px);
}
#header2020 .sp .sp_main_menu .contact_sample p a {
  display: block;
  padding-left: 25px;
  border-radius: 20px;
}
#header2020 .sp .sp_main_menu .contact_sample p.contact a {
  line-height: 38px;
  border: 1px solid #fff;
  background: url("../images/common/icon_mail_white.svg") no-repeat 15px center;
  background-size: 20px 16px;
}
#header2020 .sp .sp_main_menu .contact_sample p.sample a {
  display: block;
  line-height: 40px;
  color: #fff;
  background: #f6ab00 url("../images/common/icon_sample.svg") no-repeat 12px
    center;
}
#header2020 .sp .sp_main_menu .search {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
#header2020 .sp .sp_main_menu .search input[type="search"] {
  flex-grow: 1;
  background: #fff url("../images/common/icon_search_blue.svg") no-repeat 10px
    center;
  border-radius: 10px 0 0 10px;
  padding-left: 40px;
}
#header2020 .sp .sp_main_menu .search input[type="submit"] {
  background: #032e60;
  width: 80px;
  border-radius: 0 10px 10px 0;
}
#header2020 .sp .sp_main_menu .nav_product {
  margin-top: 40px;
}
#header2020 .sp .sp_main_menu .nav_product h2 {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
}
#header2020 .sp .sp_main_menu .nav_product ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
#header2020 .sp .sp_main_menu .nav_product ul li {
  width: calc(50% - 6px);
  margin-top: 12px;
}
#header2020 .sp .sp_main_menu .nav_product ul li a {
  display: block;
  text-decoration: none;
  background: #033f83 no-repeat center 25px;
  height: 140px;
  padding-top: 84px;
  border-radius: 10px;
}
#header2020 .sp .sp_main_menu .nav_product ul li.clearfile a {
  background-image: url("../images/common/icon_clearfile_white.svg");
  padding-top: 92px;
}
#header2020 .sp .sp_main_menu .nav_product ul li.ondemand a {
  background-image: url("../images/common/icon_ondemand_white.svg");
}
#header2020 .sp .sp_main_menu .nav_product ul li.case a {
  background-image: url("../images/common/icon_case_white.svg");
}
#header2020 .sp .sp_main_menu .nav_product ul li.bagcase a {
  background-image: url("../images/common/icon_clear.svg");
  background-size: auto 38px;
}
#header2020 .sp .sp_main_menu .nav_product ul li.others a {
  background-image: url("../images/common/icon_others_white.svg");
  padding-top: 92px;
}
#header2020 .sp .sp_main_menu .nav_product ul li.stone a {
  background-image: url("../images/common/icon_stone_white.svg");
  padding-top: 92px;
}
#header2020 .sp .sp_main_menu .nav_product ul li.sdg a {
  background-image: url("../images/common/icon_sdg_white.svg");
  padding-top: 92px;
}
#header2020 .sp .sp_main_menu .nav_product ul li.ff-wear a {
  background-image: url("../images/common/ic_ff-wear-w.svg");
  padding-top: 92px;
}
#header2020 .sp .sp_main_menu .nav_service {
  margin-top: 40px;
}
#header2020 .sp .sp_main_menu .nav_service h2 {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
}
#header2020 .sp .sp_main_menu .nav_service ul {
  padding: 0 60px;
  text-align: left;
}
#header2020 .sp .sp_main_menu .nav_service ul li {
  border-bottom: 1px solid #053f83;
}
#header2020 .sp .sp_main_menu .nav_service ul li a {
  display: block;
  font-size: 1.4rem;
  line-height: 60px;
  background: no-repeat left center;
  padding-left: 34px;
}
#header2020 .sp .sp_main_menu .nav_service ul li.home a {
  background-image: url("../images/common/icon_home_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.guide a {
  background-image: url("../images/common/icon_guide_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.guide_data a {
  background-image: url("../images/common/icon_guide_data_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.template a {
  background-image: url("../images/common/icon_template_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.qa a {
  background-image: url("../images/common/icon_qa_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.voice a {
  background-image: url("../images/common/icon_voice_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.first_customer a {
  background-image: url("../images/common/icon_first_customer_white.svg");
  background-position: 2px center;
}
#header2020 .sp .sp_main_menu .nav_service ul li.case a {
  background-image: url("../images/common/icon_result_white.svg");
}
#header2020 .sp .sp_main_menu .nav_service ul li.useful a {
  background-image: url("../images/common/icon_useful_white.svg");
  background-position: 2px center;
}
#header2020 .sp .sp_main_menu .nav_service ul li.feature {
  display: flex;
  align-items: center;
}
#header2020 .sp .sp_main_menu .nav_service ul li.feature a {
  background-image: url("../images/common/icon_feature_white.svg");
  background-position: 5px center;
}
#header2020 .sp .sp_main_menu .nav_service ul li.feature span {
  display: block;
  width: 36px;
  height: 23px;
  background: #ffffff;
  font-size: 1rem;
  border-radius: 5px;
  line-height: 23px;
  text-align: center;
  color: #ff0000;
  letter-spacing: 0;
  margin-left: 12px;
}
#header2020 .sp .sp_main_menu .logout {
  height: 50px;
}
#header2020 .sp .sp_main_menu .logout a {
  display: block;
  background: #032e60 no-repeat 10px center;
  font-size: 1.4rem;
  line-height: 50px;
  padding-left: 20px;
}

/*------------------------------------------------------------
フッター
------------------------------------------------------------*/
#footer2020 .goto_pagetop {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
}
#footer2020 .goto_pagetop a {
  display: block;
  width: 50px;
  line-height: 50px;
  background: #004b9e;
  border-radius: 100%;
  text-align: center;
}
#footer2020 .goto_pagetop a:hover {
  opacity: 0.6;
}
#footer2020 .goto_pagetop a img {
  width: 20px;
  height: auto;
  vertical-align: baseline;
}
#footer2020 .main_footer {
  font-weight: bold;
  color: #fff;
  background: #004b9e;
  padding: 60px 0;
}
#footer2020 .main_footer .inner {
  display: flex;
  justify-content: space-between;
}
#footer2020 .main_footer .inner > dl > dt {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
#footer2020 .main_footer .inner .nav_product dd ul li {
  margin-top: 10px;
}
#footer2020 .main_footer .inner .nav_product dd ul li a {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 40px;
  text-decoration: none;
  background: no-repeat left center;
  padding-left: 50px;
}
#footer2020 .main_footer .inner .nav_product dd ul li a:hover {
  text-decoration: underline;
}
#footer2020 .main_footer .inner .nav_product dd ul li.clearfile a {
  background-image: url("../images/common/icon_clearfile_white.svg");
}
#footer2020 .main_footer .inner .nav_product dd ul li.ondemand a {
  background-image: url("../images/common/icon_ondemand_white.svg");
}
#footer2020 .main_footer .inner .nav_product dd ul li.case a {
  background-image: url("../images/common/icon_case_white.svg");
}
#footer2020 .main_footer .inner .nav_product dd ul li.bagcase a {
  background-image: url("../images/common/icon_bagcase_white.svg");
}
#footer2020 .main_footer .inner .nav_product dd ul li.others a {
  background-image: url("../images/common/icon_others_white.svg");
}
#footer2020 .main_footer .inner .nav_product dd ul li.stone a {
  background-image: url("../images/common/icon_stone_white.svg");
}

#footer2020 .main_footer .inner .nav_service dd ul li.topics a {
  background-image: url("../images/common/icon_topics_white.svg");
  background-position: 0 center;
}

#footer2020 .main_footer .inner .nav_service dd ul li {
  margin-top: 15px;
}
#footer2020 .main_footer .inner .nav_service dd ul li a {
  display: inline-block;
  line-height: 24px;
  text-decoration: none;
  background: no-repeat left center;
  padding-left: 34px;
}
#footer2020 .main_footer .inner .nav_service dd ul li a:hover {
  text-decoration: underline;
}
#footer2020 .main_footer .inner .nav_service dd ul li.guide a {
  background-image: url("../images/common/icon_guide_white.svg");
}
#footer2020 .main_footer .inner .nav_service dd ul li.guide_data a {
  background-image: url("../images/common/icon_guide_data_white.svg");
}
#footer2020 .main_footer .inner .nav_service dd ul li.template a {
  background-image: url("../images/common/icon_template_white.svg");
}
#footer2020 .main_footer .inner .nav_service dd ul li.qa a {
  background-image: url("../images/common/icon_qa_white.svg");
}
#footer2020 .main_footer .inner .nav_service dd ul li.voice a {
  background-image: url("../images/common/icon_voice_white.svg");
}
#footer2020 .main_footer .inner .nav_service dd ul li.first_customer a {
  background-image: url("../images/common/icon_first_customer_white.svg");
  background-position: 2px center;
}
#footer2020 .main_footer .inner .nav_service dd ul li.case a {
  background-image: url("../images/common/icon_result_white.svg");
}
#footer2020 .main_footer .inner .nav_service dd ul li.useful a {
  background-image: url("../images/common/icon_useful_white.svg");
  background-position: 2px center;
}
#footer2020 .main_footer .inner .nav_service dd ul li.feature a {
  background-image: url("../images/common/icon_feature_white.svg");
  background-position: 5px center;
}
#footer2020 .main_footer .inner .tel_mail > dd {
  margin-top: 25px;
}
#footer2020 .main_footer .inner .tel_mail > dd dl + dl {
  margin-top: 20px;
}

#footer2020 .main_footer .inner .tel_mail > dd dl dt {
  font-size: 1.6rem;
  line-height: 26px;
  font-weight: normal;
  background: no-repeat left center;
  padding-left: 40px;
}
#footer2020 .main_footer .inner .tel_mail > dd dl dd {
  margin-top: 5px;
}
#footer2020 .main_footer .inner .tel_mail > dd dl.tel dt {
  background-image: url("../images/common/icon_tel_white.svg");
}
#footer2020 .main_footer .inner .tel_mail > dd dl.mail dt {
  background-image: url("../images/common/icon_mail_white.svg");
}
#footer2020 .main_footer .inner .tel_mail > dd p {
  float: left;
  width: 190px;
}
#footer2020 .main_footer .inner .tel_mail > dd p.contact a {
  display: block;
  line-height: 38px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  background: url("../images/common/icon_mail_white.svg") no-repeat 25px center;
  background-size: 20px 16px;
  padding-left: 60px;
  border-radius: 20px;
}
#footer2020 .main_footer .inner .tel_mail > dd p.contact a:hover {
  color: #004b9e;
  background-color: #fff;
  background-image: url("../images/common/icon_mail_blue.svg");
  background-size: 20px 16px;
}
#footer2020 .main_footer .inner .tel_mail > dd p.sample {
  margin-left: 20px;
}
#footer2020 .main_footer .inner .tel_mail > dd p.sample a {
  display: block;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  background: #f6ab00 url("../images/common/icon_sample.svg") no-repeat 20px
    center;
  padding-left: 50px;
  border-radius: 20px;
}
#footer2020 .main_footer .inner .tel_mail > dd p.sample a:hover {
  opacity: 0.6;
}
#footer2020 .main_footer .inner .tel_mail > dd ul {
  clear: both;
  padding-top: 25px;
  display: flex;
}
#footer2020 .main_footer .inner .tel_mail > dd ul li + li {
  margin-left: 15px;
}
#footer2020 .main_footer .inner .tel_mail > dd ul li a {
  display: inline-block;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  background: #003f8d;
  border-radius: 10px;
}
#footer2020 .main_footer .inner .tel_mail > dd ul li a:hover {
  background: #4078b7;
}
#footer2020 .main_footer .inner .tel_mail > dd ul li.blog a {
  width: 265px;
  padding-left: 30px;
  background-image: url("../images/common/icon_blog.svg");
  background-repeat: no-repeat;
  background-position: 60px center;
}
#footer2020 .main_footer .inner .tel_mail > dd ul li.tw a {
  width: 50px;
}
#footer2020 .main_footer .inner .tel_mail > dd ul li.tw a img {
  vertical-align: middle;
}
#footer2020 .info_footer {
  background: #ffff;
  padding: 47px 0 26px;
}
#footer2020 .info_footer .inner {
  display: flex;
  justify-content: space-between;
}
#footer2020 .info_footer .inner dl dd {
  font-size: 1rem;
  line-height: 17px;
  margin-top: 14px;
}
#footer2020 .info_footer .inner dl dd a {
  color: #004b9e;
}
#footer2020 .info_footer .inner dl dd a:hover {
  text-decoration: none;
}
#footer2020 .info_footer .inner .logo_kasamart dt a {
  text-decoration: none;
}
#footer2020 .info_footer .inner .logo_kasamart dt p {
  border-bottom: 1px solid #f08300;
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  text-decoration: none;
  margin-top: 15px;
  line-height: 1;
  width: 153px;
}
#footer2020 .info_footer .inner .logo_kasamart dt {
  display: flex;
  gap: 20px;
}
#footer2020 .info_footer .inner .logo_kasamart dt img {
  width: 179px;
  display: block;
}

#footer2020 .info_footer .inner .logo_kasamaseihon {
  width: 420px;
  margin-top: -20px;
}
#footer2020 .info_footer .inner .logo_kasamaseihon dt .img1 {
  margin: 0 -10px 0 0;
  position: relative;
  top: 5px;
  left: -7px;
}
#footer2020 .info_footer .inner .logo_kasamaseihon dd {
  overflow: hidden;
  margin-top: 8px;
}
#footer2020 .info_footer .inner .logo_kasamaseihon dd img {
  float: left;
  width: auto;
  margin-right: 25px;
}
#footer2020 .sub_footer {
  background: #004b9e;
}
#footer2020 .sub_footer ul {
  display: flex;
  justify-content: center;
}
#footer2020 .sub_footer ul li {
  margin: 0 20px;
}
#footer2020 .sub_footer ul li a {
  font-size: 1.2rem;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
}
#footer2020 .sub_footer ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 812px) {
  #footer2020 .goto_pagetop {
    bottom: 10px;
    right: auto;
    left: 10px;
  }
  #footer2020 .goto_pagetop a {
    width: 40px;
    line-height: 40px;
  }
  #footer2020 .goto_pagetop a img {
    width: 15px;
  }
  #footer2020 .main_footer {
    padding: 30px 0;
  }
  #footer2020 .main_footer .inner {
    display: block;
  }
  #footer2020 .main_footer .inner > dl > dt {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  #footer2020 .main_footer .inner .nav_product {
    display: none;
  }
  #footer2020 .main_footer .inner .nav_service {
    display: none;
  }
  #footer2020 .main_footer .inner .tel_mail > dt {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer2020 .main_footer .inner .tel_mail > dd .tel,
  #footer2020 .main_footer .inner .tel_mail > dd .mail {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer2020 .main_footer .inner .tel_mail > dd p {
    float: none;
    font-size: 1.4rem;
  }
  #footer2020 .main_footer .inner .tel_mail > dd p.contact {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer2020 .main_footer .inner .tel_mail > dd p.contact a {
    padding-left: 0;
    text-align: center;
  }
  #footer2020 .main_footer .inner .tel_mail > dd p.sample {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  #footer2020 .main_footer .inner .tel_mail > dd p.sample a {
    padding-left: 0;
    text-align: center;
  }
  #footer2020 .main_footer .inner .tel_mail > dd ul {
    padding: 0;
    justify-content: space-between;
    font-size: 1.4rem;
  }
  #footer2020 .main_footer .inner .tel_mail > dd ul li + li {
    margin-left: 0;
  }
  #footer2020 .main_footer .inner .tel_mail > dd ul li.blog {
    flex-grow: 1;
  }
  #footer2020 .main_footer .inner .tel_mail > dd ul li.tw {
    margin-left: 20px;
  }
  #footer2020 .main_footer .inner .tel_mail > dd ul li.blog a {
    width: 100%;
    background-position: 25px center;
  }
  #footer2020 .info_footer {
    padding: 31px 0 24px;
  }
  #footer2020 .info_footer .inner {
    display: block;
  }
  #footer2020 .info_footer .inner .logo_kasamart dt {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer2020 .info_footer .inner .logo_kasamart dt a {
    width: calc(50% - 5px);
  }
  #footer2020 .info_footer .inner .logo_kasamart dt img {
    margin-right: 0;
    width: 100%;
    height: auto;
  }
  #footer2020 .info_footer .inner .logo_kasamart dd {
    line-height: 17px;
    margin-top: 12px;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon dt {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon dt .img1 {
    top: 0;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon dt .img2 img {
    width: 240px;
    height: auto;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon {
    width: auto;
    margin-top: 0;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon dt {
    padding-left: 0;
    text-align: center;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon dd {
    line-height: 1.5;
    margin-top: 10px;
  }
  #footer2020 .sub_footer {
    padding: 10px 20px;
  }
  #footer2020 .sub_footer ul {
    display: block;
  }
  #footer2020 .sub_footer ul li {
    margin: 0;
    text-align: right;
  }
  #footer2020 .sub_footer ul li a {
    line-height: 36px;
    background: url("../images/common/arrow_next_white.svg") no-repeat right
      center;
    background-size: 6px auto;
    padding-right: 15px;
  }
}

#footer2020 .main_footer .inner .tel_mail > ul li f_banner {
  background: #fff;
  border-radius: 10px;
  margin-top: 92px;
  display: flex;
  padding: 14px;
  align-items: center;
}

/*------------------------------------------------------------
商品リスト：トップ下層共通
------------------------------------------------------------*/
.product_list > ul,
.product_list > ol {
  display: flex;
  flex-wrap: wrap;
}
.product_list > ul > li,
.product_list > ol > li {
  width: 160px;
  padding: 0 0 50px;
  margin-bottom: 50px;
  margin-right: calc(((100% - (160px * 4)) / 3) - 0.01px);
  position: relative;
}
.product_list > ul > li:nth-child(4n),
.product_list > ol > li:nth-child(4n) {
  margin-right: 0;
}
.product_list > ul > li figure,
.product_list > ol > li figure {
  text-align: center;
  position: relative;
  height: 160px;
}
.product_list > ul > li figure a:hover,
.product_list > ol > li figure a:hover {
  opacity: 0.6;
}
.product_list > ul > li figure img,
.product_list > ol > li figure img {
  max-width: 160px;
  height: auto;
}
.product_list > ul > li figure .size_mark,
.product_list > ol > li figure .size_mark {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  background: #e4007f;
  text-align: center;
  width: 30px;
  border-radius: 100%;
}
.product_list > ul > li figure figcaption ul,
.product_list > ol > li figure figcaption ul {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  overflow: hidden;
}
.product_list > ul > li figure figcaption ul li,
.product_list > ol > li figure figcaption ul li {
  float: left;
  clear: both;
  font-size: 1.1rem;
  line-height: 22px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  padding: 0 10px;
  min-width: 68px;
  border-radius: 11px;
}
.product_list > ul > li figure figcaption ul li + li,
.product_list > ol > li figure figcaption ul li + li {
  margin-top: 10px;
}
.product_list > ul > li figure figcaption ul li.popular,
.product_list > ol > li figure figcaption ul li.popular {
  background: #f6ab00;
}
.product_list > ul > li figure figcaption ul li.eco,
.product_list > ol > li figure figcaption ul li.eco {
  background: #58bc33;
}
.product_list > ul > li figure figcaption ul li.standard,
.product_list > ol > li figure figcaption ul li.standard {
  background: #004b9e;
}
.product_list > ul > li figure figcaption ul li.new_item,
.product_list > ol > li figure figcaption ul li.new_item {
  background: #e4007f;
}
.product_list > ul > li figure figcaption ul li.antibacterial,
.product_list > ol > li figure figcaption ul li.antibacterial {
  background: #00a1a7;
}
.product_list > ul > li figure figcaption ul li.price_cut,
.product_list > ol > li figure figcaption ul li.price_cut {
  background: #ff0000;
}
.product_list > ul > li figure figcaption ul li.campaign,
.product_list > ol > li figure figcaption ul li.campaign {
  background: #fff94c;
  color: #333;
}
.product_list > ul > li figure figcaption ul li.other,
.product_list > ol > li figure figcaption ul li.other {
  background: #bc3338;
}
.product_list > ul > li h3,
.product_list > ol > li h3 {
  font-size: 1.6rem;
  min-height: 20px;
  padding-left: 20px;
  margin-top: 10px;
  line-height: 1.2;
  background: no-repeat left top;
  background-size: 16px auto;
}
.product_list > ul > li h3.clearfile,
.product_list > ol > li h3.clearfile {
  background-image: url("../images/common/icon_clearfile_blue.svg");
}
.product_list > ul > li h3.ondemand,
.product_list > ol > li h3.ondemand {
  background-image: url("../images/common/icon_ondemand_blue.svg");
}
.product_list > ul > li h3.case,
.product_list > ol > li h3.case {
  background-image: url("../images/common/icon_case_blue.svg");
}
.product_list > ul > li h3.bagcase,
.product_list > ol > li h3.bagcase {
  background-image: url("../images/common/icon_bagcase_blue.svg");
}
.product_list > ul > li h3.others,
.product_list > ol > li h3.others {
  background-image: url("../images/common/icon_others_blue.svg");
}
.product_list > ul > li h3.stone,
.product_list > ol > li h3.stone {
  background-image: url("../images/common/icon_stone_blue.svg");
}
.product_list > ul > li dl,
.product_list > ol > li dl {
  margin-top: 10px;
}
.product_list > ul > li dl dt,
.product_list > ol > li dl dt {
  font-size: 1.2rem;
  line-height: 1.2;
}
.product_list > ul > li dl dd,
.product_list > ol > li dl dd {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  color: #e4007f;
  margin-top: 10px;
}
.product_list > ul > li dl dd strong,
.product_list > ol > li dl dd strong {
  font-size: 3rem;
}

.product_list > ul > li dl dd span,
.product_list > ol > li dl dd span {
  font-size: 1.5rem;
}

.product_list > ul > li p,
.product_list > ol > li p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.product_list > ul > li p a,
.product_list > ol > li p a {
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 32px;
  font-weight: bold;
  background: #f6ab00;
  text-align: center;
  border-bottom: 3px solid #9f6e00;
  border-radius: 10px;
}
.product_list > ul > li p a:hover,
.product_list > ol > li p a:hover {
  border-bottom: none;
  margin-top: 3px;
}
.product_list > ol > li:before {
  display: block;
  content: "";
  width: 65px;
  height: 80px;
  background: no-repeat center center;
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 1;
}
.product_list > ol > li:nth-child(1):before {
  background-image: url("../images/top/img_rank01.svg");
}
.product_list > ol > li:nth-child(2):before {
  background-image: url("../images/top/img_rank02.svg");
}
.product_list > ol > li:nth-child(3):before {
  background-image: url("../images/top/img_rank03.svg");
}

@media screen and (max-width: 812px) {
  .product_list > ul,
  .product_list > ol {
    justify-content: space-between;
  }
  .product_list > ul > li,
  .product_list > ol > li {
    width: calc(50% - 10px);
    margin-right: 0;
  }
  .product_list > ul > li dl,
  .product_list > ol > li dl {
    margin-top: 10px;
  }
  .product_list > ul > li dl dt,
  .product_list > ol > li dl dt {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .product_list > ul > li dl dd strong,
  .product_list > ol > li dl dd strong {
    font-size: 2.4rem;
  }
  .product_list > ul > li p a,
  .product_list > ol > li p a {
    font-size: 1.4rem;
  }
  .product_list > ol > li:before {
    top: 20px;
    right: 0;
  }
}
/*------------------------------------------------------------
カレンダー・お支払い
------------------------------------------------------------*/
#calendar_payment {
  padding: 100px 0 50px;
}
#calendar_payment .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#calendar_payment h3 {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1;
  color: #004b9e;
  margin-bottom: 15px;
}
#calendar_payment .calendar {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#calendar_payment .calendar .s_calendar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: none;
}
#calendar_payment .calendar .s_calendar table {
  order: 1;
  display: inline-table;
}
#calendar_payment .calendar .s_calendar table + table {
  margin-top: 15px;
}
#calendar_payment .calendar .s_calendar .s_calendar_ex {
  order: 0;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  margin-bottom: 5px;
}
#calendar_payment .calendar .flexwrap {
   margin: 25px 0 0 15px;
  font-size: 1.2rem;
  line-height: 1.3;
}
#calendar_payment .calendar .flexwrap p {
  padding-left: 1em;
  text-indent: -1em;
}
#calendar_payment .calendar .flexwrap p.red {
  color: #bc3338;
  margin-bottom: 15px;
}
#calendar_payment .calendar .flexwrap dl {
  margin-left: 1em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#calendar_payment .calendar .flexwrap dl dt {
  width: 50%;
}
#calendar_payment .calendar .flexwrap dl dd {
  width: 50%;
}
#calendar_payment .calendar .flexwrap .auto_calc {
  margin-top: 15px;
  text-align: center;
}
#calendar_payment .calendar .flexwrap .auto_calc a {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
#calendar_payment .calendar .flexwrap .auto_calc a img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 812px) {
  #calendar_payment .calendar .flexwrap .auto_calc a,
  #side_nav2020.page_item #calendar_payment .calendar .flexwrap .auto_calc a {
    width: 285px;
    height: 58px;
    display: block;
    background: url(../images/common/button_nouki_keisan_off.png) no-repeat
      center center;
    background-size: 100% auto;
  }
  #calendar_payment .calendar .flexwrap .auto_calc a:hover,
  #side_nav2020.page_item
    #calendar_payment
    .calendar
    .flexwrap
    .auto_calc
    a:hover {
    background: url(../images/common/button_nouki_keisan_on.png) no-repeat
      center center;
    background-size: 100% auto;
  }
  #calendar_payment .calendar .flexwrap .auto_calc a img {
    width: 100%;
    height: auto;
    display: none;
  }
}
#calendar_payment .payment dl {
  margin-bottom: 30px;
}
#calendar_payment .payment dl dd {
  margin-top: 10px;
}
#calendar_payment .payment dl dd img {
  margin-right: 10px;
}
#calendar_payment .payment p a {
  color: #004b9e;
}
#calendar_payment .payment p a:hover {
  text-decoration: none;
}
#calendar_payment .payment figure {
  margin-top: 20px;
}

.payment .auto_calc {
  margin-top: 10px;
  margin-bottom: 20px;
}

.payment .auto_calc img {
  width: 100%;
}
@media screen and (min-width: 812px) {
  .payment .auto_calc a,
  #side_nav2020.page_item .payment .auto_calc a {
    width: 285px;
    height: 58px;
    display: block;
    background: url(../images/common/button_souryou_keisan_off.png) no-repeat
      center center;
    background-size: 100% auto;
  }
  .payment .auto_calc a:hover,
  #side_nav2020.page_item .payment .auto_calc a:hover {
    background: url(../images/common/button_souryou_keisan_on.png) no-repeat
      center center;
    background-size: 100% auto;
  }
  .payment .auto_calc img {
    display: none;
  }
}

@media screen and (max-width: 812px) {
  #calendar_payment {
    padding: 40px 0;
  }
  #calendar_payment .inner {
    display: block;
  }
  #calendar_payment .calendar {
    display: block;
    width: auto;
  }
  #calendar_payment .calendar .s_calendar {
    width: auto;
  }
  #calendar_payment .calendar .s_calendar table {
    width: 48%;
  }
  #calendar_payment .calendar .s_calendar table + table {
    margin-top: 0;
  }
  #calendar_payment .calendar .flexwrap {
    width: auto;
    margin: 15px 0 0;
  }
  #calendar_payment .payment {
    margin-top: 30px;
  }
  #calendar_payment .payment p {
    font-size: 1.4rem;
  }
  #calendar_payment .payment figure img {
    max-width: 100%;
    height: auto;
  }
}
/*------------------------------------------------------------
パンくず
------------------------------------------------------------*/
#pan2020 ul {
  padding-top: 10px;
  white-space: nowrap;
}
#pan2020 ul li {
  display: inline-block;
  line-height: 40px;
}
#pan2020 ul li:after {
  display: inline-block;
  content: ">";
  padding: 0 10px;
}
#pan2020 ul li:last-child:after {
  display: none;
}
#pan2020 ul li.current-item {
  color: #000;
}
#pan2020 ul li a {
  text-decoration: none;
  color: #004b9e;
}
#pan2020 ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 812px) {
  #pan2020 ul {
    padding-top: 5px;
    white-space: normal;
  }
  #pan2020 ul li {
    line-height: 1.2;
  }
}
/*------------------------------------------------------------
コンテンツタイトル
------------------------------------------------------------*/
#content_title2020 {
  margin-top: -50px;
  background: #eaeaea;
}
#content_title2020 h1 {
  padding: 50px 0;
}

@media screen and (max-width: 812px) {
  #content_title2020 {
    margin-top: -40px;
  }
}
/*------------------------------------------------------------
コンテンツラップ：サイドナビ有り用
------------------------------------------------------------*/
#content_wrap2020 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  padding: 10px 0 160px;
}

@media screen and (max-width: 812px) {
  #content_wrap2020 {
    display: block;
    padding: 20px 0 40px;
  }
}
/*------------------------------------------------------------
サイドナビ有用コンテンツ
------------------------------------------------------------*/
#content2020 {
  width: 860px;
}
#content2020.page_item {
  width: 765px;
}

@media screen and (max-width: 812px) {
  #content2020 {
    width: auto;
    padding: 0 20px;
  }
  #content2020.page_item {
    width: auto;
  }
}
/*------------------------------------------------------------
サイドナビ
------------------------------------------------------------*/
#side_nav2020 {
  width: 190px;
}
#side_nav2020.page_item {
  width: 285px;
}
#side_nav2020 > h2 {
  font-size: 2.1rem;
  color: #004b9e;
  padding: 20px 0 40px;
}
#side_nav2020 .side_product_search {
  font-weight: bold;
  margin-bottom: 30px;
}
#side_nav2020 .side_product_search form {
  display: flex;
}
#side_nav2020 .side_product_search input[type="search"] {
  width: calc(100% - 70px);
  border-radius: 10px 0 0 10px;
}
#side_nav2020 .side_product_search input[type="submit"] {
  width: 70px;
  border-radius: 0 10px 10px 0;
}
#side_nav2020 .side_free_area {
  padding: 18px;
  border: 1px solid #c1c1c1;
  border-radius: 9px;
  line-height: 1.5;
}
#side_nav2020 .side_free_area h2 {
  font-size: 1.6rem;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}
#side_nav2020 .side_free_area h3 {
  color: #004b9e;
  margin-top: 20px;
}
#side_nav2020 .side_free_area table {
  margin: 20px auto;
}
#side_nav2020 .side_free_area table th {
  padding: 5px 10px;
}
#side_nav2020 .side_free_area table td {
  padding: 5px 10px;
}
#side_nav2020 .side_free_area dl + dl {
  margin-top: 30px;
}
#side_nav2020 .side_free_area dl dt {
  color: #004b9e;
  font-weight: bold;
}
#side_nav2020 .side_free_area dl dt a {
  text-decoration: none;
}
#side_nav2020 .side_free_area dl dt a:hover {
  text-decoration: underline;
}
#side_nav2020 .side_free_area dl dd {
  padding-left: 1em;
  margin-top: 8px;
}
#side_nav2020 .side_free_area dl dd.current {
  color: #e4007f;
}
#side_nav2020 .side_free_area dl dd a {
  text-decoration: none;
}
#side_nav2020 .side_free_area dl dd a:hover {
  text-decoration: underline;
}
#side_nav2020 .side_free_area .category_list {
  margin-top: 5px;
}
#side_nav2020 .side_free_area .category_list a {
  font-weight: bold;
  line-height: 21px;
}
#side_nav2020 .side_free_area .category_list > li {
  margin-bottom: 32px;
}
#side_nav2020 .side_free_area .category_list > li:last-child {
  margin-bottom: 15px;
}
#side_nav2020 .side_free_area .category_list .middle {
  margin-top: 13px;
  padding-left: 19px;
}
#side_nav2020 .side_free_area .category_list .middle li {
  margin-bottom: 13px;
}
#side_nav2020 .side_free_area .category_list .middle a {
  font-weight: normal;
}
#side_nav2020 .side_free_area .category_list .small {
  margin-top: 1px;
  padding-left: 18px;
}
#side_nav2020 .side_free_area .category_list .small li {
  margin-bottom: 0;
}
#side_nav2020 .side_free_area .category_list .small a {
  line-height: 29px;
  font-weight: normal;
}
#side_nav2020 .side_free_area .category_list li {
  list-style-type: none;
  margin-left: 0;
}
#side_nav2020 .side_free_area .category_list li a {
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
#side_nav2020 .side_product_list {
  padding: 18px;
  border: 1px solid #c1c1c1;
  border-radius: 9px;
  line-height: 1.5;
}
#side_nav2020 .side_product_list dl + dl {
  margin-top: 30px;
}
#side_nav2020 .side_product_list dl dt {
  color: #004b9e;
  font-weight: bold;
}
#side_nav2020 .side_product_list dl dt a {
  text-decoration: none;
}
#side_nav2020 .side_product_list dl dt a:hover {
  text-decoration: underline;
}
#side_nav2020 .side_product_list dl dd {
  padding-left: 1em;
  margin-top: 8px;
}
#side_nav2020 .side_product_list dl dd.current {
  color: #e4007f;
}
#side_nav2020 .side_product_list dl dd a {
  text-decoration: none;
}
#side_nav2020 .side_product_list dl dd a:hover {
  text-decoration: underline;
}
#side_nav2020 .side_free_area + #calendar_payment {
  padding: 50px 0 0;
}
#side_nav2020 #calendar_payment {
  padding: 0;
}
#side_nav2020 #calendar_payment .inner {
  width: auto;
  display: block;
}
#side_nav2020 #calendar_payment .calendar {
  display: block;
  margin-bottom: 30px;
}
#side_nav2020 #calendar_payment .calendar .xo-event-calendar {
  width: auto;
}
#side_nav2020 #calendar_payment .calendar .xo-event-calendar .xo-month-wrap {
  float: none;
  width: 100%;
}
#side_nav2020
  #calendar_payment
  .calendar
  .xo-event-calendar
  .xo-month-wrap
  + .xo-month-wrap {
  margin-left: 0;
}
#side_nav2020 #calendar_payment .calendar ul {
  width: auto;
  margin-left: 0;
}
#side_nav2020 #calendar_payment .paymant h3:first-child,
#side_nav2020 #calendar_payment .paymant dl,
#side_nav2020 #calendar_payment .paymant figure {
  display: none;
}
#side_nav2020 #calendar_payment .paymant p a {
  display: block;
}

@media screen and (max-width: 812px) {
  #side_nav2020 {
    width: auto;
    padding: 20px 20px 0;
  }
  #side_nav2020.page_item {
    width: auto;
  }
  #side_nav2020 h2 {
    display: none;
  }
  #side_nav2020 .side_product_search input[type="search"] {
    border-radius: 5px 0 0 5px;
  }
  #side_nav2020 .side_product_search input[type="submit"] {
    border-radius: 0 5px 5px 0;
  }
  #side_nav2020 .side_free_area {
    overflow: hidden;
  }
  #side_nav2020 .side_free_area h2 {
    font-size: 1.4rem;
    display: block;
  }
  #side_nav2020 .side_free_area dl {
    float: left;
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  #side_nav2020 .side_free_area dl + dl {
    margin-top: 0;
  }
  #side_nav2020 .side_free_area dl:nth-of-type(odd) {
    clear: both;
    margin-right: 10px;
  }
  #side_nav2020 .side_free_area dl:nth-of-type(even) {
    margin-left: 10px;
  }
  #side_nav2020 .side_product_list {
    padding: 0;
    border: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #side_nav2020 .side_product_list dl {
    width: calc(50% - 10px);
    margin-top: 30px;
  }
  #side_nav2020 #calendar_payment {
    padding: 40px 0 0;
  }
  #side_nav2020 #calendar_payment .inner {
    padding: 0;
  }
}
/*------------------------------------------------------------
お知らせリスト
------------------------------------------------------------*/
#news_list2020,
#blog_list2020 {
  padding-top: 50px;
}
#news_list2020 .inner > ul,
#blog_list2020 .inner > ul {
  margin-top: 40px;
}
#news_list2020 .inner > ul > li,
#blog_list2020 .inner > ul > li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}
#news_list2020 .inner > ul > li a,
#blog_list2020 .inner > ul > li a {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
#news_list2020 .inner > ul > li a:hover dd,
#blog_list2020 .inner > ul > li a:hover dd {
  text-decoration: underline;
}
#news_list2020 .inner > ul > li a p,
#blog_list2020 .inner > ul > li a p {
  float: left;
  text-align: center;
  line-height: 36px;
  width: 130px;
  border: 1px solid #727171;
  border-radius: 18px;
}
#news_list2020 .inner > ul > li a dl,
#blog_list2020 .inner > ul > li a dl {
  margin-left: 150px;
  overflow: hidden;
  margin-top: 5px;
}
#news_list2020 .inner > ul > li a dl dt,
#blog_list2020 .inner > ul > li a dl dt {
  padding-top: 3px;
  float: left;
  width: 120px;
  color: #004b9e;
}
#news_list2020 .inner > ul > li a dl dd,
#blog_list2020 .inner > ul > li a dl dd {
  margin-left: 120px;
  font-size: 1.6rem;
}

@media screen and (max-width: 812px) {
  #news_list2020,
  #blog_list2020 {
    padding-top: 25px;
  }
  #news_list2020 .inner > ul,
  #blog_list2020 .inner > ul {
    margin-top: 20px;
  }
  #news_list2020 .inner > ul > li,
  #blog_list2020 .inner > ul > li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #news_list2020 .inner > ul > li a,
  #blog_list2020 .inner > ul > li a {
    position: relative;
  }
  #news_list2020 .inner > ul > li a p,
  #blog_list2020 .inner > ul > li a p {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.4rem;
  }
  #news_list2020 .inner > ul > li a dl,
  #blog_list2020 .inner > ul > li a dl {
    margin-left: 0;
    margin-top: 0;
  }
  #news_list2020 .inner > ul > li a dl dt,
  #blog_list2020 .inner > ul > li a dl dt {
    padding-top: 0;
    float: none;
    width: auto;
    font-size: 1.4rem;
    line-height: 38px;
    margin-left: 150px;
  }
  #news_list2020 .inner > ul > li a dl dd,
  #blog_list2020 .inner > ul > li a dl dd {
    margin-left: 0;
    margin-top: 15px;
  }
}
/*------------------------------------------------------------
News List 2021
------------------------------------------------------------*/
#news_list2021 {
  padding-top: 50px;
}
#news_list2021 .c-newList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#news_list2021 .c-newList__main {
  width: 45%;
}
#news_list2021 .c-newList__list {
  margin-top: 40px;
}
#news_list2021 .c-newList__items {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}
#news_list2021 .c-newList__items a {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
#news_list2021 .c-newList__items a:hover .c-newList__tlt {
  text-decoration: underline;
}
#news_list2021 .c-newList__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#news_list2021 .c-newList__news {
  content: "NEW!";
  font-size: 1.4rem;
  color: #e4057f;
  padding-left: 130px;
}
#news_list2021 .c-newList__cat {
  width: 130px;
}
#news_list2021 .c-newList__cat p {
  text-align: center;
  line-height: 30px;
  width: 100px;
  text-align: center;
  display: inline-block;
  border: 1px solid #707070;
  border-radius: 18px;
  font-size: 1.4rem;
  color: #727171;
}
#news_list2021 .c-newList__date {
  color: #004b9e;
  padding-top: 0;
  width: auto;
  font-size: 1.4rem;
  line-height: 38px;
  width: 100px;
}
#news_list2021 .c-newList__tlt {
  margin-left: 0;
  font-size: 1.6rem;
  min-height: 54px;
  flex: 1;
  display: flex;
  align-items: center;
}
#news_list2021 .bt_news_list {
  width: 210px;
  margin: 40px auto 0;
}
#news_list2021 .bt_news_list a {
  display: block;
  text-decoration: none;
  line-height: 36px;
  color: #fff;
  background: #004b9e;
  text-align: center;
  border: 2px solid #004b9e;
  border-radius: 20px;
}
#news_list2021 .bt_news_list a:hover {
  color: #004b9e;
  background-color: #fff;
}

@media screen and (max-width: 812px) {
  #news_list2021 {
    padding-top: 25px;
  }
  #news_list2021 .c-newList__main {
    width: 100%;
    margin-bottom: 30px;
  }
  #news_list2021 .c-newList__main:last-child {
    margin-bottom: 0;
  }
  #news_list2021 .c-newList__list {
    margin-top: 20px;
  }
  #news_list2021 .c-newList__tlt {
    min-height: auto;
    flex: inherit;
    width: 100%;
    margin-top: 15px;
  }
  #news_list2021 .bt_news_list {
    margin-top: 30px;
  }
  #news_list2021 .bt_news_list a {
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------
ページネーション
------------------------------------------------------------*/
.pagination {
  clear: both;
  width: 100%;
  margin-top: 40px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  text-align: center;
}
.pagination ul li {
  margin: 0 5px;
  border: 1px solid #004b9e;
  width: 38px;
  line-height: 38px;
}
.pagination ul li a {
  display: block;
  text-decoration: none;
  color: #004b9e;
  font-size: 16px;
  font-weight: bold;
}
.pagination ul li a:hover {
  color: #fff;
  background: #004b9e;
}
.pagination ul li.pager_prev,
.pagination ul li.pager_next {
  border: none;
  margin: 0;
}
.pagination ul li.pager_prev a,
.pagination ul li.pager_next a {
  background-size: 12px auto;
  text-indent: 100%;
  overflow: hidden;
}
.pagination ul li.pager_prev {
  margin-right: 15px;
}
.pagination ul li.pager_prev a {
  background: url("../images/common/arrow_prev_blue.svg") no-repeat right center;
}
.pagination ul li.pager_prev a:hover {
  background-position: right 10px center;
}
.pagination ul li.pager_next {
  margin-left: 15px;
}
.pagination ul li.pager_next a {
  background: url("../images/common/arrow_next_blue.svg") no-repeat left center;
}
.pagination ul li.pager_next a:hover {
  background-position: 10px center;
}
.pagination ul li.pager_current {
  color: #fff;
  background: #004b9e;
  border: 1px solid transparent;
}
.pagination ul li.pager_dot {
  border: none;
  margin: 0;
}
.pagination ul li.pn-prev {
  width: 76px;
  height: 40px;
  border: none;
}
.pagination ul li.pn-prev a {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  width: 76px;
  height: 40px;
  border: 3px solid #004b9e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.pagination ul li.pn-next {
  width: 76px;
  height: 40px;
  border: none;
}
.pagination ul li.pn-next a {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  width: 76px;
  height: 40px;
  border: 3px solid #004b9e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.pagination ul li.pn-next a:hover,
.pagination ul li.pn-prev a:hover {
  color: #fff;
  background: #004b9e;
}
@media screen and (max-width: 812px) {
  .pagination {
    margin-top: 20px;
  }
  .pagination ul {
    align-items: center;
  }
  .pagination ul li {
    margin: 0 2px;
    width: 28px;
    line-height: 28px;
  }
  .pagination ul li.pager_prev a,
  .pagination ul li.pager_next a {
    background-size: 12px auto;
  }
  .pagination ul li.pn-next {
    height: 30px;
    width: 50px;
  }
  .pagination ul li.pn-next a {
    height: 30px;
    width: 50px;
    font-size: 12px;
  }
  .pagination ul li.pn-prev {
    height: 30px;
    width: 50px;
  }
  .pagination ul li.pn-prev a {
    height: 30px;
    width: 50px;
    font-size: 12px;
  }
}
/*------------------------------------------------------------
投稿ナビゲーション
------------------------------------------------------------*/
.post_navigation {
  clear: both;
  margin-top: 80px;
}
.post_navigation ul {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
}
.post_navigation ul li a {
  display: block;
  text-decoration: none;
}
.post_navigation ul li.prev,
.post_navigation ul li.next {
  width: 80px;
}
.post_navigation ul li.prev a,
.post_navigation ul li.next a {
  color: #004b9e;
  font-weight: bold;
  line-height: 46px;
  border-bottom: 2px solid #004b9e;
}
.post_navigation ul li.prev a {
  text-align: right;
  background: url("../images/common/arrow_prev_blue.svg") no-repeat left center;
}
.post_navigation ul li.prev a:hover {
  background-position: 10px center;
}
.post_navigation ul li.next a {
  text-align: left;
  background: url("../images/common/arrow_next_blue.svg") no-repeat right center;
}
.post_navigation ul li.next a:hover {
  background-position: right 10px center;
}
.post_navigation ul li.backto_list {
  margin: 0 100px;
}
.post_navigation ul li.backto_list a {
  color: #fff;
  line-height: 44px;
  background: #004b9e;
  width: 226px;
  padding: 0 10px;
  border: 2px solid #004b9e;
  border-radius: 10px;
}
.post_navigation ul li.backto_list a:hover {
  color: #004b9e;
  background: #fff;
}

@media screen and (max-width: 812px) {
  .post_navigation {
    margin-top: 40px;
  }
  .post_navigation ul {
    position: relative;
  }
  .post_navigation ul li.prev,
  .post_navigation ul li.next {
    width: 60px;
    position: absolute;
    top: 0;
  }
  .post_navigation ul li.prev a,
  .post_navigation ul li.next a {
    background-size: 12px auto;
  }
  .post_navigation ul li.prev {
    left: 0;
  }
  .post_navigation ul li.next {
    right: 0;
  }
  .post_navigation ul li.backto_list {
    margin: 0 auto;
  }
  .post_navigation ul li.backto_list a {
    width: 126px;
    border-radius: 5px;
  }
}
/*------------------------------------------------------------
記事詳細
------------------------------------------------------------*/
.post_area h1 {
  clear: both;
}
.post_area h2:not(.title_middle_blue) {
  clear: both;
}
.post_area h3 {
  clear: both;
  margin-top: 40px;
}
.post_area p {
  clear: both;
  margin-top: 20px;
  overflow: hidden;
}
.post_area p.alignleft {
  float: left;
}
.post_area p.aligncenter {
  float: none;
}
.post_area p.alignright {
  float: right;
}
.post_area p a,
.post_area li a,
.post_area dl a,
.post_area table a {
  color: #004b9e;
}
.post_area p a:hover,
.post_area li a:hover,
.post_area dl a:hover,
.post_area table a:hover {
  text-decoration: none;
}
.post_area img {
  max-width: 100%;
  height: auto;
}
.post_area img.alignleft {
  float: left;
  margin: 5px 60px 5px 0;
}
.post_area img.aligncenter {
  float: none;
  display: block;
  margin: 10px auto;
}
.post_area img.alignright {
  float: right;
  margin: 5px 0 5px 60px;
}
.post_area ul {
  clear: both;
  margin-top: 20px;
}
.post_area ul li:not(.prev):not(.backto_list):not(.next) {
  list-style: disc;
  margin-left: 1.5em;
}
.post_area ol {
  clear: both;
  margin-top: 20px;
}
.post_area ol li:not(.prev):not(.backto_list):not(.next) {
  list-style: decimal;
  margin-left: 1.5em;
}
.post_area table {
  clear: both;
  width: 100%;
  border: 1px solid #a2a2a2;
  margin: 40px auto;
}
.post_area table caption {
  text-align: left;
}
.post_area table th {
  border: 1px solid #a2a2a2;
  vertical-align: middle;
  padding: 25px 30px;
  color: #004b9e;
  background: #eaeaea;
  text-align: left;
}
.post_area table td {
  border: 1px solid #a2a2a2;
  vertical-align: middle;
  padding: 25px 30px;
}

@media screen and (max-width: 812px) {
  .post_area p {
    margin-top: 10px;
  }
  .post_area img {
    max-width: 280px;
  }
  .post_area img.alignleft,
  .post_area img.alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .post_area ul {
    margin-top: 10px;
  }
  .post_area ol {
    margin-top: 10px;
  }
  .post_area table {
    margin: 20px auto;
  }
  .post_area table th {
    padding: 5px 10px;
  }
  .post_area table td {
    padding: 5px 10px;
  }
}
/*------------------------------------------------------------
固定ページラッパー
------------------------------------------------------------*/
#page_wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 812px) {
  #page_wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.souryou_list {
  font-size: 14px;
  font-weight: bold;
}

/*------------------------------------------------------------
チャット復旧CSS
------------------------------------------------------------*/
.chat-window-toggled {
  width: 233px !important;
  height: 145px !important;
  bottom: 10px !important;
}

.chat-window-toggled::after {
  content: "" !important;
  background: url(/img/chat/chatbot_close.png) no-repeat left top !important;
  width: 35px !important;
  height: 35px !important;
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  cursor: pointer;
}

.chat-window-toggled .chat-header {
  background: url(/img/chat/chatbot.png) no-repeat left top !important;
  width: 233px !important;
  height: 145px !important;
  overflow: hidden !important;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
}

.chat-window-toggled .chat-header:before,
.chat-window-toggled-mobile div:before {
  display: none;
}

.chat-window-toggled .chat-header {
  border-bottom: none !important;
}

/*# sourceMappingURL=common2020.css.map */

.c-menu_footer {
  background: #e8e8e8;
  padding: 51px 0 57px;
  color: #5a5a5a;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: 38px;
}
.c-menu_footer .inner {
  display: flex;
  justify-content: space-between;
}
.c-menu_footer .inner .left-menu {
  width: 605px;
  padding-left: 76px;
}
.c-menu_footer .inner .left-menu h3 {
  font-size: 1.6rem;
  margin-bottom: 11px;
}
.c-menu_footer .inner .left-menu a {
  text-decoration: none;
  font-size: 1.2rem;
  padding-left: 16px;
  position: relative;
}
.c-menu_footer .inner .left-menu .sub {
  margin-bottom: 29px;
}
.c-menu_footer .inner .left-menu .in-sub {
  display: flex;
}
.c-menu_footer .inner .left-menu ul {
  margin-right: 42px;
  min-width: 181px;
}
.c-menu_footer .inner .left-menu ul:last-child {
  margin-right: 0;
}
.c-menu_footer .inner .left-menu li {
  margin-bottom: 9px;
}
.c-menu_footer .inner .left-menu li:last-child {
  margin-bottom: 0;
}
.c-menu_footer .inner .left-menu a:before {
  border: solid #004b9e;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  left: 1px;
  top: 4px;
}

.c-menu_footer .right-menu {
  width: calc(100% - 605px);
}
.c-menu_footer .right-menu h3 {
  font-size: 1.6rem;
}
.c-menu_footer .right-menu .time {
  font-size: 1.6rem;
  line-height: 26px;
  font-weight: normal;
  background: no-repeat left center;
  padding-left: 40px;
  background-image: url(../images/common/ico_tell.svg);
  margin: 18px 0 6px;
}
.c-menu_footer .right-menu .mail {
  font-size: 1.6rem;
  line-height: 26px;
  font-weight: normal;
  background: no-repeat left center;
  padding-left: 40px;
  background-image: url(../images/common/ico_mail.svg);
  margin: 16px 0 5px;
}
.c-menu_footer .right-menu .list-bnt {
  display: flex;
  margin: 20px 0 1px;
}
.c-menu_footer .right-menu .list-bnt p {
  width: 190px;
  margin-right: 20px;
}
.c-menu_footer .right-menu .list-bnt p:last-child {
  margin-right: 0;
}
.c-menu_footer .right-menu .contact a {
  display: block;
  line-height: 38px;
  text-decoration: none;
  color: #5a5a5a;
  border: 1px solid #5a5a5a;
  background: url(../images/common/ico_mail.svg) no-repeat 35px center;
  background-size: 22px 16px;
  padding-left: 66px;
  border-radius: 20px;
}
.c-menu_footer .right-menu .contact a:hover {
  color: #004b9e;
  background: #fff url(../images/common/icon_mail_blue.svg) no-repeat 35px
    center;
  background-size: 22px 16px;
  background-size: 22px 16px;
}
.c-menu_footer .right-menu .sample a {
  display: block;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  background: #f6ab00 url(../images/common/icon_sample.svg) no-repeat 20px
    center;
  padding-left: 50px;
  border-radius: 20px;
}
.c-menu_footer .right-menu .sample a:hover {
  opacity: 0.7;
}

.c-menu_footer .right-menu ul {
  clear: both;
  padding-top: 25px;
  display: flex;
}

.c-menu_footer .right-menu ul li a {
  display: inline-block;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
}
.c-menu_footer .right-menu ul li.blog a {
  width: 191px;
  padding-left: 30px;
  background: #003f8d url(../images/common/icon_blog.svg) no-repeat left 17px
    center;
  background-size: 23px 27px;
  color: #fff;
}
.c-menu_footer .right-menu ul li.blog a:hover {
  background: #4078b7 url(../images/common/icon_blog.svg) no-repeat left 17px
    center;
  background-size: 23px 27px;
}
.c-menu_footer .right-menu ul li.face {
  margin: 0 20px 0 30px;
}
.c-menu_footer .right-menu ul li.face:hover,
.c-menu_footer .right-menu ul li.youtube:hover {
  opacity: 0.7;
}
.c-menu_footer .right-menu ul li.face a {
  width: 36px;
}
.c-menu_footer .right-menu ul li.youtube a {
  width: 45px;
}
.c-menu_footer .right-menu ul li a img {
  vertical-align: middle;
}

@media screen and (max-width: 812px) {
  .c-menu_footer .inner .left-menu {
    display: none;
  }
  .c-menu_footer .right-menu {
    width: 100%;
  }
  .c-menu_footer {
    padding: 30px 0 35px;
  }
  .c-menu_footer .right-menu .list-bnt {
    display: block;
  }
  .c-menu_footer .right-menu .list-bnt p {
    width: 100%;
    margin-right: 0;
    margin-bottom: 17px;
    text-align: center;
    font-size: 1.4rem;
  }

  .c-menu_footer .right-menu .contact a {
    background: url(../images/common/ico_mail.svg) no-repeat 91px center;
    background-size: 25px 18px;
    padding-left: 11px;
    border-radius: 20px;
  }
  .c-menu_footer .right-menu .sample a {
    background: #f6ab00 url(../images/common/icon_sample.svg) no-repeat 93px
      center;
    padding-left: 35px;
    border-radius: 20px;
  }
  #footer2020 .info_footer .inner .logo_kasamaseihon dd {
    padding-left: 0;
  }
  .c-menu_footer .right-menu ul {
    margin-top: -16px;
  }
}

#content2020.page_post {
  width: 765px;
}
#side_nav2020.page_post {
  width: 259px;
}
#side_nav2020.page_post h2 {
  padding: 20px 0 26px;
}
#side_nav2020.page_post .c-category {
  margin-bottom: 48px;
}
#side_nav2020.page_post .c-category a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #004b9e;
  display: block;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #bebebe;
  padding: 13px 14px;
}
#side_nav2020.page_post .c-category a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 812px) {
  #content2020.page_post {
    width: auto;
  }
  #side_nav2020.page_post {
    width: auto;
  }
  #news_list2020 .inner {
    padding: 0;
  }
  #side_nav2020.page_post h2 {
    display: block;
    padding: 0 0 20px;
  }
  #side_nav2020.page_post .c-category {
    padding: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 320px) {
  .c-menu_footer .right-menu ul li.face {
    margin: 0 10px 0 20px;
  }
  .c-menu_footer .right-menu ul li.blog a {
    width: 166px;
  }
}

/* .bnt_faqheader {
  width: 191px;
  height: 70px;
  border-radius: 10px;
  background: #004B9E;
  font-size: 1.1rem;
  position: relative;
  padding-left: 60px;
  display: block;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding-top: 14px;
  margin-left: 15px;
  margin-top: 23px;
}

.bnt_faqheader:hover {
  opacity: 0.7;
}

.bnt_faqheader span {
  display: block;
  font-size: 1.9rem;
  margin-top: -5px;
  margin-left: -3px;
}

.bnt_faqheader img {
  width: 31px;
  height: 31px;
  display: block;
  position: absolute;
  top: 20px;
  left: 16px;
}

@media screen and (max-width: 1399px) {
  .bnt_faqheader img {
    width: 21px;
    height: 21px;
    top: 24px;
    left: 10px;
  }

  .bnt_faqheader span {
    font-size: 1.6rem;
    margin-top: 0;
  }

  .bnt_faqheader {
    width: 150px;
    font-size: 1rem;
    padding-left: 40px;
    padding-top: 14px;
    margin-left: 11px;
  }
}

.bnt_deliveryheader {
  width: 92px;
  height: 70px;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  position: relative;
  display: block;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  margin-top: 23px;
  padding-top: 10px;
  margin-left: 15px;
  border: 2px solid #004B9E;
  color: #004B9E;
  text-align: center;
  line-height: 14px;
}

.bnt_deliveryheader img {
  display: block;
  margin: auto auto 8px;
  width: 50px;
  height: 26px;
}
.bnt_deliveryheader:hover {
  opacity: 0.7;
} */

/* .bnt_mydesign {
  width: 92px;
  height: 70px;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  position: relative;
  display: block;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  margin-top: 23px;
  padding-top: 2px;
  margin-left: 15px;
  border: 2px solid #004B9E;
  color: #004B9E;
  text-align: center;
  line-height: 14px;
}

.bnt_mydesign img {
  display: block;
  margin: auto auto 7px;
  width: 31px;
  height: 34px;
}
.bnt_mydesign:hover {
  opacity: 0.7;
} */
@media screen and (max-width: 812px) {
  #side_nav2020 .side_free_area .category_list > li {
    margin-bottom: 15px;
  }
}

.helpfeel-launch-button {
  width: 45px !important;
  height: 265px !important;
}

.price_table_area #s_price_calc td {
  text-wrap: nowrap !important;
  padding: 0 !important;
}

.price_table_area #s_price_calc #s_price_calc_sozai {
  width: 300px !important;
}
.price_table_area #s_price_calc td:nth-child(3) {
  padding-left: 25px !important;
}

@media screen and (max-width: 812px) {
  .price_table_area #s_price_calc p {
    text-wrap: initial;
  }
  .price_table_area #s_price_calc table,
  .price_table_area #s_price_calc tbody,
  .price_table_area #s_price_calc tr,
  .price_table_area #s_price_calc td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .price_table_area #s_price_calc td {
    padding-bottom: 5px !important;
  }
  .price_table_area #s_price_calc #s_price_calc_sozai {
    width: 100%;
  }
  .price_table_area #s_price_calc td:nth-child(3) {
    padding-left: 0 !important;
  }
}

.bnt_faqheader {
  width: 160px;
  height: 70px;
  border-radius: 10px;
  background: #004b9e;
  font-size: 1rem;
  position: relative;
  padding-left: 46px;
  display: block;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding-top: 16px;
  margin-left: 12px;
  margin-top: 23px;
}

.bnt_faqheader:hover {
  opacity: 0.7;
}

.bnt_faqheader span {
  display: block;
  font-size: 1.6rem;
  margin-top: -3px;
  margin-left: -2px;
}

.bnt_faqheader img {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 22px;
  left: 11px;
}

@media screen and (max-width: 1399px) {
  .bnt_faqheader img {
    width: 21px;
    height: 21px;
    top: 24px;
    left: 10px;
  }

  .bnt_faqheader span {
    font-size: 1.6rem;
    margin-top: 0;
  }

  .bnt_faqheader {
    width: 150px;
    font-size: 1rem;
    padding-left: 40px;
    padding-top: 14px;
    margin-left: 11px;
  }
}

.bnt_deliveryheader {
  width: 92px;
  height: 70px;
  border-radius: 10px;
  font-size: 1rem;
  position: relative;
  display: block;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  margin-top: 23px;
  padding-top: 44px;
  margin-left: 17px;
  border: 2px solid #004b9e;
  color: #004b9e;
  text-align: center;
  line-height: 14px;
  background: #fff url(../images/common/icon_car_bl.svg) no-repeat top 11px
    center;
  background-size: 48px auto;
}

.bnt_deliveryheader img {
  display: none;
}
.bnt_deliveryheader:hover {
  background: #004b9e url(../images/common/icon_car_w.svg) no-repeat top 11px
    center;
  background-size: 48px auto;
  color: #fff;
}

.bnt_mydesign {
  width: 92px;
  height: 70px;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  position: relative;
  display: block;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  margin-top: 23px;
  padding-top: 44px;
  margin-left: 15px;
  border: 2px solid #004b9e;
  color: #004b9e;
  text-align: center;
  line-height: 14px;
  background: #fff url(../images/common/ico_pain_bl.svg) no-repeat top 3px
    center;
  background-size: 31px auto;
}

.bnt_mydesign img {
  display: none;
  margin: auto auto 7px;
  width: 31px;
  height: 34px;
}
.bnt_mydesign:hover {
  background: #004b9e url(../images/common/ico_pain_w.svg) no-repeat top 3px
    center;
  background-size: 31px auto;
  color: #fff;
}
@media screen and (max-width: 812px) {
  #side_nav2020 .side_free_area .category_list > li {
    margin-bottom: 15px;
  }
}

.helpfeel-launch-button {
  width: 45px !important;
  height: 265px !important;
}

@media screen and (min-width: 812px) {
  #side_nav2020 #calendar_payment .calendar .flexwrap .auto_calc a {
    width: 190px;
    height: 58px;
    display: block;
    background: url(../images/common/side_button_nouki_keisan_off.png) no-repeat
      center center;
    background-size: 100% auto;
  }
  #side_nav2020 #calendar_payment .calendar .flexwrap .auto_calc a:hover {
    background: url(../images/common/side_button_nouki_keisan_on.png) no-repeat
      center center;
    background-size: 100% auto;
  }
}

@media screen and (min-width: 812px) {
  #side_nav2020 .payment .auto_calc a {
    width: 190px;
    height: 58px;
    display: block;
    background: url(../images/common/side_button_souryou_keisan_off.png)
      no-repeat center center;
    background-size: 100% auto;
  }
  #side_nav2020 .payment .auto_calc a:hover {
    background: url(../images/common/side_button_souryou_keisan_on.png)
      no-repeat center center;
    background-size: 100% auto;
  }
}

.link-inter {
  cursor: pointer;
}

.inter-modal {
  display: none;
}

.lightBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: auto;
  width: 100%;
  height: 100%;
  text-align: center;
}

.lightBox__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(46, 46, 46, 0.8);
}

.lightBox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.lightBox__inner {
  position: relative;
  z-index: 99999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .lightBox__inner {
    width: 1080px;
  }
}
@media screen and (max-width: 767px) {
  .lightBox__inner {
    padding: 0 30px;
  }
}
.lightBox_flow .lightBox__inner .contents,
.lightBox_flow .lightBox__inner .in-lightbox {
  max-width: 1200px;
  height: auto;
}
.lightBox_flow .lightBox__inner .lightBox__close {
  display: none;
}
.lightBox__inner .contents {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  height: 100%;
  max-width: 502px;
  margin: auto;
  border-radius: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lightBox__inner .contents {
    padding: 52px 20px 41px;
  }
}
@media screen and (max-width: 767px) {
  .lightBox__inner .contents {
    padding: 30px 20px;
  }
}

.lightBox__inner .contents img {
  width: 313px;
  height: auto;
  display: block;
  margin: auto;
}

.lightBox__inner .contents p.txt {
  margin: 38px 0 40px;
  font-weight: 1.4rem;
}

.lightBox__inner .contents a {
  background: #f78930;
  border: 1px solid #f78930;
  color: #fff;
  width: 328px;
  height: 65px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  margin: auto;
  transition: 0.3s;
}
.lightBox__inner .contents a:hover {
  background: #fff;
  color: #f78930;
}

.lightBox__inner .lightBox__close {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 15px;
}

.in-lightbox {
  position: relative;
  padding-top: 28px;
  width: 100%;
  max-width: 502px;
}
@media screen and (max-width: 812px) {
  .lightBox__inner .contents img {
    width: 240px;
  }
  .lightBox__inner .contents p {
    margin: 15px 0 20px;
  }
  .lightBox__inner .contents a {
    width: 250px;
  }
}

/*bnt_topictemplate*/
.bnt_topictemplate {
  text-align: center;
  margin-top: 75px;
  margin-bottom: 92px;
}
.bnt_topictemplate a {
  max-width: 400px;
  width: 100%;
  min-height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  display: flex;
  text-align: center;
  border-radius: 20px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #004b9e;
  transition: 0.3s;
  margin: 0 auto 0;
  background: #004b9e url(../images/common/arrow_next_white.svg) no-repeat right
    20px center;
  background-size: 10px 17px;
  padding: 14px 14px;
}

.flex_center_btn {
  display: flex;
  margin-top: 45px;
  gap: 87px;
}
.flex_center_btn a {
  width: 374px;
  height: 53px;
  border-radius: 25px;
  background: #004b9e;
  border: 2px solid #004b9e;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #004b9e url(../images/common/arrow_next_white.svg) no-repeat right
    21px center;
  background-size: 7px 12px;
  color: #fff;
  transition: 0.3s all;
}
.flex_center_btn a:hover {
  background: #fff url(../images/common/arrow_next_blue.svg) no-repeat right
    21px center;
  background-size: 7px 12px;
  color: #004b9e;
}

@media screen and (max-width: 812px) {
  .flex_center_btn {
    display: block;
    margin-top: 30px;
  }
  .flex_center_btn a {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    background: #004b9e url(../images/common/arrow_next_white.svg) no-repeat
      right 10px center;
    background-size: 7px 12px;
    font-size: 1.2rem;
  }
}
