@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@400;700&display=swap"); /*-------------------
reset
-------------------*/
body, div,
dl, dt, dd,
ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre, form, fieldset, p, blockquote,
table, th, td,
a {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
}

table, th, td {
  border-collapse: collapse;
  font-weight: 500;
}

fieldset, img, iframe {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

object, embed {
  line-height: 0;
  vertical-align: middle;
}

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

iframe {
  background-color: transparent;
}

ol, ul {
  clear: both;
  list-style-type: none;
}

br {
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p {
  display: block;
  font-weight: 500;
}

a {
  outline: none;
  text-decoration: none;
}

input {
  border: 0;
  line-height: 1;
}

* {
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*-------------------
setting
-------------------*/
:root {
  /* color */
  --RED01: #b82e29;
  --RED02: #85210a;
  --RED03: #d61900;
  --BEIGE01: #bf9e65;
  --BEIGE02: #ab8850;
  --BEIGE03: #f8f4e2;
  --BEIGE04: #eeead9;
  --BEIGE05: #d7caa1;
  --YELLOW01: #ffdf04;
  --GRAY01: #333;
  --GRAY02: #7b7b7b;
  /* category color */
  --COL_COLUMN_FUNDING: #cb8f27;
  --COL_COLUMN_BUKKEN: #3097b1;
  --COL_COLUMN_INTERIOR: #d77823;
  --COL_COLUMN_KITCHEN: #86918a;
  --COL_COLUMN_EQUIPMENT: #b82e29;
  --COL_COLUMN_POS: #222d97;
  --COL_COLUMN_MENU: #2e7a36;
  --COL_COLUMN_PURCHASE: #81bc41;
  --COL_COLUMN_PROMOTION: #9468ba;
  --COL_COLUMN_EDUCATION: #477ccb;
  /* font */
  --FONT_NORMAL: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --FONT_ROBOTO: "Roboto", sans-serif;
  --FONT_BIZ: "BIZ UDPMincho", serif;
}

/*-------------------
common
-------------------*/
/*--- リキッドレイアウト対応 ---*/
html {
  font-size: 16px;
}
@media screen and (max-width: 940px) {
  html {
    font-size: 1.7021276596vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
}

/*--- リキッドレイアウト対応 end ---*/
body {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--FONT_NORMAL);
  color: #000;
  line-height: 1.625;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.75rem;
  }
}

main {
  overflow: hidden;
}

a {
  transition: 0.2s;
  color: #285cbc;
}
a:hover {
  opacity: 0.8;
}
a.__noLink {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.5;
}

button {
  transition: 0.2s;
}

.inner {
  max-width: 940px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 2.5rem;
  }
}

.mainCont_01 {
  display: flex;
  gap: 2.75rem;
  padding: 2rem 0 5.9375rem;
}
@media screen and (max-width: 767px) {
  .mainCont_01 {
    flex-direction: column;
    gap: 2.1875rem;
    padding: 2.5rem 0 7.5rem;
  }
}
.mainCont_01 .mainCont_01__left {
  width: 16.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .mainCont_01 .mainCont_01__left {
    display: contents;
    width: 100%;
  }
}
.mainCont_01 .mainCont_01__right {
  width: 37.1875rem;
}
@media screen and (max-width: 767px) {
  .mainCont_01 .mainCont_01__right {
    width: 100%;
    padding: 1.5625rem 0 4.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .sideCont.__order0 {
    order: 0;
  }
}
@media screen and (max-width: 767px) {
  .sideCont.__order1 {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .sideCont.__order2 {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .sideCont.__order3 {
    order: 3;
  }
}

.secCont {
  padding: 4.375rem 0;
  z-index: 11;
  position: relative;
}
@media screen and (max-width: 767px) {
  .secCont {
    padding: 5.9375rem 0 4.6875rem;
  }
}
.secCont .secCont__disc {
  font-size: 1rem;
  line-height: 1.75;
  padding: 0 2.5625rem;
  margin-bottom: 1.75rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .secCont .secCont__disc {
    font-size: 1.75rem;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 1rem;
  }
}

.font__roboto {
  font-family: var(--FONT_ROBOTO);
}

.font__biz {
  font-family: var(--FONT_BIZ);
}

.sp-view {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-view {
    display: block;
  }
}

.pc-view {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-view {
    display: none;
  }
}

/*--- reCAPTCHA ---*/
.grecaptcha-badge {
  bottom: 90px !important;
  z-index: 77;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 80px !important;
  }
}

/*-------------------
txt
-------------------*/
/*--- color ---*/
.txt__yellow01 {
  color: var(--YELLOW01) !important;
}

.txt__red01 {
  color: var(--RED03) !important;
}

/*--- weight ---*/
.txt__bold {
  font-weight: bold !important;
}

/*--- txt_lead01 ---*/
.txt_lead01 {
  height: 2.5rem;
  text-align: center;
  margin-bottom: 1.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .txt_lead01 {
    height: 6.1875rem;
    margin-bottom: 2.125rem;
  }
}
.txt_lead01 img {
  height: 100%;
  width: auto;
  vertical-align: baseline;
}
.txt_lead01:before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*--- txt_lead02 ---*/
.txt_lead02 {
  font-family: var(--FONT_BIZ);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--RED01);
  text-align: center;
  margin-bottom: 1.625rem;
  position: relative;
}
.txt_lead02:before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*-------------------
ttl
-------------------*/
/*--- ttl_01 ---*/
.ttl_01 {
  height: 3.125rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ttl_01 {
    height: 3.75rem;
    margin-bottom: 1.875rem;
  }
}
.ttl_01.__2row {
  height: 6.875rem;
}
@media screen and (max-width: 767px) {
  .ttl_01.__2row {
    height: 8.25rem;
  }
}
@media screen and (max-width: 767px) {
  .ttl_01.__2row.__pc {
    height: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .ttl_01.__2row.__sp {
    height: 3.125rem;
  }
}
.ttl_01 img {
  height: 100%;
  width: auto;
  vertical-align: baseline;
}

/*--- ttl_02 ---*/
.ttl_02 {
  font-family: var(--FONT_NORMAL);
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--BEIGE02);
  padding: 1.25rem 0;
  border-top: 0.125rem solid var(--BEIGE02);
  border-bottom: 0.125rem solid var(--BEIGE02);
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .ttl_02 {
    font-size: 2.25rem;
    padding: 2.125rem 0;
    border-width: 0.1875rem;
    text-align: center;
    margin-bottom: 1.875rem;
  }
}

/*--- ttl_03 ---*/
.ttl_03 {
  font-family: var(--FONT_NORMAL);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding: 0.5625rem;
  border-radius: 0.625rem;
  background: var(--BEIGE01);
  margin-bottom: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .ttl_03 {
    font-size: 1.75rem;
    padding: 0.625rem;
    margin-bottom: 1.25rem;
  }
}

/*--- ttl_04 ---*/
.ttl_04 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--GRAY01);
  padding-bottom: 0.9375rem;
  border-bottom: 0.25rem solid var(--RED01);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .ttl_04 {
    font-size: 3rem;
    line-height: 1.33;
    padding-bottom: 1.5625rem;
    margin-bottom: 2.1875rem;
  }
}

/*--- ttl_05 ---*/
.ttl_05 {
  font-family: var(--FONT_BIZ);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  padding-bottom: 0.625rem;
  border-bottom: 0.25rem solid var(--RED01);
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .ttl_05 {
    font-size: 3.75rem;
    text-align: center;
    padding-bottom: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

/*--- ttl_06 ---*/
.ttl_06 {
  font-family: var(--FONT_BIZ);
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-align: center;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .ttl_06 {
    font-size: 3.75rem;
    margin-bottom: 2.5rem;
  }
}
.ttl_06.__white {
  color: #fff;
}

/*-------------------
btn
-------------------*/
/*--- btn_01 ---*/
.btn_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23.125rem;
  min-height: 3.75rem;
  padding: 0.9375rem 5rem;
  border-width: 0.1875rem;
  border-style: solid;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  font-family: var(--FONT_NORMAL);
  position: relative;
  background: #fff;
  color: var(--BEIGE02);
  border-color: var(--BEIGE01);
}
@media screen and (max-width: 767px) {
  .btn_01 {
    width: 30.625rem;
    min-height: 4.875rem;
    padding: 1.25rem 5.375rem;
    border-width: 0.25rem;
    font-size: 1.625rem;
  }
}
.btn_01:after {
  content: "";
  display: block;
  width: 1.0625rem;
  aspect-ratio: 17/13;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 1.4375rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn_01:after {
    width: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .btn_01:after {
    right: 2rem;
  }
}
.btn_01:after {
  background-image: url(../img/arrow_beige.png);
}
.btn_01:hover {
  background: var(--BEIGE01);
  color: #fff;
}
.btn_01:hover:not([class*=__]) {
  opacity: 1;
}
.btn_01:hover:after {
  background-image: url(../img/arrow_white.png);
}
.btn_01.__back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23.125rem;
  min-height: 3.75rem;
  padding: 0.9375rem 5rem;
  border-width: 0.1875rem;
  border-style: solid;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  font-family: var(--FONT_NORMAL);
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn_01.__back {
    width: 30.625rem;
    min-height: 4.875rem;
    padding: 1.25rem 5.375rem;
    border-width: 0.25rem;
    font-size: 1.625rem;
  }
}
.btn_01.__back:after {
  content: "";
  display: block;
  width: 1.0625rem;
  aspect-ratio: 17/13;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 1.4375rem;
  transform: translateY(-50%) rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .btn_01.__back:after {
    width: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .btn_01.__back:after {
    left: 2rem;
  }
}
.btn_01:before {
  content: "";
  display: block;
  width: 1.8125rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 1.875rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn_01:before {
    width: 2.375rem;
    left: 1.9375rem;
  }
}
.btn_01.__tel {
  background: var(--RED01);
  color: #fff;
  border-color: var(--RED02);
  font-family: var(--FONT_ROBOTO);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .btn_01.__tel {
    pointer-events: auto;
  }
}
.btn_01.__tel:after {
  background-image: url(../img/arrow_white.png);
}
.btn_01.__tel:before {
  background-image: url(../img/ico_tel_white.png);
}
.btn_01.__mail {
  background: #fff;
  color: var(--RED01);
  border-color: var(--RED02);
}
.btn_01.__mail:after {
  background-image: url(../img/arrow_red.png);
}
.btn_01.__mail:before {
  background-image: url(../img/ico_mail_red.png);
}

/*-------------------
breadclumb
-------------------*/
.breadclumb {
  padding-top: 2.9375rem;
}
.breadclumb .breadclumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.breadclumb li {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.2;
}
.breadclumb li > a,
.breadclumb li > span {
  color: var(--GRAY01);
}
.breadclumb li:after {
  content: "＞";
  margin-left: 0.375rem;
}
.breadclumb li:first-child > a,
.breadclumb li:first-child > span {
  color: var(--RED01);
}
.breadclumb li:last-child:after {
  content: none;
}

/*--------------------
翻訳
 --------------------*/
#translation {
  width: 945px;
  margin: 0 auto;
  text-align: left;
  padding: 7px 0;
}

#translation select {
  text-align: left;
  background: #fff;
  border: 1px solid #d5d5d5;
  color: #000;
  font-size: 16px;
  padding: 5px 10px 5px 20px;
  cursor: pointer;
  -moz-appearance: menulist;
  -webkit-appearance: textfield;
}

#translation .google_img {
  position: relative;
  line-height: 1;
}

#translation .google_img::before {
  position: absolute;
  content: "";
  background: url(../img/google_icon_t.png) no-repeat center/contain;
  margin-left: 5px;
  margin-right: 2px;
  margin-top: 7px;
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 799px) {
  #translation {
    display: block;
    width: 100%;
    padding: 10px;
  }
  #translation_sp {
    padding: 0 20px 20px 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #translation_sp select {
    background: #fff;
    border: 1px solid #d5d5d5;
    color: #000;
    font-size: 16px;
    padding: 5px 10px 5px 20px;
    cursor: pointer;
    -moz-appearance: menulist;
    -webkit-appearance: textfield;
  }
  #translation_sp .google_img {
    position: relative;
    line-height: 1;
  }
  #translation_sp .google_img::before {
    position: absolute;
    content: "";
    background-image: url(../img/google_icon_t.png);
    margin-left: 5px;
    margin-right: 2px;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translatey(-50%);
  }
}
.translation_area #translation {
  width: unset;
  max-width: 945px;
}

/*-------------------
header
-------------------*/
/*
=========================================

h1_text_area

=========================================
*/
.h1_text_area {
  background: #EDE9E8;
  border-bottom-style: dotted;
  border-width: 1px;
  border-color: #AFAFAF;
  line-height: 1.2em;
}

.h1_text_area .cate_head {
  width: 1000px;
  margin: 0 auto;
  text-align: left !important;
  font-size: 10px;
  font-weight: 500;
  color: #6B6B6B;
  background: #EDE9E8;
}

/*
=========================================

hGroupBox

=========================================
*/
#hGroupBox {
  clear: both;
  height: 60px;
  background: #EDE9E8;
}

#hGroupBox dl {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}

#hGroupBox dl dt,
#hGroupBox dl dd {
  float: left;
}

/*
=========================================

支援サービス一覧(20160122更新)ここから

=========================================
*/
#hGroupBoxNew {
  clear: both;
  position: relative;
  height: 31px;
  background: url(../img/bgcolor.gif) repeat-x;
}

#hGroupBoxNew .right {
  display: flex;
}

#hGroupBoxNew .l {
  text-align: left;
  padding-right: 11px;
  background: #EDE9E8;
}

#hGroupBoxNew .s {
  padding: 0 10px;
  background: #F5F5F5 url(../img/line.gif) right 0 no-repeat;
}

#hGroupBoxNew .here {
  padding: 0 10px;
  background: #F5F5F5 url(../img/line.gif) right 0 no-repeat;
}

#hGroupBoxNew .color ul {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#hGroupBoxNew .color ul li {
  font-size: 12px !important;
  line-height: 28px;
  height: 28px;
  overflow: hidden;
  display: block;
}

#hGroupBoxNew .color ul li a {
  font-size: 12px !important;
  line-height: 28px;
  height: 28px;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  font-weight: 400 !important;
}

#hGroupBoxNew .color ul li .gray {
  color: #6B6B6B;
}

#hGroupBoxNew .color ul li .red {
  color: #A00000;
}

/*
=========================================

店舗一覧用固定メニュー

=========================================
*/
#headbar {
  /* ▼上端に固定するCSS */
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 100;
  /* ▼バーの装飾 */
  background-color: #fff; /* 背景色 */
  color: #333333; /* 文字色 */
  border-top: 3px solid #626262;
}

ul.head-tel {
  text-align: center;
  color: #333333;
}

ul.head-tel li.tel-no {
  padding: 18px 5px;
  background-color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-bottom: 3px solid #626262;
  line-height: 1.6em;
}

ul.head-tel li.tel-no a,
a.store-tel {
  min-height: 30px;
  padding-left: 30px;
  background-image: url(../img/icon_tel.gif);
  background-position: left center;
  background-repeat: no-repeat;
  font-size: 34px;
  font-weight: bold;
  font-family: Century Gothic, sans-serif;
  color: #333333;
  text-decoration: none;
}

ul.head-tel li.tel-no .tel-txt {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  font-feature-settings: "palt" 1;
}

.tel-after {
  padding: 3px;
  background-color: #e5e5e5;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 3px solid #626262;
  text-align: center;
}

.tel-after a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .td-store-tel a.store-tel {
    line-height: 1.2em;
  }
  .td-store-tel .txt-11 {
    padding-top: 5px;
  }
}
@media screen and (max-width: 385px) {
  a.store-tel {
    font-size: 24px;
  }
}
@media screen and (max-width: 269px) {
  ul.head-tel li.tel-no a {
    font-size: 24px;
  }
  a.store-tel {
    font-size: 16px;
    padding-top: 10px;
  }
  ul.head-tel li.tel-no {
    font-size: 12px;
  }
}
/*
=========================================

header

=========================================
*/
@media screen and (max-width: 767px) {
  #header {
    background: url(../img/sp_header_bg.png) no-repeat;
    background-size: 100%;
    padding: 3.3% 20px;
    position: relative;
  }
  #header .top_logo {
    margin: 0;
    line-height: 0;
  }
  #header .top_logo img {
    width: 52%;
  }
  #header {
    padding: 2% 10px 2.6%;
  }
  #header .top_logo img {
    width: 62%;
  }
  #nav_innner {
    width: 100%;
    margin: 0;
    border-bottom: #aaaaaa 1px solid;
  }
  #nav ul li {
    margin: 0;
    padding: 0;
    line-height: 0em;
  }
  #nav ul li.nav-txt a {
    display: block;
    width: 100%;
    padding: 10px 30px;
    line-height: 2.5em;
    background-image: url(../img/sp_navbg.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    border-bottom: 2px solid #999999;
    font-weight: bold;
    font-size: 24px;
    color: #c0000e;
    text-decoration: none;
  }
  #nav li.last_child {
    padding: 20px 0;
  }
  #nav ul li img {
    width: 100%;
  }
}
@media screen and (max-width: 499px) {
  #nav ul li.nav-txt a {
    font-size: 18px;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 320px) {
  #nav ul li.nav-txt a {
    font-size: 14px;
    padding: 5px 10px;
  }
}
@media screen and (min-width: 768px) {
  header {
    height: 174px;
    text-align: center;
    background: #fff;
  }
  div.top_logo {
    height: inherit;
    left: 0em;
    line-height: inherit;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
  }
  #header {
    /*width: 1000px;*/
    margin: 0;
    position: relative;
    /*top: -61px;*/
    height: 123px;
    width: 100%;
    border-bottom: 3px solid #c0000e;
  }
  #nav {
    position: relative;
    top: 87px;
    margin: 0;
    padding: 0;
  }
  #nav .nav_explain {
    position: relative;
    top: 0px;
    height: 38px;
    margin: 0;
    padding: 0;
  }
  #nav .nav_explain img {
    width: 100%;
  }
  #nav ul {
    position: relative;
    top: 0px;
    left: 0;
    margin: 0;
    padding: 0;
  }
  #nav li {
    float: left;
  }
  #nav li {
    width: 16.6%;
    background-color: #fff;
  }
  #nav li.last_child {
    border-right: 1px solid #999999;
  }
  #nav li a {
    color: #c0000e;
    font-weight: bold;
    display: block;
    border-left: 1px solid #999999;
    border-bottom: 3px solid #c0000e;
    height: 36px;
  }
  #nav li a:hover {
    text-decoration: none;
  }
  #nav li:hover {
    background-color: #e6e6e6;
  }
}
@media screen and (min-width: 1000px) {
  #header {
    width: 100%;
    height: 123px;
    margin: 0;
    position: relative;
    /*top: -61px;*/
    border-bottom: 3px solid #c0000e;
  }
  #header .pc-view {
    width: 900px;
    margin: 0 auto;
    position: relative;
    /*top: -61px;*/
  }
  #nav {
    position: relative;
    top: 87px;
    margin: 0;
    padding: 0;
  }
  #nav .nav_explain {
    position: relative;
    top: 0px;
    height: 38px;
    margin: 0;
    padding: 0;
  }
  #nav ul {
    position: relative;
    top: 0px;
    left: 0;
    margin: 0;
    padding: 0;
  }
  #nav li {
    float: left;
  }
  #nav .gl-menu > li.menu__single {
    position: relative;
    height: 86px;
  }
  #nav .gl-menu li.menu__single ul.menu__second-level li {
    position: relative;
    width: 100%;
    float: none;
    border-bottom: 1px solid #999999;
  }
  #nav .gl-menu li.menu__single ul.menu__second-level li a {
    width: 100%;
    border: none;
    text-align: left;
    padding: 0 10px;
  }
  #nav .gl-menu > li.menu__single a {
    display: block;
  }
  #nav .gl-menu li.menu__single ul.menu__second-level {
    position: absolute;
    top: 36px;
    width: 170%;
    height: 72px;
    transition: all 0.2s ease;
    opacity: 0;
  }
  #nav .gl-menu li.menu__single ul.menu__second-level a {
    border-left: none;
  }
  #nav .gl-menu li.menu__single:hover ul.menu__second-level {
    top: 36px;
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
}
.h1_text_area .cate_head {
  width: unset;
  max-width: 1000px;
  font-weight: 400 !important;
}

#hGroupBoxNew .color ul li p {
  font-weight: 400 !important;
}

header {
  height: unset;
}

#header {
  z-index: 99;
  box-shadow: 0 1.4375rem 1rem -1rem rgba(0, 0, 0, 0.2);
}
#header .top_btn_list {
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  top: 24px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #header .top_btn_list {
    position: static;
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
  }
}
#header .top_btn_list .btn_01 {
  width: 14.25rem;
  min-height: 42px;
  font-size: 1.125rem;
  padding: 10px 42px;
  border-width: 2px;
}
@media screen and (max-width: 767px) {
  #header .top_btn_list .btn_01 {
    width: 28.5rem;
    min-height: 5.25rem;
    font-size: 2.25rem;
    padding: 1.25rem 5.25rem;
    border-width: 0.25rem;
  }
}
#header .top_btn_list .btn_01:after {
  width: 14px;
  right: 16px;
}
@media screen and (max-width: 767px) {
  #header .top_btn_list .btn_01:after {
    width: 1.75rem;
    right: 2rem;
  }
}
#header .top_btn_list .btn_01:before {
  width: 23px;
  left: 18px;
}
@media screen and (max-width: 767px) {
  #header .top_btn_list .btn_01:before {
    width: 2.875rem;
    left: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  #header .top_btn_list .btn_01.__mail {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  #header #nav > ul {
    height: 36px;
  }
}
#header #nav li {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #header #nav li {
    width: unset;
  }
}
#header #nav li.__noLink:hover {
  background: #fff;
}
#header #nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #header #nav li a {
    display: block;
  }
}
#header #nav li img {
  width: 15px;
  min-width: 15px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  #header #nav li img {
    width: 100%;
    min-width: unset;
    aspect-ratio: unset;
  }
}
#header #nav .nav__childMenuListWrap {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  position: absolute;
  top: calc(100% + 0.3125rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 1.875rem 1.25rem;
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
#header #nav .nav__childMenuListWrap.__open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
#header #nav .nav__childMenuList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
#header #nav .nav__childMenuList .nav__childMenuItem {
  padding: 0 1.875rem;
  float: none;
  width: unset;
  position: relative;
}
#header #nav .nav__childMenuList .nav__childMenuItem:hover {
  background: none;
}
#header #nav .nav__childMenuList .nav__childMenuItem a {
  display: block;
  width: 8.3125rem;
  height: unset;
  border: none;
  padding-right: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--RED01);
  text-align: left;
  position: relative;
}
#header #nav .nav__childMenuList .nav__childMenuItem a:after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_red.png) no-repeat center/contain;
  position: absolute;
  top: 0.19375rem;
  right: 0;
}
#header #nav .nav__childMenuList.__news .nav__childMenuItem a {
  width: unset;
}
#header #nav .nav__childMenuList.__news .nav__childMenuItem:after {
  content: "";
  display: block;
  height: 100%;
  border-right: 0.125rem dotted var(--RED01);
  position: absolute;
  top: 0;
  right: 0;
}
#header #nav .nav__childMenuList.__news .nav__childMenuItem:last-child:after {
  content: none;
}
#header #nav .nav__childMenuList.__column {
  flex-direction: column;
  height: 7.8125rem;
}
#header #nav .nav__childMenuList.__column .nav__childMenuItem:nth-child(3n+1):after {
  content: "";
  display: block;
  height: 8.1rem;
  border-right: 0.125rem dotted var(--RED01);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
}
#header #nav .nav__childMenuList.__column .nav__childMenuItem:nth-last-child(-n+3):after {
  content: none;
}
#header .sp_gNav .sp_gNav-overlay {
  display: none;
  position: fixed;
  z-index: 88;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
#header .sp_gNav .sp_gNav-hamburger {
  position: absolute;
  z-index: 210;
  top: 0;
  right: 0;
  display: block;
  box-sizing: content-box;
  width: 15%;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateZ(0);
  border: 0;
  outline: 0;
  background-color: transparent;
}
#header .sp_gNav .sp_gNav-hamburger .sp_gNav-hamburger-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 4em;
}
#header .sp_gNav .sp_gNav-nav {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 99;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
#header .sp_gNav .sp_gNav-nav .nav-txt.__hasCat {
  border-bottom: 2px solid #999999;
}
#header .sp_gNav .sp_gNav-nav .nav-txt.__hasCat a {
  border: none;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__parentMenuItem {
  position: relative;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__childMenuListWrap {
  display: none;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__childMenuList {
  padding: 0 1.25rem;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__childMenuItem {
  border-top: 1px dotted var(--RED01);
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__childMenuItem a {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  border: none;
  padding: 1.625rem 3.4375rem;
  background: none;
  position: relative;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__childMenuItem a:after {
  content: "";
  display: block;
  width: 1.6875rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_red.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__parentMenuBtnOpen {
  padding: 0;
  width: 6.25rem;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__parentMenuBtnOpen:before, #header .sp_gNav .sp_gNav-nav .sp_gNav__parentMenuBtnOpen:after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 0.375rem;
  border-radius: 100px;
  background: var(--RED01);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__parentMenuBtnOpen:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#header .sp_gNav .sp_gNav-nav .sp_gNav__parentMenuBtnOpen.__open:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
#header .sp_gNav.__open .sp_gNav-overlay {
  display: block;
}
#header .sp_gNav.__open .sp_gNav-hamburger {
  position: fixed;
}
#header .sp_gNav.__open .sp_gNav-nav {
  left: 0;
}

@media screen and (max-width: 767px) {
  #footer_nav {
    border-top: #636363 1px solid;
    border-left: #636363 1px solid;
    border-right: #636363 1px solid;
  }
  #footer_nav {
    border-left: none;
    border-right: none;
  }
  #footer_nav_inner {
    width: 100%;
    margin: 0;
  }
  #footer_nav_inner h5 {
    margin: 0;
    padding: 0;
    line-height: 0em;
    text-indent: -9999px;
  }
  #footer_nav_inner ul li {
    margin: 0;
    padding: 0;
    line-height: 0em;
  }
  #footer_nav_inner ul li.nav-txt a {
    display: block;
    width: 100%;
    padding: 10px 30px;
    line-height: 2.5em;
    background-image: url(../img/sp_navbg.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    border-bottom: 2px solid #999999;
    background-color: #313131;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
  }
  #footer_nav_inner ul li.last_child img {
    padding: 15px 0;
    background: #fff;
  }
  #footer_nav_inner ul li img {
    width: 100%;
  }
  #footer_nav_inner2 {
    background: #313131;
  }
  #footer_nav_inner2 ul li img {
    width: 100%;
  }
  #footer_nav_inner .sp-view ul {
    padding-left: 20px;
  }
  #footer_nav_inner .sp-view ul li {
    line-height: 1.8em;
    font-feature-settings: "palt" 1;
    color: #242424;
    position: relative;
  }
  #footer_nav_inner .sp-view ul a {
    position: relative;
    display: block;
  }
  #footer_nav_inner .sp-view ul a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    background: #c6000e;
    width: 4px;
    height: 4px;
  }
  #footer_nav_inner .sp-view ul a::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 12px;
    transform: translateY(-50%);
    width: 7px;
    height: 10px;
    background: url("../img/icon_nav_arrow.png") center center/contain no-repeat;
  }
  #footer_nav_inner .sp-view ul {
    background-color: #eeeeee;
    width: 100%;
    padding: 0;
    color: #242424;
  }
  #footer_nav_inner .sp-view li {
    list-style: none;
  }
  #footer_nav_inner .sp-view ul ul {
    height: 0;
    padding: 0px 15px;
    overflow: hidden;
    transition: 0.5s;
    background-color: #fff;
    margin: 0;
    border-bottom: 1px solid #636363;
  }
  #footer_nav_inner .sp-view ul li li {
    padding: 5px 0 5px 0px;
    margin-left: 15px;
  }
  #footer_nav_inner .sp-view ul li li:first-child {
    padding: 20px 0 5px 0px;
  }
  #footer_nav_inner .sp-view ul li li:last-child {
    padding: 5px 0 20px 0px;
  }
  #footer_nav_inner .sp-view button {
    position: relative;
    border: none;
    width: 100%;
    background-color: inherit;
    color: #242424;
    cursor: pointer;
    text-align: left;
    padding: 15px 0 15px 20px;
    font-size: 1em;
    font-weight: bold;
  }
  #footer_nav_inner .sp-view button[aria-expanded=true] {
    border-bottom: 1px solid #636363;
  }
  #footer_nav_inner .sp-view button::before,
#footer_nav_inner .sp-view button::after {
    content: "";
    position: absolute;
    top: 20px;
    width: 1.5px;
    height: 8px;
    background-color: #242424;
    transition: 0.5s;
  }
  #footer_nav_inner .sp-view button::before {
    transform: rotate(-90deg);
    right: 30px;
  }
  #footer_nav_inner .sp-view button::after {
    transform: rotate(0deg);
    right: 30px;
  }
  #footer_nav_inner .sp-view li.active button::before {
    transform: rotate(-90deg);
    transition: 0.5s;
  }
  #footer_nav_inner .sp-view li.active button::after {
    transform: rotate(90deg);
    transition: 0.5s;
  }
  #footer_nav_inner .sp-view ul:nth-of-type(2) {
    background-color: #357D87;
  }
  #footer_nav_inner .sp-view ul:nth-of-type(2) ul {
    background-color: #519FA5;
    border-top: 1px solid #5D9FA8;
  }
  #footer_nav_inner .sp-view ul:nth-of-type(2) button:hover {
    background-color: #1C4B56;
  }
  #footer_nav_inner .sp-view ul:nth-of-type(2) li li {
    border-bottom: 1px dotted #73BEBF;
  }
  #footer_nav_inner .sp-view ul:nth-of-type(2) li.active li:last-child {
    border-bottom: 1px solid #5D9FA8;
  }
  #footer_nav_inner .sp-view ul.active {
    overflow-y: auto;
  }
  .sns-list {
    background: #eeeeee;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px 0 15px;
  }
  .sns-list .sns-item {
    width: 50px;
  }
  .pagetop {
    position: fixed;
    right: 0px;
    display: block;
    padding: 20px;
    width: 20%;
  }
  .pagetop img {
    width: 100%;
  }
  #footer_nav_inner2 .sub-menu {
    background: #636363;
  }
  #footer_nav_inner2 .sub-menu ul li a {
    padding: 15px 20px;
    color: #fff;
    display: block;
    font-weight: bold;
    position: relative;
  }
  #footer_nav_inner2 .sub-menu ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  #footer_nav_inner2 .sub-menu ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 7px;
    height: 10px;
    background: url("../img/icon_nav_arrow_white.png") center center/contain no-repeat;
  }
  .footer_copy p {
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    background: #2b2b2b;
  }
}
@media screen and (min-width: 768px) {
  #footer_nav {
    background: #313131;
  }
  #footer_nav {
    background: #eeeeee;
  }
  #footer_nav_inner {
    width: 95%;
    margin: 0 auto;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
  }
  #footer_nav_inner .waku,
#footer_nav_inner .waku2,
#footer_nav_inner .waku3 {
    width: 25%;
  }
  .sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 65px 0;
  }
  #footer_nav_inner2 {
    background: #636363;
  }
  #footer_nav_inner2 .pc-view .sub-menu {
    max-width: 720px;
    margin-inline: auto;
    padding: 30px;
  }
  #footer_nav_inner2 .pc-view .sub-menu ul {
    display: flex;
    justify-content: space-between;
  }
  #footer_nav_inner2 .pc-view .sub-menu ul li {
    font-size: 16px;
  }
  #footer_nav_inner2 .pc-view .sub-menu ul li a {
    color: #fff;
    font-weight: bold;
  }
  #footer_nav_inner2 .footer_copy {
    background: #2b2b2b;
    padding: 20px 0;
  }
  #footer_nav_inner h5 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #fff;
  }
  #footer_nav_inner ul li {
    float: none;
  }
  #footer_nav_inner ul li a {
    color: #fff;
  }
  #footer_nav_inner ul li a:link {
    color: #242424 !important;
    text-decoration: none;
  }
  #footer_nav_inner ul li a:visited {
    color: #242424 !important;
    text-decoration: none;
  }
  #footer_nav_inner ul li a:hover {
    color: #ff9933 !important;
    text-decoration: none;
  }
  #footer_nav_inner ul li a:active {
    color: #242424 !important;
    text-decoration: none;
  }
  #footer_nav_inner2 ul li {
    float: left;
  }
  #footer_nav_inner2 ul li a {
    color: #fff;
  }
  #footer_nav_inner2 ul li a:link {
    color: #fff !important;
    text-decoration: none;
  }
  #footer_nav_inner2 ul li a:visited {
    color: #fff !important;
    text-decoration: none;
  }
  #footer_nav_inner2 ul li a:hover {
    color: #fff !important;
    text-decoration: none;
  }
  #footer_nav_inner2 ul li a:active {
    color: #fff !important;
    text-decoration: none;
  }
  .footer_copy p {
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
  }
}
@media screen and (min-width: 1000px) {
  .sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
  }
  .sns-list .sns-item {
    width: 50px;
  }
  #footer_nav {
    background: #eeeeee;
  }
  #footer_nav_inner {
    width: 950px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
  }
  #footer_nav_inner .waku,
#footer_nav_inner .waku2,
#footer_nav_inner .waku3 {
    width: 25%;
  }
  #footer_nav_inner h5 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #footer_nav_inner ul {
    padding-left: 15px;
  }
  #footer_nav_inner ul li {
    line-height: 1.8em;
    font-feature-settings: "palt" 1;
    color: #242424;
    position: relative;
    margin-bottom: 0px;
  }
  #footer_nav_inner ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    background: #c6000e;
    width: 4px;
    height: 4px;
  }
  #footer_nav_inner2 {
    width: 100%;
    margin: 0 auto;
  }
  #footer_nav_inner2 .pc-view {
    text-align: center;
  }
  #footer_nav_inner2 .pc-view .sub-menu {
    width: 720px;
    margin-inline: auto;
    padding: 20px 0;
  }
  #footer_nav_inner2 .pc-view .sub-menu ul {
    display: flex;
    justify-content: space-between;
  }
  #footer_nav_inner2 .pc-view .sub-menu ul li {
    font-size: 16px;
  }
  #footer_nav_inner2 .pc-view .sub-menu ul li a {
    color: #fff;
    font-weight: bold;
  }
  #footer_nav_inner2 .footer_copy {
    background: #2b2b2b;
  }
  .footer_copy p {
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
  }
}
/* ======================================
追記ここから
=========================================
*/
#footer_nav_inner a:link,
#footer_nav_inner2 a:link,
#footer_nav_inner a:visited,
#footer_nav_inner2 a:visited,
#footer_nav_inner a:hover,
#footer_nav_inner2 a:hover,
#footer_nav_inner a:active,
#footer_nav_inner2 a:active {
  color: #242424;
  text-decoration: none;
}

/* ======================================
page-top
=========================================
*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 77%;
  z-index: 22;
}

#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  /* width: 100px;
  padding: 30px 0; */
  width: 80px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}

#page-top a:hover {
  text-decoration: none;
  background: #999;
}

#footer_nav_inner h5 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #242424;
}
@media screen and (max-width: 767px) {
  #footer_nav_inner h5 {
    margin-bottom: 0;
  }
}

#footer_nav_inner ul a {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #footer_nav_inner ul a {
    font-size: 16px;
  }
}

/*-------------------
sec-contact
-------------------*/
.sec-contact {
  padding: 6.0625rem 0 3.3125rem;
  background: url(../img/bg_sec-contact_01.jpg) no-repeat center/cover;
  /*--- 詳細ページ ---*/
}
@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 6.875rem 0 5rem;
    background: url(../img/bg_sec-contact_01_sp.jpg) no-repeat center/cover;
  }
}
.sec-contact .ttl {
  font-family: var(--FONT_BIZ);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.55;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .ttl {
    font-size: 2.75rem;
    margin-bottom: 3.4375rem;
  }
}
.sec-contact .ttl .ttl__row02 {
  position: relative;
}
.sec-contact .ttl .ttl__row02:before {
  content: "";
  display: block;
  width: 35rem;
  aspect-ratio: 560/58;
  background: url(../img/bg_sec-contact_ttl.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.sec-contact .btn_list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .btn_list {
    flex-direction: column;
    align-items: center;
    gap: 1.5625rem;
  }
}
.sec-contact .btn_list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .btn_list__item {
    gap: 0.9375rem;
  }
}
.sec-contact .btn_list__item.__tel .btn_list__txt:before {
  background-image: url(../img/ico_time_yellow.png);
}
.sec-contact .btn_list__item.__mail .btn_list__txt:before {
  background-image: url(../img/ico_24h_yellow.png);
}
.sec-contact .btn_list__txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5625rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--YELLOW01);
}
@media screen and (max-width: 767px) {
  .sec-contact .btn_list__txt {
    gap: 0.875rem;
    font-size: 1.5rem;
  }
}
.sec-contact .btn_list__txt:before {
  content: "";
  display: block;
  width: 2.9375rem;
  height: 3.0625rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .sec-contact .btn_list__txt:before {
    width: 3.625rem;
    height: 3.875rem;
  }
}
.sec-contact .btn_01 {
  width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .btn_01 {
    width: 30.625rem;
    font-size: 2rem;
  }
}
.sec-contact.__single {
  padding: 3.75rem 0 2.0625rem;
  background-image: url(../img/bg_single_sec-contact_01.jpg);
}
@media screen and (max-width: 767px) {
  .sec-contact.__single {
    padding: 4.8125rem 0 2.4375rem;
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
    background-image: url(../img/bg_single_sec-contact_01_sp.jpg);
  }
}
.sec-contact.__single .ttl {
  height: unset;
  padding: 0 3.625rem;
  font-family: var(--FONT_BIZ);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .ttl {
    padding: 0 2.5rem;
    font-size: 3rem;
  }
}
.sec-contact.__single .txt {
  padding: 0 3.625rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .txt {
    padding: 0 2.5rem;
    line-height: 1.71;
    margin-bottom: 1.625rem;
  }
}
.sec-contact.__single .btn_list {
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_list {
    gap: 1.5625rem;
  }
}
.sec-contact.__single .btn_01 {
  width: 15.75rem;
  height: 3rem;
  min-height: unset;
  padding: 0.9375rem 3.3125rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_01 {
    width: 30.625rem;
    height: 4.875rem;
    padding: 0.9375rem 5.3125rem;
  }
}
.sec-contact.__single .btn_01:after {
  width: 0.8125rem;
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_01:after {
    width: 1.3125rem;
    right: 2.25rem;
  }
}
.sec-contact.__single .btn_01:before {
  width: 1.4375rem;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_01:before {
    width: 2.375rem;
    left: 2.25rem;
  }
}
.sec-contact.__single .btn_01.__tel {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_01.__tel {
    font-size: 2rem;
  }
}
.sec-contact.__single .btn_01.__mail {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_01.__mail {
    font-size: 1.625rem;
  }
}
.sec-contact.__single .btn_list__txt {
  gap: 0.5rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_list__txt {
    gap: 0.8125rem;
    font-size: 1.5rem;
  }
}
.sec-contact.__single .btn_list__txt:before {
  width: 2.4375rem;
  height: 2.375rem;
}
@media screen and (max-width: 767px) {
  .sec-contact.__single .btn_list__txt:before {
    width: 3.625rem;
    height: 3.875rem;
  }
}

/*-------------------
list_01
-------------------*/
.list_01 {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .list_01 {
    gap: 1.25rem;
  }
}
.list_01 .list_01__item {
  display: flex;
  gap: 1.875rem;
  background: var(--BEIGE03);
  padding: 2.125rem 2.375rem 1.375rem;
  border: 0.125rem solid var(--RED02);
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__item {
    flex-wrap: wrap;
    gap: 0;
    padding: 2.625rem 1.875rem 2.875rem;
    border-width: 0.25rem;
    border-radius: 1.25rem;
  }
}
.list_01 .list_01__img {
  width: 13.75rem;
  min-width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__img {
    order: 1;
    width: 16.875rem;
    min-width: 16.875rem;
    margin: 0 1.3125rem 1.5rem 0;
  }
}
.list_01 .list_01__txtWrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__txtWrap {
    display: contents;
    margin-bottom: 1.5rem;
  }
}
.list_01 .list_01__ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--BEIGE01);
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__ttl {
    order: 0;
    font-size: 2rem;
    line-height: 1.375;
    margin-bottom: 1.5rem;
    width: 100%;
  }
}
.list_01 .list_01__txtNameWrap {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--BEIGE01);
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__txtNameWrap {
    order: 2;
    width: calc(100% - 16.875rem - 1.3125rem);
    padding-bottom: 0;
    margin-bottom: 1.5rem;
    border: none;
  }
}
.list_01 .list_01__txtCompany {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__txtCompany {
    font-size: 1.5rem;
  }
}
.list_01 .list_01__txtName {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__txtName {
    font-size: 1.5rem;
    line-height: 1.66;
  }
}
.list_01 .list_01__txt {
  padding-bottom: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .list_01 .list_01__txt {
    order: 3;
    line-height: 1.428;
    padding-bottom: 0;
    margin-bottom: 1.375rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list_01 .btn_wrap {
    order: 4;
    width: 100%;
  }
}
.list_01 .btn_01 {
  position: absolute;
  bottom: 0;
  right: -1rem;
  width: 11.0625rem;
  min-height: 2.25rem;
  padding: 0.3125rem 2.4375rem;
  background: var(--RED01);
  border-color: var(--RED02);
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .list_01 .btn_01 {
    position: relative;
    right: 0;
    width: 30.625rem;
    min-height: 4.875rem;
    padding: 1.25rem 5.3125rem;
    font-size: 1.625rem;
    margin: 0 auto;
  }
}
.list_01 .btn_01:hover {
  opacity: 0.8;
}
.list_01 .btn_01:after {
  background-image: url(../img/arrow_white.png);
  width: 0.8125rem;
  right: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .list_01 .btn_01:after {
    width: 1.3125rem;
    right: 2rem;
  }
}

/*-------------------
list_02
-------------------*/
.list_02 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .list_02 {
    gap: 1.25rem;
  }
}
.list_02 .list_02__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 1.875rem) / 3);
  border-radius: 0.625rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .list_02 .list_02__item {
    width: calc((100% - 1.25rem) / 2);
  }
}
.list_02 .list_02__img {
  border-radius: 0.625rem 0.625rem 0 0;
  width: 100%;
  aspect-ratio: 290/252;
}
@media screen and (max-width: 767px) {
  .list_02 .list_02__img {
    aspect-ratio: 325/248;
  }
}
.list_02 .list_02__img img {
  border-radius: 0.625rem 0.625rem 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.list_02 .list_02__ttl {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--GRAY01);
  text-align: center;
  padding: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .list_02 .list_02__ttl {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

/*-------------------
list_03
-------------------*/
.list_03 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .list_03 {
    gap: 1.25rem;
  }
}
.list_03 .list_03__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: calc((100% - 1.875rem) / 3);
  border-radius: 0.625rem;
  padding: 0.5625rem 1.375rem 0.5625rem 0.375rem;
  min-height: 4.75rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .list_03 .list_03__item {
    width: calc((100% - 1.25rem) / 2);
    padding: 0.9375rem 0.5rem 0.9375rem 0.375rem;
    min-height: 5.625rem;
  }
}
.list_03 .list_03__img {
  width: 3.5rem;
  min-width: 3.5rem;
  aspect-ratio: 1/1;
}
.list_03 .list_03__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.list_03 .list_03__ttl {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33;
  color: var(--GRAY01);
}
@media screen and (max-width: 767px) {
  .list_03 .list_03__ttl {
    font-size: 1.5rem;
    line-height: 1.08;
  }
}

/*-------------------
postList_01
-------------------*/
.postList_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .postList_01 {
    gap: 4.0625rem 1.25rem;
  }
}
.postList_01 .postList_01__item {
  width: calc((100% - 0.9375rem) / 2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .postList_01 .postList_01__item {
    width: calc((100% - 1.25rem) / 2);
  }
}
.postList_01 .postList_01__item a {
  display: block;
  height: 100%;
}
.postList_01 .postList_01__img {
  width: 100%;
  aspect-ratio: 29/21;
  height: auto;
}
.postList_01 .postList_01__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList_01 .postList_01__img.__default {
  border: 1px solid var(--GRAY02);
}
.postList_01 .postList_01__txtWrap {
  padding: 1.125rem 0.875rem 0;
}
@media screen and (max-width: 767px) {
  .postList_01 .postList_01__txtWrap {
    padding: 1.625rem 1.375rem 0;
  }
}
.postList_01 .postList_01__time {
  font-family: var(--FONT_ROBOTO);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  color: var(--BEIGE02);
  margin-bottom: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .postList_01 .postList_01__time {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.postList_01 .postList_01__ttl {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--GRAY01);
}
@media screen and (max-width: 767px) {
  .postList_01 .postList_01__ttl {
    font-size: 1.75rem;
    margin-top: 0.9375rem;
  }
}
.postList_01 .postList_01__cat {
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #000;
  display: inline-block;
  min-width: 7.1875rem;
  max-width: 100%;
  padding: 0.3125rem 0.625rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .postList_01 .postList_01__cat {
    position: static;
    font-size: 1.5rem;
    min-width: 12.5rem;
    padding: 0.625rem;
  }
}
.postList_01 .postList_01__cat.__funding {
  background: var(--COL_COLUMN_FUNDING);
}
.postList_01 .postList_01__cat.__funding.__childCat {
  color: var(--COL_COLUMN_FUNDING);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_FUNDING);
}
.postList_01 .postList_01__cat.__bukken {
  background: var(--COL_COLUMN_BUKKEN);
}
.postList_01 .postList_01__cat.__bukken.__childCat {
  color: var(--COL_COLUMN_BUKKEN);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_BUKKEN);
}
.postList_01 .postList_01__cat.__interior {
  background: var(--COL_COLUMN_INTERIOR);
}
.postList_01 .postList_01__cat.__interior.__childCat {
  color: var(--COL_COLUMN_INTERIOR);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_INTERIOR);
}
.postList_01 .postList_01__cat.__kitchen {
  background: var(--COL_COLUMN_KITCHEN);
}
.postList_01 .postList_01__cat.__kitchen.__childCat {
  color: var(--COL_COLUMN_KITCHEN);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_KITCHEN);
}
.postList_01 .postList_01__cat.__equipment {
  background: var(--COL_COLUMN_EQUIPMENT);
}
.postList_01 .postList_01__cat.__equipment.__childCat {
  color: var(--COL_COLUMN_EQUIPMENT);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_EQUIPMENT);
}
.postList_01 .postList_01__cat.__pos {
  background: var(--COL_COLUMN_POS);
}
.postList_01 .postList_01__cat.__pos.__childCat {
  color: var(--COL_COLUMN_POS);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_POS);
}
.postList_01 .postList_01__cat.__menu {
  background: var(--COL_COLUMN_MENU);
}
.postList_01 .postList_01__cat.__menu.__childCat {
  color: var(--COL_COLUMN_MENU);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_MENU);
}
.postList_01 .postList_01__cat.__purchase {
  background: var(--COL_COLUMN_PURCHASE);
}
.postList_01 .postList_01__cat.__purchase.__childCat {
  color: var(--COL_COLUMN_PURCHASE);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_PURCHASE);
}
.postList_01 .postList_01__cat.__promotion {
  background: var(--COL_COLUMN_PROMOTION);
}
.postList_01 .postList_01__cat.__promotion.__childCat {
  color: var(--COL_COLUMN_PROMOTION);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_PROMOTION);
}
.postList_01 .postList_01__cat.__education {
  background: var(--COL_COLUMN_EDUCATION);
}
.postList_01 .postList_01__cat.__education.__childCat {
  color: var(--COL_COLUMN_EDUCATION);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_EDUCATION);
}

/*-------------------
postList_02
-------------------*/
.postList_02 {
  display: flex;
  gap: 0.9375rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .postList_02 {
    gap: 1.25rem;
  }
}
.postList_02 .postList_02__item {
  width: calc((100% - 1.875rem) / 3);
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .postList_02 .postList_02__item {
    width: calc((100% - 1.25rem) / 2);
  }
}
.postList_02 .postList_02__item a {
  display: block;
  height: 100%;
}
.postList_02 .postList_02__img {
  width: 100%;
  aspect-ratio: 29/21;
  height: auto;
}
.postList_02 .postList_02__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList_02 .postList_02__txtWrap {
  padding: 1.125rem 0.75rem 2.0625rem;
  min-height: 7.75rem;
}
@media screen and (max-width: 767px) {
  .postList_02 .postList_02__txtWrap {
    padding: 1.625rem 1.5rem 2.8125rem;
    min-height: 14.75rem;
  }
}
.postList_02 .postList_02__time {
  font-family: var(--FONT_ROBOTO);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  color: var(--BEIGE02);
}
@media screen and (max-width: 767px) {
  .postList_02 .postList_02__time {
    font-size: 1.5rem;
  }
}
.postList_02 .postList_02__ttl {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--GRAY01);
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .postList_02 .postList_02__ttl {
    font-size: 1.75rem;
    margin-top: 0.9375rem;
  }
}
.postList_02 .postList_02__catWrap {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .postList_02 .postList_02__catWrap {
    margin-top: 1rem;
  }
}
.postList_02 .postList_02__cat {
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #000;
  display: inline-block;
  min-width: 7.1875rem;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .postList_02 .postList_02__cat {
    font-size: 1.5rem;
    min-width: 12.5rem;
    padding: 0.625rem;
  }
}
.postList_02 .postList_02__cat.__funding {
  background: var(--COL_COLUMN_FUNDING);
}
.postList_02 .postList_02__cat.__funding.__childCat {
  color: var(--COL_COLUMN_FUNDING);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_FUNDING);
}
.postList_02 .postList_02__cat.__bukken {
  background: var(--COL_COLUMN_BUKKEN);
}
.postList_02 .postList_02__cat.__bukken.__childCat {
  color: var(--COL_COLUMN_BUKKEN);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_BUKKEN);
}
.postList_02 .postList_02__cat.__interior {
  background: var(--COL_COLUMN_INTERIOR);
}
.postList_02 .postList_02__cat.__interior.__childCat {
  color: var(--COL_COLUMN_INTERIOR);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_INTERIOR);
}
.postList_02 .postList_02__cat.__kitchen {
  background: var(--COL_COLUMN_KITCHEN);
}
.postList_02 .postList_02__cat.__kitchen.__childCat {
  color: var(--COL_COLUMN_KITCHEN);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_KITCHEN);
}
.postList_02 .postList_02__cat.__equipment {
  background: var(--COL_COLUMN_EQUIPMENT);
}
.postList_02 .postList_02__cat.__equipment.__childCat {
  color: var(--COL_COLUMN_EQUIPMENT);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_EQUIPMENT);
}
.postList_02 .postList_02__cat.__pos {
  background: var(--COL_COLUMN_POS);
}
.postList_02 .postList_02__cat.__pos.__childCat {
  color: var(--COL_COLUMN_POS);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_POS);
}
.postList_02 .postList_02__cat.__menu {
  background: var(--COL_COLUMN_MENU);
}
.postList_02 .postList_02__cat.__menu.__childCat {
  color: var(--COL_COLUMN_MENU);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_MENU);
}
.postList_02 .postList_02__cat.__purchase {
  background: var(--COL_COLUMN_PURCHASE);
}
.postList_02 .postList_02__cat.__purchase.__childCat {
  color: var(--COL_COLUMN_PURCHASE);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_PURCHASE);
}
.postList_02 .postList_02__cat.__promotion {
  background: var(--COL_COLUMN_PROMOTION);
}
.postList_02 .postList_02__cat.__promotion.__childCat {
  color: var(--COL_COLUMN_PROMOTION);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_PROMOTION);
}
.postList_02 .postList_02__cat.__education {
  background: var(--COL_COLUMN_EDUCATION);
}
.postList_02 .postList_02__cat.__education.__childCat {
  color: var(--COL_COLUMN_EDUCATION);
  background: #fff;
  border: 1px solid var(--COL_COLUMN_EDUCATION);
}

.postList_02__swiperCont {
  position: relative;
}
.postList_02__swiperCont .postList_02__wrap.swiper {
  overflow: hidden;
}
.postList_02__swiperCont .postList_02__wrap.swiper.__active + div .swiper_arrow {
  display: block;
}
.postList_02__swiperCont .postList_02__wrap.swiper .postList_02 {
  gap: unset;
}
.postList_02__swiperCont .postList_02__wrap.swiper .postList_02__item {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .postList_02__swiperCont .postList_02__wrap.swiper .postList_02__item {
    margin-right: 10px;
  }
}
.postList_02__swiperCont .swiper_arrow {
  display: none;
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--BEIGE01);
  position: absolute;
  top: 5.625rem;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .postList_02__swiperCont .swiper_arrow {
    width: 3.375rem;
  }
}
.postList_02__swiperCont .swiper_arrow:after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_white.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .postList_02__swiperCont .swiper_arrow:after {
    width: 1.6875rem;
  }
}
.postList_02__swiperCont .swiper_arrow.__prev {
  left: 0;
  transform: translateX(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .postList_02__swiperCont .swiper_arrow.__prev {
    transform: translateX(-1.25rem) rotate(180deg);
  }
}
.postList_02__swiperCont .swiper_arrow.__next {
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .postList_02__swiperCont .swiper_arrow.__next {
    transform: translateX(1.25rem);
  }
}

/*-------------------
postList_03
-------------------*/
.postList_03 {
  display: flex;
  gap: 0.9375rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .postList_03 {
    gap: 1.25rem;
  }
}
.postList_03 .postList_03__item {
  width: calc((100% - 1.875rem) / 3);
  height: unset;
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.5625rem 1.5625rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .postList_03 .postList_03__item {
    width: calc((100% - 1.25rem) / 2);
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}
.postList_03 .postList_03__img {
  width: 12.875rem;
  aspect-ratio: 1/1;
  height: auto;
  margin-bottom: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .postList_03 .postList_03__img {
    width: 13.375rem;
  }
}
.postList_03 .postList_03__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.postList_03 .postList_03__txtWrap {
  width: 100%;
  text-align: center;
}
.postList_03 .postList_03__txt {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.44;
  color: var(--GRAY01);
}
@media screen and (max-width: 767px) {
  .postList_03 .postList_03__txt {
    font-size: 1.5rem;
  }
}
.postList_03 .postList_03__price {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1;
  color: var(--RED01);
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .postList_03 .postList_03__price {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}
.postList_03 .postList_03__price .txt__s {
  font-size: 1.5rem;
}

.postList_03__swiperCont {
  position: relative;
}
.postList_03__swiperCont .postList_03__wrap.swiper {
  overflow: hidden;
}
.postList_03__swiperCont .postList_03__wrap.swiper.__active + div .swiper_arrow {
  display: block;
}
.postList_03__swiperCont .postList_03__wrap.swiper .postList_03 {
  gap: unset;
}
.postList_03__swiperCont .postList_03__wrap.swiper .postList_03__item {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .postList_03__swiperCont .postList_03__wrap.swiper .postList_03__item {
    margin-right: 10px;
  }
}
.postList_03__swiperCont .swiper_arrow {
  display: none;
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--BEIGE01);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .postList_03__swiperCont .swiper_arrow {
    width: 3.375rem;
  }
}
.postList_03__swiperCont .swiper_arrow:after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_white.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .postList_03__swiperCont .swiper_arrow:after {
    width: 1.6875rem;
  }
}
.postList_03__swiperCont .swiper_arrow.__prev {
  left: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .postList_03__swiperCont .swiper_arrow.__prev {
    transform: translate(-1.25rem, -50%) rotate(180deg);
  }
}
.postList_03__swiperCont .swiper_arrow.__next {
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .postList_03__swiperCont .swiper_arrow.__next {
    transform: translate(1.25rem, -50%);
  }
}

/*-------------------
postList_side
-------------------*/
.postList_side .postList_side__parentTtl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 1rem;
  background: var(--RED01);
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__parentTtl {
    font-size: 2.25rem;
    padding: 1.3125rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.postList_side .postList_side__listWrap {
  padding: 0.9375rem 1.25rem;
  background: var(--BEIGE03);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__listWrap {
    padding: 0.75rem 1.875rem 1rem;
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.postList_side .postList_side__item {
  border-bottom: 1px solid var(--BEIGE01);
}
.postList_side .postList_side__item:last-child {
  border: none;
}
.postList_side .postList_side__item a {
  display: flex;
  gap: 0.625rem;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__item a {
    gap: 1.25rem;
    padding: 1.875rem 0;
  }
}
.postList_side .postList_side__img {
  width: 5.625rem;
  aspect-ratio: 90/65;
  position: relative;
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__img {
    width: 9.375rem;
  }
}
.postList_side .postList_side__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList_side .postList_side__rank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  aspect-ratio: 1/1;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__rank {
    width: 2.25rem;
    font-size: 1.5rem;
  }
}
.postList_side .postList_side__rank.__rank1 {
  background: #b89747;
}
.postList_side .postList_side__rank.__rank2 {
  background: #909994;
}
.postList_side .postList_side__rank.__rank3 {
  background: #b8875f;
}
.postList_side .postList_side__txtWrap {
  width: calc(100% - 0.625rem - 5.625rem);
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__txtWrap {
    width: calc(100% - 1.25rem - 9.375rem);
  }
}
.postList_side .postList_side__time {
  font-family: var(--FONT_ROBOTO);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  color: var(--BEIGE02);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__time {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}
.postList_side .postList_side__ttl {
  font-size: 0.875rem;
  line-height: 1.57;
  color: var(--GRAY01);
}
@media screen and (max-width: 767px) {
  .postList_side .postList_side__ttl {
    font-size: 1.75rem;
  }
}

/*-------------------
catList_01
-------------------*/
.catList_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .catList_01 {
    gap: 1.25rem;
  }
}
.catList_01 .catList_01__item {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 0.5625rem 0.75rem;
  min-width: 7.5rem;
  background: #000;
  border: 0.125rem solid #000;
}
@media screen and (max-width: 767px) {
  .catList_01 .catList_01__item {
    font-size: 1.375rem;
    padding: 0.75rem;
    min-width: 11.25rem;
    border-width: 0.25rem;
  }
}
.catList_01 .catList_01__item.__funding {
  background: var(--COL_COLUMN_FUNDING);
  border-color: var(--COL_COLUMN_FUNDING);
}
.catList_01 .catList_01__item.__funding.__childCat {
  color: var(--COL_COLUMN_FUNDING);
  background: #fff;
  border-color: var(--COL_COLUMN_FUNDING);
}
.catList_01 .catList_01__item.__bukken {
  background: var(--COL_COLUMN_BUKKEN);
  border-color: var(--COL_COLUMN_BUKKEN);
}
.catList_01 .catList_01__item.__bukken.__childCat {
  color: var(--COL_COLUMN_BUKKEN);
  background: #fff;
  border-color: var(--COL_COLUMN_BUKKEN);
}
.catList_01 .catList_01__item.__interior {
  background: var(--COL_COLUMN_INTERIOR);
  border-color: var(--COL_COLUMN_INTERIOR);
}
.catList_01 .catList_01__item.__interior.__childCat {
  color: var(--COL_COLUMN_INTERIOR);
  background: #fff;
  border-color: var(--COL_COLUMN_INTERIOR);
}
.catList_01 .catList_01__item.__kitchen {
  background: var(--COL_COLUMN_KITCHEN);
  border-color: var(--COL_COLUMN_KITCHEN);
}
.catList_01 .catList_01__item.__kitchen.__childCat {
  color: var(--COL_COLUMN_KITCHEN);
  background: #fff;
  border-color: var(--COL_COLUMN_KITCHEN);
}
.catList_01 .catList_01__item.__equipment {
  background: var(--COL_COLUMN_EQUIPMENT);
  border-color: var(--COL_COLUMN_EQUIPMENT);
}
.catList_01 .catList_01__item.__equipment.__childCat {
  color: var(--COL_COLUMN_EQUIPMENT);
  background: #fff;
  border-color: var(--COL_COLUMN_EQUIPMENT);
}
.catList_01 .catList_01__item.__pos {
  background: var(--COL_COLUMN_POS);
  border-color: var(--COL_COLUMN_POS);
}
.catList_01 .catList_01__item.__pos.__childCat {
  color: var(--COL_COLUMN_POS);
  background: #fff;
  border-color: var(--COL_COLUMN_POS);
}
.catList_01 .catList_01__item.__menu {
  background: var(--COL_COLUMN_MENU);
  border-color: var(--COL_COLUMN_MENU);
}
.catList_01 .catList_01__item.__menu.__childCat {
  color: var(--COL_COLUMN_MENU);
  background: #fff;
  border-color: var(--COL_COLUMN_MENU);
}
.catList_01 .catList_01__item.__purchase {
  background: var(--COL_COLUMN_PURCHASE);
  border-color: var(--COL_COLUMN_PURCHASE);
}
.catList_01 .catList_01__item.__purchase.__childCat {
  color: var(--COL_COLUMN_PURCHASE);
  background: #fff;
  border-color: var(--COL_COLUMN_PURCHASE);
}
.catList_01 .catList_01__item.__promotion {
  background: var(--COL_COLUMN_PROMOTION);
  border-color: var(--COL_COLUMN_PROMOTION);
}
.catList_01 .catList_01__item.__promotion.__childCat {
  color: var(--COL_COLUMN_PROMOTION);
  background: #fff;
  border-color: var(--COL_COLUMN_PROMOTION);
}
.catList_01 .catList_01__item.__education {
  background: var(--COL_COLUMN_EDUCATION);
  border-color: var(--COL_COLUMN_EDUCATION);
}
.catList_01 .catList_01__item.__education.__childCat {
  color: var(--COL_COLUMN_EDUCATION);
  background: #fff;
  border-color: var(--COL_COLUMN_EDUCATION);
}

/*-------------------
catList_side
-------------------*/
.catList_side__cont {
  --COL: var(--RED01);
}

.catList_side {
  border-left: 0.125rem solid var(--COL);
  border-top: 0.125rem solid var(--COL);
}
@media screen and (max-width: 767px) {
  .catList_side {
    display: flex;
    flex-wrap: wrap;
    border-width: 0.25rem;
  }
}
.catList_side .catList_side__itemWrap {
  border-right: 0.125rem solid var(--COL);
  border-bottom: 0.125rem solid var(--COL);
  position: relative;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__itemWrap {
    width: 50%;
    border-width: 0.25rem;
  }
}
.catList_side .catList_side__item a {
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  color: var(--COL);
  font-feature-settings: "palt";
  padding: 1.25rem 3.5rem 1.25rem 1.0625rem;
  min-height: 3.8125rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__item a {
    font-size: 1.5rem;
    padding: 0.625rem 3.75rem 0.625rem 1.75rem;
    display: flex;
    align-items: center;
    min-height: 4.5rem;
  }
}
.catList_side .catList_side__item a:after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_red.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.1875rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__item a:after {
    width: 1.375rem;
    right: 1.875rem;
  }
}
.catList_side .catList_side__item.__parent {
  position: relative;
}
.catList_side .catList_side__item.__current a {
  color: #fff;
  background: #000;
}
.catList_side .catList_side__item.__current a:after {
  background-image: url(../img/arrow_white.png);
}
.catList_side .catList_side__item.__current .catList_side__btnOpen {
  background: #000;
}
.catList_side .catList_side__item.__current .catList_side__btnOpen:before, .catList_side .catList_side__item.__current .catList_side__btnOpen:after {
  background: #fff;
}
.catList_side .catList_side__btnOpen {
  padding: 0;
  width: 3.375rem;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__btnOpen {
    width: 5rem;
  }
}
.catList_side .catList_side__btnOpen:before, .catList_side .catList_side__btnOpen:after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.25rem;
  border-radius: 100px;
  background: var(--COL);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__btnOpen:before, .catList_side .catList_side__btnOpen:after {
    width: 1.625rem;
    height: 0.3125rem;
  }
}
.catList_side .catList_side__btnOpen:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.catList_side .catList_side__btnOpen.__open:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.catList_side .catList_side__childListWrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childListWrap {
    width: calc(200% + 0.25rem);
    position: relative;
    z-index: 11;
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
  }
}
.catList_side .catList_side__childList .catList_side__item a {
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1.0625rem;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childList .catList_side__item a {
    font-size: 1.5rem;
    padding: 0 0 0 1.75rem;
  }
}
.catList_side .catList_side__childList .catList_side__item a .txt {
  display: block;
  border-top: 0.125rem dotted var(--COL);
  padding: 1.25rem 2.4375rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childList .catList_side__item a .txt {
    border: none;
    padding: 0.625rem 3.75rem 0.625rem 0;
    display: flex;
    align-items: center;
    min-height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childList .catList_side__item:nth-child(odd) {
    width: calc(50% - 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childList .catList_side__item:nth-child(even) {
    width: calc(50% + 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__childList .catList_side__item:nth-child(2) {
    border-top: 0.25rem solid var(--COL);
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap {
    margin-left: calc(-100% - 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(odd) {
    width: calc(50% + 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(even) {
    width: calc(50% - 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(2) {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(1) {
    border-top: 0.25rem solid var(--COL);
  }
}

@media screen and (max-width: 767px) {
  .catList_side__wrap.__column {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side {
    border-color: #e3e3e3;
    border-width: 0.125rem;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__itemWrap {
    border-color: #e3e3e3;
    border-width: 0.125rem;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__childListWrap {
    width: calc(200% + 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__childList .catList_side__item:nth-child(odd) {
    width: calc(50% - 0.0625rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__childList .catList_side__item:nth-child(even) {
    width: calc(50% + 0.0625rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__childList .catList_side__item:nth-child(2) {
    border-top: 0.125rem solid #e3e3e3;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap {
    margin-left: calc(-100% - 0.125rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(odd) {
    width: calc(50% + 0.0625rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(even) {
    width: calc(50% - 0.0625rem);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(2) {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__wrap.__column .catList_side .catList_side__itemWrap:nth-child(even) .catList_side__childListWrap .catList_side__item:nth-child(1) {
    border-top: 0.125rem solid #e3e3e3;
  }
}

@media screen and (max-width: 767px) {
  .catList_side__pullDownBtn {
    border: 0.25rem solid var(--COL);
    padding: 1.375rem 1.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: var(--COL);
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__pullDownBtn .ico {
    display: block;
    width: 3.375rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__pullDownBtn .ico:before, .catList_side__pullDownBtn .ico:after {
    content: "";
    display: block;
    border-radius: 100px;
    background: var(--COL);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    width: 1.625rem;
    height: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .catList_side__pullDownBtn .ico:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  .catList_side__pullDownBtn.__open .ico:after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

/*-------------------
catList_tab
-------------------*/
.catList_tab__wrap {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .catList_tab__wrap {
    margin-bottom: 1.3125rem;
  }
}

.catList_tab {
  display: flex;
  flex-wrap: wrap;
}
.catList_tab .catList_tab__item {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.11;
  color: #fff;
  text-align: center;
  font-feature-settings: "palt";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  min-height: 3.75rem;
  padding: 0.3125rem 0.625rem;
  background: var(--BEIGE01);
  border: 0.125rem solid var(--RED02);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .catList_tab .catList_tab__item {
    font-size: 1.5rem;
    width: 50%;
    min-height: 4.5rem;
    padding: 0.625rem 0.9375rem;
    border-width: 0.25rem;
    border-top: none;
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .catList_tab .catList_tab__item:nth-child(odd) {
    border-left: 0.25rem solid var(--RED02);
  }
}
@media screen and (max-width: 767px) {
  .catList_tab .catList_tab__item:nth-child(1), .catList_tab .catList_tab__item:nth-child(2) {
    border-top: 0.25rem solid var(--RED02);
  }
}
.catList_tab .catList_tab__item.__active {
  background: #000;
}

/*-------------------
pagination_01
-------------------*/
.pagination_01 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .pagination_01 {
    gap: 1.25rem;
  }
}
.pagination_01 .blk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .pagination_01 .blk {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .pagination_01 .pager__wrap.__arrow {
    position: relative;
    margin-bottom: 6rem;
  }
}
.pagination_01 .pager__wrap.__arrow .pager {
  background: var(--GRAY01);
  position: relative;
}
.pagination_01 .pager__wrap.__arrow .pager:before {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_white.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagination_01 .pager__wrap.__arrow .pager:before {
    width: 1.625rem;
  }
}
.pagination_01 .pager__wrap.__arrow .pager.__first:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.pagination_01 .pager__wrap.__arrow .txt {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--GRAY01);
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination_01 .pager__wrap.__arrow .txt {
    font-size: 1.625rem;
    margin-top: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: calc(100% + 1.125rem);
    left: 50%;
    transform: translateX(-50%);
  }
}
.pagination_01 .pager__wrap.__arrow.__current {
  opacity: 0.5;
}
.pagination_01 .pager {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 3.125rem;
  height: 3.125rem;
  padding: 0.625rem;
  font-size: 1.25rem;
  line-height: 1;
  background: #f0ecdb;
  color: var(--GRAY01);
}
@media screen and (max-width: 767px) {
  .pagination_01 .pager {
    min-width: 5.125rem;
    height: 5.125rem;
    font-size: 2rem;
  }
}
.pagination_01 .pager.__current {
  background: var(--RED01);
  color: #fff;
}
.pagination_01 .pager.__dots {
  background: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: unset;
  padding: 0;
}

/*-------------------
pagination_02
-------------------*/
.pagination_02 {
  display: flex;
  gap: 1.25rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .pagination_02 {
    margin-top: 4.1875rem;
  }
}
.pagination_02 .pagination_02__item a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 0.9375rem;
  height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .pagination_02 .pagination_02__item a {
    font-size: 1.75rem;
    padding: 1.75rem;
    height: 5.125rem;
  }
}
.pagination_02 .pagination_02__item.__arrow a {
  width: 9.375rem;
  padding: 0.9375rem 1.875rem;
  background: var(--GRAY01);
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagination_02 .pagination_02__item.__arrow a {
    width: 13.375rem;
    padding: 1.75rem;
  }
}
.pagination_02 .pagination_02__item.__arrow a:before {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 16/13;
  background: url(../img/arrow_white.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagination_02 .pagination_02__item.__arrow a:before {
    width: 1.625rem;
    right: 1.75rem;
  }
}
.pagination_02 .pagination_02__item.__arrow.__prev a {
  justify-content: flex-end;
}
.pagination_02 .pagination_02__item.__arrow.__prev a:before {
  right: unset;
  left: 1.0625rem;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .pagination_02 .pagination_02__item.__arrow.__prev a:before {
    left: 1.0625rem;
  }
}
.pagination_02 .pagination_02__item.__archive a {
  width: 15.9375rem;
  background: #fff;
  border: 0.125rem solid #7f7f7f;
  color: var(--GRAY01);
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination_02 .pagination_02__item.__archive a {
    width: 12.625rem;
    border-width: 0.25rem;
  }
}

/*-------------------
form_01
-------------------*/
.form_01 .form_01__tbl {
  --BORDER_COL: var(--BEIGE02);
  border-top: 1px solid var(--BORDER_COL);
  border-left: 1px solid var(--BORDER_COL);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__tbl {
    margin-bottom: 3.75rem;
  }
}
.form_01 .form_01__tblRow {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__tblRow {
    display: block;
  }
}
.form_01 .form_01__tblRow.__required .form_01__tblTtl:before {
  content: "必須";
  display: block;
  padding: 0.5rem;
  padding-right: calc(0.5rem - 0.3em);
  border-radius: 0.375rem;
  background: var(--RED01);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.3em;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__tblRow.__required .form_01__tblTtl:before {
    font-size: 1.5rem;
    padding: 0.5rem 0.8125rem;
    padding-right: calc(0.8125rem - 0.3em);
  }
}
.form_01 .form_01__tblTtl,
.form_01 .form_01__tblDtil {
  border-bottom: 1px solid var(--BORDER_COL);
  border-right: 1px solid var(--BORDER_COL);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form_01 .form_01__tblTtl {
  background: var(--BEIGE04);
  width: 20rem;
  padding: 1.1875rem 4.375rem 1.1875rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__tblTtl {
    display: block;
    width: 100%;
    font-size: 1.75rem;
    line-height: 1.2;
    padding: 0.4375rem 6.0625rem 0.4375rem 1.1875rem;
    min-height: 3.25rem;
  }
}
.form_01 .form_01__tblTtl .txt__caution {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.16;
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__tblTtl .txt__caution {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
  }
}
.form_01 .form_01__tblDtil {
  background: #fff;
  width: calc(100% - 20rem);
  padding: 0.5625rem 1.375rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__tblDtil {
    width: 100%;
    font-size: 1.75rem;
    padding: 1.25rem 2.1875rem;
  }
}
.form_01 input[type=text],
.form_01 select,
.form_01 textarea {
  padding: 0.4375rem 0.9375rem;
  background: #fff;
  vertical-align: initial;
  border: 1px solid var(--BEIGE05);
  border-radius: 0.375rem;
  width: 100%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .form_01 input[type=text],
.form_01 select,
.form_01 textarea {
    padding: 0.9375rem 1.625rem;
  }
}
.form_01 input::-moz-placeholder {
  color: #bfbfbf;
}
.form_01 input::placeholder {
  color: #bfbfbf;
}
.form_01 .form_01__selectWrap {
  position: relative;
  width: 100%;
}
.form_01 .form_01__selectWrap:after {
  content: "";
  display: block;
  border-top: 0.75rem solid var(--GRAY02);
  border-left: 0.4375rem solid transparent;
  border-right: 0.4375rem solid transparent;
  pointer-events: none;
  position: absolute;
  top: 1.3125rem;
  right: 1.375rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .form_01 .form_01__selectWrap:after {
    border-top-width: 1.375rem;
    border-left-width: 0.8125rem;
    border-right-width: 0.8125rem;
    top: 2.5rem;
    right: 2.125rem;
  }
}
.form_01 select option {
  color: #000;
}
.form_01 textarea {
  min-height: 11.625rem;
}
@media screen and (max-width: 767px) {
  .form_01 textarea {
    min-height: 16.125rem;
  }
}
.form_01 .btn_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .form_01 .btn_wrap {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.form_01 .btn_01 {
  margin: 0 auto;
}
.form_01 .btn_01.__back {
  border-color: #aaa;
  color: #fff;
  background: #aaa;
}
.form_01 .btn_01.__back:after {
  background-image: url(../img/arrow_white.png);
}
.form_01 .btn_01.__back:hover {
  opacity: 0.8;
}

.mw_wp_form_confirm .form_01__selectWrap:after {
  content: none;
}
/*# sourceMappingURL=style.css.map */