@charset "UTF-8";
/* style.scss */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* サブメニューが非表示の時 */
[hidden] {
  display: none;
}

:root {
  --color-brandGr:#61885C;
  --color-brandGr_dark:#487345;
  --color-brandGr_thin:#F0F4EF;
  --color-bg:#FAF8F4;
  --color-maintxt:#333;
  --color-maintxt_thin:#777;
  --color-border1:#ddd;
  --font-size240px:calc(240 / 16 * 1rem);
  --font-size40px:calc(40 / 16 * 1rem);
  --font-size36px:calc(36 / 16 * 1rem);
  --font-size32px:calc(32 / 16 * 1rem);
  --font-size30px:calc(30 / 16 * 1rem);
  --font-size28px:calc(28 / 16 * 1rem);
  --font-size26px:calc(26 / 16 * 1rem);
  --font-size24px:calc(24 / 16 * 1rem);
  --font-size22px:calc(22 / 16 * 1rem);
  --font-size20px:calc(20 / 16 * 1rem);
  --font-size18px:calc(18 / 16 * 1rem);
  --font-size16px:calc(16 / 16 * 1rem);
  --font-size15px:calc(15 / 16 * 1rem);
  --font-size14px:calc(14 / 16 * 1rem);
  --font-size13px:calc(13 / 16 * 1rem);
  --font-size12px:calc(12 / 16 * 1rem);
  --font-size11px:calc(11 / 16 * 1rem);
}

@media (max-width: 750px) {
  :root {
    --font-size240px:calc(98 / 16 * 1rem);
    --font-size40px:calc(28 / 16 * 1rem);
    --font-size36px:calc(28 / 16 * 1rem);
    --font-size32px:calc(24 / 16 * 1rem);
    --font-size30px:calc(24 / 16 * 1rem);
    --font-size28px:calc(22 / 16 * 1rem);
    --font-size26px:calc(22 / 16 * 1rem);
    --font-size24px:calc(18 / 16 * 1rem);
    --font-size22px:calc(20 / 16 * 1rem);
    --font-size20px:calc(18 / 16 * 1rem);
    --font-size18px:calc(16 / 16 * 1rem);
    --font-size16px:calc(14 / 16 * 1rem);
    --font-size15px:calc(14 / 16 * 1rem);
    --font-size14px:calc(14 / 16 * 1rem);
    --font-size13px:calc(13 / 16 * 1rem);
    --font-size12px:calc(12 / 16 * 1rem);
    --font-size11px:calc(11 / 16 * 1rem);
  }
}
body {
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
body * {
  font-size: var(--font-size16px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}
body main *, body footer * {
  color: var(--color-maintxt);
}

input[type=text], input[type=search], input[type=email], input[type=tel], input[type=url], input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  /* iOS特有の角丸を無効化 */
  box-shadow: none;
}

.en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
}

a, button, a span {
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
  cursor: pointer;
}

img {
  display: block;
  height: auto;
}

.hidden {
  overflow: hidden;
}

.flexBox {
  display: flex;
}

.align_center {
  align-items: center;
}

.txtright {
  text-align: right;
}

section {
  max-width: 1920px;
  padding: 0 max(24px, 4vw);
  margin: 0 auto max(120px, 7.5vw);
}

.mb0 {
  margin-bottom: 0;
}

.mb80 {
  margin-bottom: max(80px, 5vw);
}

.max_w800 {
  max-width: 800px;
  margin: auto;
}

.w750_on, .w1023_on {
  display: none;
}

@media (max-width: 1023px) {
  .w1023_on {
    display: block;
  }
  .w1023_out {
    display: none;
  }
}
@media (max-width: 750px) {
  section {
    margin: 0 auto max(64px, 17.066vw);
  }
  .mb80 {
    margin-bottom: max(40px, 10.666vw);
  }
  .w750_on {
    display: block !important;
  }
  .w750_out {
    display: none !important;
  }
}
/* icon */
.icon_Catalog_wh > *::before {
  content: "";
  background: url(../img/icon/icon_catalog_wh.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Book_bl > *::before {
  background: url(../img/icon/icon_book_bl.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Bookmark_wh > *::before {
  background: url(../img/icon/icon_heart_wh.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Search_wh > *::before {
  background: url(../img/icon/icon_search_wh.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Contact_wh > *::before {
  background: url(../img/icon/icon_mail_wh.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Contact_bl > *::before {
  background: url(../img/icon/icon_mail_bl.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Catalogform_wh > *::before {
  background: url(../img/icon/icon_book_wh.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.icon_Arw_wh > *::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background-image: url(../img/icon/icon_arw_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
  display: inline-block;
}

.icon_Blank_wh > *::after {
  background-image: url(../img/icon/icon_blank_gr.svg) !important;
}

.icon_circleBig {
  width: min(8vw, 6rem);
  height: min(8vw, 6rem);
  min-width: min(8vw, 6rem);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  position: relative;
  font-size: min(8vw, 6rem);
}
.icon_circleBig::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}
.icon_circleBig::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/icon/icon_arw_wh.svg);
  background-repeat: no-repeat;
  background-size: 0.4em;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

@media (min-width: 1024px) {
  a:hover .icon_circleBig::before {
    transform: scale(1);
  }
  a:hover .icon_circleBig::after {
    background-image: url(../img/icon/icon_arw_gr.svg);
  }
  a.icon_Blank_wh:hover > *::after {
    background-image: url(../img/icon/icon_blank_wh.svg) !important;
  }
}
@media (max-width: 750px) {
  .icon_circleBig {
    width: max(48px, 12.8vw);
    height: max(48px, 12.8vw);
    min-width: inherit;
  }
}
.icon_circle_arwGR {
  width: 2rem;
  height: 2rem;
  background-color: var(--color-brandGr_thin);
  border-radius: 50%;
  position: relative;
}
.icon_circle_arwGR::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-brandGr);
  transform: scale(0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}
.icon_circle_arwGR::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/icon/icon_arw_gr.svg);
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* transition: .3s cubic-bezier(0, 0.55, 0.45, 1); */
}

@media (min-width: 1024px) {
  a:hover .icon_circle_arwGR::before {
    transform: scale(1);
  }
  a:hover .icon_circle_arwGR::after {
    background-image: url(../img/icon/icon_arw_wh.svg);
  }
}
.icon_circle_bgGR {
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--color-brandGr);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.icon_circle_bgGR::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}
.icon_circle_bgGR::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/icon/icon_arw_wh.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 1024px) {
  a:hover .icon_circle_bgGR::before {
    transform: scale(1.1);
  }
  a:hover .icon_circle_bgGR::after {
    background-image: url(../img/icon/icon_arw_gr.svg);
  }
}
/* アコーディオン */
.accordion_btn {
  position: relative;
  display: flex;
  cursor: pointer;
  padding: 1.5rem 0;
}

.icon_accordion_arw {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--color-brandGr);
}

.icon_accordion_arw::before {
  content: "";
  width: 9px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.icon_accordion_arw::after {
  content: "";
  width: 1px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.open .icon_accordion_arw::after {
  transform: translate(0%, -50%) rotate(90deg);
}

/* btn */
.btn_bgGr a {
  background-color: var(--color-brandGr);
  border: 1px solid var(--color-brandGr);
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1em 1.5em;
  border-radius: 2px;
}
.btn_bgGr a span {
  color: #fff;
  display: flex;
  align-items: center;
  text-align: left;
}
.btn_bgGr a span::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background-image: url(../img/icon/icon_arw_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn_bgGr.icon_Modal_wh a span::after {
  background-image: url(../img/icon/icon_modal_wh.svg);
}

.btn_bgGr.back_btn span {
  position: relative;
  padding-left: 1.5em;
}
.btn_bgGr.back_btn span::after {
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translateY(-50%) rotate(180deg);
}

.btn_bgWh_op01 a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1em 1.5em;
  border-radius: 2px;
}
.btn_bgWh_op01 a span {
  color: #fff;
  display: flex;
  align-items: center;
}

.btn_bgGr.bg_right a {
  background-color: var(--color-brandGr_thin);
}
.btn_bgGr.bg_right a span {
  color: var(--color-brandGr);
}

@media (min-width: 1024px) {
  .hover_borderGr a:hover {
    background-color: transparent;
  }
  .hover_borderGr a:hover span {
    color: var(--color-brandGr);
  }
  .btn_bgGr a:hover span::after {
    background-image: url(../img/icon/icon_arw_gr.svg);
  }
  .btn_bgGr.icon_Modal_wh a:hover span::after {
    background-image: url(../img/icon/icon_modal_gr.svg);
  }
  .hover_borderGrbg a:hover {
    background-color: var(--color-brandGr);
  }
  .hover_borderWh a:hover {
    border: 1px solid #fff;
    background-color: transparent;
  }
  .hover_borderWh a:hover span::after {
    background-image: url(../img/icon/icon_arw_wh.svg) !important;
  }
  .hover_bgGr a:hover {
    background-color: var(--color-brandGr);
  }
  .hover_borderGrbg a.icon_Book_bl:hover *::before {
    background-image: url(../img/icon/icon_book_wh.svg);
  }
  .hover_borderGrbg a.icon_Contact_bl:hover *::before {
    background-image: url(../img/icon/icon_mail_wh.svg);
  }
  .hover_borderGr.bg_right a:hover {
    background-color: var(--color-brandGr);
  }
  .hover_borderGr.bg_right a:hover span {
    color: #fff;
  }
}
/* anm */
.hover_linear a, .hover_linear button {
  background: linear-gradient(#fff, #fff) 0 100%/0 1px no-repeat;
  display: inline;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

.is-fixed .hover_linear a, .is-fixed .hover_linear button {
  background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
}
.is-fixed .hover_linear .mega_nav_link li a {
  background: none;
}

.hover_linear777 a, .hover_linear777 button {
  background: linear-gradient(#777, #777) 0 100%/0 1px no-repeat;
  display: inline;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

.hover_linear_none {
  background: linear-gradient(#333, #333) 0 100%/0 0 no-repeat !important;
}

@media (min-width: 1024px) {
  .hover_linear a:hover, .hover_linear button:hover {
    background-size: 100% 1px;
  }
  .hover_linear777 a:hover, .hover_linear777 button:hover {
    background-size: 100% 1px;
  }
}
.blur_active main, .blur_active footer, .blur_active #utility_navSide {
  animation: blur_anm_in 0.3s forwards;
}

.blur_out main, .blur_out footer, .blur_out #utility_navSide {
  animation: blur_anm_out 0.3s forwards;
}

@keyframes blur_anm_in {
  0% {
    filter: blur(0);
  }
  100% {
    filter: blur(10px);
  }
}
@keyframes blur_anm_out {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
/* モーダル */
.modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1005;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 688px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 8px;
}
.modal__content .js-modal-close {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: 99;
  border-radius: 50%;
  border: 0;
  background-color: var(--color-brandGr);
}
.modal__content .js-modal-close::before, .modal__content .js-modal-close::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.modal__content .js-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__content .js-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__inner {
  height: 100%;
  overflow-x: hidden;
}

/* news_wrap */
.news_list {
  border-bottom: 1px solid var(--color-border1);
}
.news_list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border1);
}
.news_list a {
  display: flex;
  align-items: center;
  position: relative;
}
.news_list a::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--color-border1);
  position: absolute;
  top: 0;
  left: 9rem;
}

.news_days {
  text-align: center;
  width: 9rem;
}
.news_days span {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-maintxt_thin);
}
.news_days .days_Y {
  font-size: var(--font-size14px);
  display: block;
}
.news_days .days_d-m {
  font-size: var(--font-size24px);
}

.news_list .news_txt {
  padding: 0 2.5rem;
  width: calc(100% - 11rem);
}
.news_list .news_txt p {
  background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
  display: inline;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

.tag_newsCate span {
  font-size: 10px;
  color: var(--color-brandGr);
  line-height: 1;
  border: 1px solid var(--color-brandGr);
  border-radius: 99px;
  display: inline-block;
  padding: 0.5em 1em;
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .news_list a:hover .news_txt p {
    background-size: 100% 1px;
  }
}
@media (max-width: 750px) {
  .news_days {
    width: 4em;
  }
  .news_list a {
    justify-content: space-between;
  }
  .news_list a::before {
    left: 5em;
  }
  .news_list .news_txt {
    padding: 0 3em 0 1em;
    width: calc(100% - 5em);
  }
  .news_list a .icon_circle_arwGR {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* h2 ttl_sec */
.ttl_sec {
  font-size: var(--font-size28px);
  color: var(--color-maintxt);
  /* margin-bottom: 2.5rem; */
}
.ttl_sec .en {
  font-size: var(--font-size14px);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.ttl_sec_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ttl_sec_wrap .ttl_sec {
  padding-right: 3.5rem;
  margin-right: 3.5rem;
  border-right: 1px solid var(--color-border1);
}

@media (max-width: 1023px) {
  .ttl_sec_wrap {
    display: block;
  }
  .ttl_sec_wrap .ttl_sec {
    padding-right: 0;
    margin: 0 0 1.5em;
    border-right: none;
  }
}
@media (max-width: 750px) {
  .ttl_sec_wrap {
    max-width: 100%;
  }
}
/* アコーディオン */
.accordion_cnt {
  display: none;
}

/* ボーダー装飾 */
.border_deco {
  position: relative;
  padding-top: 2rem;
}
.border_deco::before {
  content: "";
  width: 5px;
  height: 1px;
  background-color: var(--color-brandGr);
  position: absolute;
  top: 0;
  left: 0;
}
.border_deco::after {
  content: "";
  width: calc(100% - 10px);
  height: 1px;
  background-color: var(--color-border1);
  position: absolute;
  top: 0;
  right: 0;
}

/* 下層 main */
.subpage main {
  padding-top: 100px;
}

@media (max-width: 750px) {
  .subpage main {
    padding-top: max(14vw, 70px);
  }
}
/* 下層 section.conteiner */
.container > .content:not(:last-child) {
  margin-bottom: max(80px, 5vw);
}

@media (max-width: 750px) {
  .container > .content:not(:last-child) {
    margin-bottom: max(40px, 10.666vw);
  }
}
/* パンくず */
.breadcrumb {
  padding: 0 2.5em;
  margin-bottom: 5rem;
}
.breadcrumb ol {
  display: flex;
}
.breadcrumb ol * {
  font-size: var(--font-size12px);
  white-space: nowrap;
  overflow: hidden;
  min-width: -moz-max-content;
  min-width: max-content;
}
.breadcrumb ol .current {
  text-overflow: ellipsis;
  min-width: inherit;
}
.breadcrumb li:not(:last-child)::after {
  content: "・";
  color: var(--color-maintxt_thin);
  display: inline-block;
  padding: 0 0.5em;
}
.breadcrumb a {
  color: var(--color-brandGr);
}

@media (max-width: 750px) {
  .breadcrumb {
    padding: 0 max(16px, 4.266vw);
    margin-bottom: max(40px, 10.666vw);
  }
}
/* 下層タイトル */
.subpage_heading {
  max-width: 1920px;
  padding: 0 max(24px, 4vw);
  margin: 0 auto 80px;
}
.subpage_heading h1 {
  font-size: var(--font-size40px);
  line-height: 1.5;
}
.subpage_heading h1 span {
  color: var(--color-brandGr);
  display: block;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (max-width: 750px) {
  .subpage_heading {
    margin-bottom: max(40px, 10.666vw);
  }
}
/* 概要　共通 */
.info_clm dl {
  display: flex;
  border-top: 1px solid var(--color-border1);
  position: relative;
}
.info_clm dl::before {
  content: "";
  width: 200px;
  height: 1px;
  background-color: var(--color-maintxt);
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
.info_clm dl:last-child {
  border-bottom: 1px solid var(--color-border1);
}
.info_clm dl:last-child::after {
  content: "";
  width: 200px;
  height: 1px;
  background-color: var(--color-maintxt);
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.info_clm dt {
  width: 200px;
  padding: 2rem 2rem 2rem 0;
}
.info_clm dd {
  padding: 2rem 2.5rem;
  width: calc(100% - 200px);
}

@media (max-width: 750px) {
  .info_clm dl {
    display: block;
  }
  .info_clm dl::before {
    width: max(40px, 10.666vw);
  }
  .info_clm dl:last-child::after {
    width: max(40px, 10.666vw);
  }
  .info_clm dl dt {
    width: 100%;
    padding: 1em 0 0.5em;
  }
  .info_clm dl dd {
    width: 100%;
    padding: 0 0 1em;
  }
}
/* プログレスバー　スライド */
.slide_dots_bar button {
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  border: none;
  background-color: var(--color-brandGr_thin);
}
.slide_dots_bar button::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-brandGr);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s;
  z-index: 2;
  border-radius: 50%;
}
.slide_dots_bar .slick-prev {
  bottom: -20px;
  left: 0;
}
.slide_dots_bar .slick-prev::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/icon/icon_arw_gr.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  z-index: 3;
}
.slide_dots_bar .slick-next {
  bottom: -20px;
  left: 48px;
}
.slide_dots_bar .slick-next::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/icon/icon_arw_gr.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.slide_dots_bar .slick-disabled {
  background-color: #fff;
  cursor: inherit;
}
.slide_dots_bar .slick-disabled.slick-prev::before, .slide_dots_bar .slick-disabled.slick-next::before {
  background-image: url(../img/icon/icon_arw_bl.svg);
  opacity: 0.4;
}
.slide_dots_bar .slick-dots {
  display: flex;
  width: calc(100% - (100px + 4vw));
  margin: 20px 0 20px 100px;
  border-radius: 3px;
  overflow: hidden;
}
.slide_dots_bar .slick-dots li {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #dbdbdb;
  overflow: hidden;
}
.slide_dots_bar .slick-dots li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-brandGr);
  transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.slide_dots_bar .slick-dots li.is-filled::before {
  width: 100%;
}
.slide_dots_bar .slick-dots li button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .slide_dots_bar .slick-prev:not(.slick-disabled):hover::before {
    background-image: url(../img/icon/icon_arw_wh.svg);
  }
  .slide_dots_bar .slick-next:not(.slick-disabled):hover::before {
    background-image: url(../img/icon/icon_arw_wh.svg);
  }
  .slide_dots_bar button:hover::after {
    transform: translate(-50%, -50%) scale(1);
  }
  .slide_dots_bar .slick-disabled:hover::after {
    transform: translate(-50%, -50%) scale(0);
  }
}
/* 下層用 ２カラム */
.low_clm2 {
  display: flex;
  align-items: start;
}

.low_clm2_ttl {
  width: 220px;
}
.low_clm2_ttl.ps_sticky {
  position: sticky;
  top: 100px;
}
.low_clm2_ttl h2 {
  font-size: var(--font-size22px);
}
.low_clm2_ttl h2 span {
  font-size: var(--font-size12px);
  color: var(--color-brandGr);
  display: block;
}

.low_clm2_cont {
  width: calc(100% - 220px);
  padding-left: 5rem;
}

@media (max-width: 1279px) and (min-width: 751px) {
  .low_clm2_ttl {
    width: 104px;
  }
  .low_clm2_cont {
    width: calc(100% - 104px);
    padding-left: 2.5rem;
  }
}
@media (max-width: 750px) {
  .low_clm2 {
    display: block;
  }
  .low_clm2 .low_clm2_ttl {
    width: 100%;
  }
  .low_clm2 .low_clm2_cont {
    width: 100%;
    padding: 1.75em 0 0;
  }
}
/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
}

.pagination > * {
  width: 2.5em;
  height: 2.5em;
  border-radius: 999px;
  background-color: #fff;
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.pagination > * span {
  color: var(--color-brandGr);
  position: relative;
  z-index: 3;
}
.pagination > *::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-brandGr);
  border-radius: 999px;
  transition: 0.3s;
  transform: scale(0);
}
.pagination .current {
  background-color: var(--color-brandGr);
  color: #fff;
}
.pagination .current span {
  color: #fff;
}
.pagination .prev {
  color: transparent;
  position: relative;
}
.pagination .prev::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/icon/icon_arw_gr.svg);
  background-size: 32%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg) scale(1);
  z-index: 4;
}
.pagination .next {
  color: transparent;
  position: relative;
}
.pagination .next::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/icon/icon_arw_gr.svg);
  background-size: 32%;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  z-index: 4;
}
.pagination .disabled {
  pointer-events: none;
  cursor: default;
}
.pagination .disabled::after {
  background-image: url(../img/icon/icon_arw_bl.svg);
  opacity: 0.4;
}

@media (min-width: 1024px) {
  .pagination a:hover span {
    color: #fff;
  }
  .pagination a:hover::before {
    transform: scale(1);
  }
  .pagination .prev:hover,
  .pagination .next:hover {
    color: transparent;
  }
  .pagination .prev:hover::after,
  .pagination .next:hover::after {
    background-image: url(../img/icon/icon_arw_wh.svg);
  }
}
/* 404ページ */
.notfound_page p {
  margin-bottom: 2.5em;
}
.notfound_page a {
  margin: auto;
}

.ytShort_clm {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 2.5rem;
  position: relative;
  width: 100%;
  height: 100%;
}
.ytShort_clm .ytShort_clm_item {
  width: calc(25% - 1.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ytShort_clm .ytShort_clm_item a {
  position: relative;
  height: 100%;
}
.ytShort_clm .ytShort_clm_item a .image {
  height: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.ytShort_clm .ytShort_clm_item a .image::before {
  content: "";
  width: 62px;
  height: 62px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/icon/icon_ytShort_play.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.ytShort_clm .ytShort_clm_item a .image img {
  height: 180%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.ytShort_clm .ytShort_clm_item a p {
  width: 90%;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: #fff;
}
.ytShort_clm .ytShort_clm_item a p span {
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(#fff, #fff) 0 100%/0 1px no-repeat;
  display: inline;
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

.modal_ytShort .modal__content {
  width: 90%;
}
.modal_ytShort .modal__content .modal__inner {
  padding: 3em;
}
.modal_ytShort .iframe_wrap {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.modal_ytShort .iframe_wrap iframe {
  width: auto;
  height: 100%;
  aspect-ratio: 9/16;
}

@media (min-width: 1024px) {
  .ytShort_clm .ytShort_clm_item a:hover .image img {
    transform: translate(-50%, -50%) scale(1.1);
  }
  .ytShort_clm .ytShort_clm_item a:hover p span {
    background: linear-gradient(#fff, #fff) 0 100%/100% 1px no-repeat;
  }
}
@media (max-width: 1279px) {
  .ytShort_clm {
    gap: max(24px, 4vw);
  }
  .ytShort_clm .ytShort_clm_item {
    width: calc(50% - 2vw);
  }
}
@media (max-width: 750px) {
  .ytShort_clm {
    gap: max(24px, 4vw) calc(4vw - 1px);
  }
  .ytShort_clm .ytShort_clm_item a .image img {
    position: absolute;
  }
  .ytShort_clm .ytShort_clm_item a p {
    position: relative;
    top: 0;
    left: 0;
    color: #333;
    transform: none;
    width: 100%;
    margin: 1em 0 0;
    text-overflow: inherit;
    -webkit-line-clamp: none;
  }
  .ytShort_clm .ytShort_clm_item a p span {
    color: #333;
  }
}
/* recaptch 非表示*/
.grecaptcha-badge {
  visibility: hidden;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5em 0 2.5em;
  z-index: 99;
  transition: 0.3s;
  opacity: 0;
}
header.anm_in {
  animation: header_anm_in 0.5s 0.5s forwards;
}
header * {
  color: #fff;
}
header button {
  background: none;
  border: none;
  padding: 0;
}
header .header_logo a {
  display: block;
}

@keyframes header_anm_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header_navWrap, .header_navInner {
  display: flex;
  align-items: center;
}

/* main_nav */
#main_nav .header_navInner > li {
  margin: 0 1em;
}

.header_navInner a, .header_navInner button {
  font-size: var(--font-size15px);
  display: inline-block;
}

/* utility_nav */
#utility_nav li {
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
#utility_nav li > a, #utility_nav li > button {
  font-size: var(--font-size12px);
  display: block;
  line-height: 1.6;
}
#utility_nav li > a::before, #utility_nav li > button::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: block;
  margin: 0 auto 8px;
}

.mega_btn.mega_btn_active {
  background-size: 100% 1px;
}

/* mega nav */
.mega_nav {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  position: absolute;
  top: 100px;
  left: 0;
  transition: 0.3s;
  z-index: 1;
  background-color: #F5F1EB;
  border-top: 1px solid var(--color-border1);
}
.mega_nav.mega_nav_active {
  visibility: visible;
  opacity: 1;
  z-index: 4;
  padding: 2.5rem 0;
}
.mega_nav nav {
  max-width: 1100px;
  width: calc(100% - 5rem);
  margin: auto;
  opacity: 0;
  transition: 0.3s;
  position: relative;
}
.mega_nav.mega_nav_active nav {
  opacity: 1;
}
.mega_nav nav * {
  color: var(--color-maintxt);
}
.mega_nav a {
  background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
}

.mega_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mega_heading a, .mega_heading p {
  font-size: var(--font-size24px);
}
.mega_heading a {
  position: relative;
  margin-left: 2rem;
}
.mega_heading a .icon_circle_bgGR {
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}

.mega_btn_close {
  position: absolute;
  top: 0.5em;
  right: 0;
  font-size: var(--font-size15px);
  padding-left: 1.5rem;
}
.mega_btn_close::before {
  content: "";
  width: 1.3em;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}
.mega_btn_close::after {
  content: "";
  width: 1.3em;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-45deg) translateY(-50%);
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

.mega_nav_link {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border1);
  display: flex;
  flex-wrap: wrap;
}
.mega_nav_link li {
  width: 25%;
  margin: 1.5rem 0 0;
  padding-right: 2rem;
}
.mega_nav_link li a {
  padding-left: 1.5rem;
  position: relative;
  display: inline-block;
  background: none;
}
.mega_nav_link li a::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url(../img/icon/icon_arw_gr.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.4em;
  left: 0.2em;
  z-index: 2;
}
.mega_nav_link li a::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-color: #ffffff;
  position: absolute;
  border-radius: 50%;
  top: 0.2em;
  left: 0;
  z-index: 1;
  transform: scale(0);
  transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}
.mega_nav_link li a span {
  background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
  display: inline;
}

.search_area {
  display: flex;
}
.search_area input {
  width: calc(100% - 200px);
  border: 1px solid #ddd;
  border-radius: 2px 0 0 2px;
  padding: 1em;
  font-size: 16px;
}
.search_area button {
  width: 200px;
  border: 0;
  border-radius: 0 2px 2px 0;
  background-color: var(--color-brandGr) !important;
}
.search_area button span {
  font-size: var(--font-size16px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search_area button span::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  margin-right: 5px;
}

.menu_bg {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
.menu_bg.active {
  visibility: visible;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hidden .menu_bg.active, .main_nav_SPbtn {
  display: none;
}

@media (min-width: 1024px) {
  .header_logo a:hover {
    opacity: 0.6;
  }
  .mega_btn_close:hover::before {
    transform: rotate(180deg) translateY(-50%);
  }
  .mega_btn_close:hover::after {
    transform: rotate(-180deg) translateY(-50%);
  }
  .mega_nav_link li a:hover::after {
    transform: scale(1);
  }
  .mega_nav_link li a:hover span {
    background-size: 100% 1px;
  }
  /* is-fixed */
  header.is-fixed {
    background-color: var(--color-bg);
    height: 80px;
  }
  header.is-fixed .header_logo {
    background: url(../img/logo_ogasawara_black.svg) no-repeat center;
    background-size: contain;
  }
  header.is-fixed .header_logo img {
    opacity: 0;
  }
  header.is-fixed * {
    color: var(--color-maintxt);
  }
  header.is-fixed #utility_nav li {
    border-color: var(--color-border1);
  }
  header.is-fixed .icon_Catalog_wh > *::before {
    background-image: url(../img/icon/icon_catalog_bl.svg);
  }
  header.is-fixed .icon_Bookmark_wh > *::before {
    background-image: url(../img/icon/icon_heart_bl.svg);
  }
  header.is-fixed .icon_Search_wh > *::before {
    background-image: url(../img/icon/icon_search_bl.svg);
  }
  header.is-fixed .search_area button span::before {
    background-image: url(../img/icon/icon_search_wh.svg);
  }
  header.is-fixed .mega_nav, header.is-fixed .menu_bg {
    top: 80px;
  }
}
@media (min-width: 1024px) and (max-width: 1400px) {
  #main_nav .header_navInner > li {
    margin: 0 0.8vw;
  }
  #main_nav .header_navInner > li > a, #main_nav .header_navInner > li > button {
    font-size: 1vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  header {
    padding: 1em 1em 1em 2.5em;
    height: 80px;
  }
  header.is-fixed {
    height: 60px;
  }
  .mega_nav {
    top: 80px;
  }
  header.is-fixed .mega_nav {
    top: 60px;
  }
  #main_nav .header_navInner > li {
    margin: 0 0.8vw;
  }
  .mega_heading a, .mega_heading p {
    font-size: var(--font-size24px);
  }
  #utility_nav li {
    margin-left: 0.6em;
    padding-left: 0.6em;
  }
  #utility_nav li > a, #utility_nav li > button {
    font-size: 11px;
  }
}
@media (max-width: 1023px) {
  header {
    position: absolute;
    height: auto;
    top: 20px;
  }
  header::after {
    content: "";
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }
  body.hidden header::after {
    visibility: visible;
    opacity: 1;
  }
  #main_nav {
    position: fixed;
    top: 0;
    right: -90%;
    width: 90%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 100;
    transition: 0.3s;
    overflow: scroll;
  }
  #main_nav.open {
    right: 0;
  }
  #main_nav * {
    color: var(--color-maintxt);
  }
  .main_nav_SPbtn {
    width: 25.6vw;
    height: max(48px, 6vw);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 8px;
    right: 8px;
    z-index: 101;
    border: 4px solid #fff;
    background-color: #ECEAE7;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  .main_nav_SPbtn p {
    font-size: max(12px, 1.8vw);
    color: var(--color-maintxt);
    padding: 0 0 0 0.5em;
    line-height: 1;
    white-space: nowrap;
  }
  .main_nav_SPbtn p::before {
    content: "メニュー";
  }
  .main_nav_SPbtn.active p::before {
    content: "閉じる";
  }
  .icon_SPbtn {
    width: 1em;
    height: 2px;
    background-color: var(--color-maintxt);
    display: block;
    position: relative;
    transition: 0.3s;
  }
  .icon_SPbtn::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color-maintxt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 6px));
    transition: 0.3s;
  }
  .icon_SPbtn::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color-maintxt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 6px));
    transition: 0.3s;
    transform: translate(-50%, calc(-50% + 6px));
  }
  .active .icon_SPbtn {
    background-color: transparent;
  }
  .active .icon_SPbtn::before {
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .active .icon_SPbtn::after {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  #utility_nav .mega_nav {
    top: 70px;
  }
  #main_nav .header_navInner {
    display: block;
    padding: 2.5em 1.2em 1.2em;
  }
  #main_nav .header_navInner > li {
    margin: 0;
  }
  #main_nav .header_navInner > li:last-child {
    border-bottom: 1px solid var(--color-border1);
  }
  #main_nav .header_navInner a {
    display: block;
    padding: 1.2em;
    border-top: 1px solid var(--color-border1);
    position: relative;
  }
  #main_nav .header_navInner > li > a::after {
    content: "";
    width: 1em;
    height: 1em;
    background-image: url(../img/icon/icon_arw_bl.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translateY(-50%);
  }
  #main_nav .header_navInner button {
    display: block;
    padding: 1.2em;
    border-top: 1px solid var(--color-border1);
    width: 100%;
    text-align: left;
  }
  .mega_btn_accordion.mega_btn_active {
    background-size: 0;
  }
  #main_nav .mega_nav {
    display: none;
    visibility: visible;
    height: auto;
    position: relative;
    top: 0px;
    transition: 0s;
    border-top: 0;
    padding: 0.6em 0;
    margin-bottom: 1.2em;
    background-color: #ECEAE7;
    opacity: 1;
  }
  #main_nav .mega_nav a {
    border: 0;
    padding: 0.6rem 1.2rem;
  }
  #main_nav .mega_nav nav {
    opacity: 1;
    margin: 0;
    width: 100%;
  }
  #main_nav .mega_heading {
    margin-bottom: 0;
    display: block;
  }
  #main_nav .mega_heading a {
    padding: 0.6rem 1.2rem;
    margin: 0;
    font-size: var(--font-size15px);
  }
  #main_nav .mega_nav .mega_btn_close {
    display: none;
  }
  .mega_nav_link {
    padding: 0;
    display: block;
    border-top: 0;
  }
  .mega_nav_link li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #main_nav .mega_btn_accordion {
    position: relative;
  }
  #main_nav .mega_btn_accordion::before {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translate(0%, -50%);
    transition: 0.3s;
  }
  #main_nav .mega_btn_accordion::after {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 1.7em;
    transform: translate(50%, -50%) rotate(90deg);
    transition: 0.3s;
  }
  #main_nav .mega_btn_accordion.open::before {
    transform: translate(0%, -50%) rotate(-180deg);
  }
  #main_nav .mega_btn_accordion.open::after {
    transform: translate(50%, -50%) rotate(0deg);
  }
  .mega_nav_link li a::before {
    content: none;
  }
  #main_nav div.w1023_on {
    padding: 1.2em 1.2em max(70px, 6vw);
  }
  #main_nav .company_sns {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--color-border1);
  }
  #main_nav .policy {
    text-align: center;
    padding: 2.5rem 0;
  }
  #main_nav .policy a {
    color: var(--color-maintxt_thin);
  }
}
@media (max-width: 750px) {
  header {
    padding: 0 max(16px, 4.266vw);
  }
  .header_logo {
    width: 35vw;
  }
  #utility_nav li {
    margin-left: max(16px, 4.266vw);
    padding-left: 0;
    border-left: none;
  }
  #utility_nav li > a, #utility_nav li > button {
    font-size: max(10px, 2vw);
    white-space: nowrap;
  }
  #utility_nav li > a::before, #utility_nav li > button::before {
    width: max(20px, 5.333vw);
    height: max(20px, 5.333vw);
    margin: auto;
  }
  #utility_nav .mega_nav {
    top: max(60px, 12vw);
  }
  #utility_nav .mega_nav nav {
    width: calc(100% - 3rem);
  }
  #utility_nav .search_area input {
    width: calc(100% - 4rem);
  }
  #utility_nav .search_area button {
    width: 4rem;
  }
  #utility_nav .search_area button span {
    font-size: 0;
  }
  #utility_nav .search_area button span::before {
    width: 1.4rem;
    height: 1.4rem;
    margin: auto;
  }
}
/* utility_navSide */
#utility_navSide {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 10;
  border-radius: 2px 0 0 2px;
  overflow: hidden;
  transform: translateX(100%);
}
#utility_navSide.anm_in {
  animation: utility_navSide_anm 0.5s 1s forwards;
}
#utility_navSide .subpage #utility_navSide.anm_in {
  animation: utility_navSide_anm 0.5s 0s forwards;
}
#utility_navSide .icon_Contact_wh a {
  background-color: var(--color-brandGr);
}
#utility_navSide .icon_Catalogform_wh a {
  background-color: var(--color-brandGr_dark);
}
#utility_navSide li {
  width: 100%;
  display: flex;
}
#utility_navSide a {
  font-size: var(--font-size13px);
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 1.2rem 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1.1;
  width: 100%;
}
#utility_navSide a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  margin-bottom: 8px;
}
#utility_navSide .icon_Contact_wh a::before {
  margin: 0 1px 8px;
  width: 18px;
}
#utility_navSide a::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 8px;
  background: url(../img/icon/icon_circle_arw_wh.svg) no-repeat center;
  background-size: contain;
}

@keyframes utility_navSide_anm {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes utility_navSide_anm_sp {
  0% {
    transform: translate(0%, calc(100% + 16px));
  }
  100% {
    transform: translate(0%, 0);
  }
}
@media (min-width: 1024px) {
  #utility_navSide .icon_Contact_wh a:hover {
    background-color: #3D6239;
  }
  #utility_navSide .icon_Catalogform_wh a:hover {
    background-color: #2A4D27;
  }
}
@media (max-width: 1023px) {
  #utility_navSide {
    width: 68vw;
    height: max(48px, 6vw);
    top: inherit;
    right: inherit;
    left: 8px;
    bottom: 8px;
    padding: 4px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transform: translate(0%, calc(100% + 16px));
  }
  #utility_navSide.anm_in {
    animation: utility_navSide_anm_sp 0.5s 0.5s forwards;
  }
  #utility_navSide ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  #utility_navSide li {
    width: calc(50% - 2px);
  }
  #utility_navSide a {
    font-size: max(12px, 1.8vw);
    height: 100%;
    padding: 0 0.5em;
    border-radius: 1px;
    justify-content: center;
    writing-mode: inherit;
    text-orientation: inherit;
  }
  #utility_navSide a::before {
    margin: 0 0.5em 0 0;
    width: 1.2em;
    height: 1.2em;
  }
  #utility_navSide .icon_Contact_wh a::before {
    margin: 0 0.5em 0 0;
    width: 1.2em;
    height: 1.2em;
  }
  #utility_navSide a::after {
    content: none;
  }
}
/* low header */
.subpage header {
  background-color: var(--color-bg);
}
.subpage header * {
  color: var(--color-maintxt);
}
.subpage .hover_linear a, .subpage .hover_linear button {
  background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
}
.subpage .icon_Catalog_wh > *::before {
  background: url(../img/icon/icon_catalog_bl.svg) no-repeat center;
  background-size: contain;
}
.subpage .icon_Bookmark_wh > *::before {
  background: url(../img/icon/icon_heart_bl.svg) no-repeat center;
  background-size: contain;
}
.subpage .icon_Search_wh > button::before {
  background: url(../img/icon/icon_search_bl.svg) no-repeat center;
  background-size: contain;
}
.subpage .menu_bg {
  top: 100px;
}
.subpage #utility_nav li {
  border-color: var(--color-border1);
}

@media (min-width: 1024px) {
  .subpage .hover_linear .current > a, .subpage .hover_linear .current > button {
    background-size: 100% 1px;
  }
  .subpage .hover_linear a:hover, .hover_linear button:hover {
    background-size: 100% 1px;
  }
  .subpage .hover_linear .mega_nav_link a:hover, .hover_linear .mega_nav_link button:hover {
    background-size: 0;
  }
}
@media (max-width: 1279px) {
  .subpage .menu_bg {
    top: 80px;
  }
}
@media (max-width: 1023px) {
  .subpage .menu_bg {
    top: 90px;
  }
}
@media (max-width: 750px) {
  .subpage header {
    height: max(70px, 12vw);
    top: 0;
  }
  .subpage #utility_nav .mega_nav {
    top: max(70px, 12vw);
  }
  .subpage .menu_bg {
    top: max(70px, 12vw);
  }
}
/* footer */
footer {
  padding: 0 max(24px, 4vw) 5rem;
}

.footer_sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--color-border1);
  padding: 3rem 0 2.5rem;
}
.footer_sponsor dd {
  font-size: var(--font-size18px);
  margin-left: 2em;
}

.footer_info {
  position: relative;
  overflow: hidden;
  padding: min(4vw, 5rem);
}
.footer_info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.footer_info video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.footer_info * {
  color: #fff;
}
.footer_info > ul {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 0 min(4vw, 126px);
  margin: 0 auto 4rem;
  max-width: 1400px;
}
.footer_info li {
  width: 33.333%;
  text-align: center;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.footer_info li::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: min(-2.1vw, 42px);
  background-color: rgba(255, 255, 255, 0.2);
}
.footer_info li:last-child::after {
  content: none;
}
.footer_info li h2 {
  font-size: var(--font-size24px);
  line-height: 1.3;
  margin-bottom: 1em;
}
.footer_info li p {
  margin-bottom: 2em;
}
.footer_info li .btn_bgGr a {
  margin: auto;
}

.footer_info_btm {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.footer_info_btm::after {
  content: "";
  width: 1px;
  height: calc(100% - 4rem);
  position: absolute;
  top: 4rem;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer_info_btm > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(50% - min(4vw, 4em));
}
.footer_info_btm h3 {
  font-size: var(--font-size20px);
  margin-right: 1em;
  white-space: nowrap;
}
.footer_info_btm p {
  font-size: var(--font-size15px);
  width: 100%;
  order: 3;
}
.footer_info_btm a {
  margin: 1.45em auto;
}
.footer_info_btm a span {
  white-space: nowrap;
}

.footer_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0 3rem;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
  padding: 4rem 0;
  border-top: 1px solid var(--color-border1);
}

.footer_nav_list {
  margin-right: 2.5rem;
}
.footer_nav_list > li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer_nav_list > li > a {
  background: linear-gradient(#333, #333) right bottom/100% 1px no-repeat;
  transition: background-size 0.3s ease;
  font-size: var(--font-size15px);
}
.footer_nav_list li ul {
  display: block;
  margin-top: 1rem;
}
.footer_nav_list li li {
  line-height: 1;
  margin-bottom: 8px;
}
.footer_nav_list li li a, .footer_nav_list li li span {
  font-size: var(--font-size13px);
  color: var(--color-maintxt_thin);
}
.footer_nav_list li li:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .footer_nav_list > li > a:hover {
    background-size: 0 1px;
    background-position: right bottom;
  }
}
.footer_nav_btn li:not(:last-child) {
  margin-bottom: 8px;
}
.footer_nav_btn a {
  border: 1px solid var(--color-border1);
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 320px;
}
.footer_nav_btn a::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/icon/icon_arw_bl.svg) no-repeat center;
  background-size: contain;
}
.footer_nav_btn a span {
  display: flex;
  align-items: center;
}
.footer_nav_btn a span::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  margin-right: 1em;
}

.footer_address {
  justify-content: space-between;
  padding: 0 0 2.5rem;
}
.footer_address p {
  font-size: var(--font-size13px);
  color: var(--color-maintxt_thin);
}
.footer_address .flexBox {
  align-items: center;
}

.footer_tel a {
  color: var(--color-maintxt_thin);
}

.company_sns {
  display: flex;
  align-items: center;
}
.company_sns p {
  font-size: var(--font-size13px);
}
.company_sns ul {
  display: flex;
  align-items: center;
}
.company_sns a {
  display: block;
  line-height: 1;
  margin-left: 15px;
}

.footer_policy {
  justify-content: space-between;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--color-border1);
}
.footer_policy * {
  font-size: var(--font-size13px);
  color: var(--color-maintxt_thin);
  line-height: 1.4;
}
.footer_policy .reCAPTCHA {
  margin-top: 1em;
  font-size: var(--font-size11px);
}

#page-top {
  width: 2rem;
  border-top: 1px solid #333;
}
#page-top a {
  display: block;
  margin-top: 7px;
  height: 18px;
  position: relative;
  overflow: hidden;
}
#page-top a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon/icon_arw_bl.svg) no-repeat center;
  background-size: auto 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes page-top_anm {
  0% {
    top: 50%;
  }
  40% {
    top: -50%;
    opacity: 1;
  }
  43% {
    top: -50%;
    opacity: 0;
  }
  46% {
    top: 150%;
    opacity: 0;
  }
  49% {
    top: 150%;
    opacity: 1;
  }
  100% {
    top: 50%;
  }
}
@media (min-width: 1024px) {
  .footer_logo_link:hover {
    opacity: 0.6;
  }
  .footer_nav_btn a:hover {
    border-color: var(--color-brandGr);
  }
  .footer_nav_btn a:hover span {
    color: #fff;
  }
  .footer_nav_btn a:hover::after {
    background: url(../img/icon/icon_arw_wh.svg) no-repeat center;
    background-size: contain;
  }
  .company_sns a:hover {
    opacity: 0.6;
  }
  #page-top a:hover::before {
    animation: page-top_anm 0.5s forwards cubic-bezier(0, 0.55, 0.45, 1);
  }
}
@media (min-width: 751px) and (max-width: 1023px) {
  .footer_info_btm h3 {
    width: 100%;
  }
  .footer_nav > .flexBox .footer_nav_list:last-child {
    white-space: nowrap;
  }
  .footer_nav_btn a {
    min-width: 200px;
  }
}
@media (max-width: 750px) {
  .footer_sponsor {
    display: block;
    padding: 2rem 0;
  }
  .footer_sponsor dt img {
    margin: auto;
  }
  .footer_sponsor dd {
    margin: 1.5em 0 0;
  }
  .footer_info > ul {
    display: block;
    margin-bottom: 0;
  }
  .footer_info li {
    width: 100%;
    padding: max(24px, 6.4vw) 0;
  }
  .footer_info li::after {
    width: 100%;
    height: 1px;
    top: 100%;
    right: 0;
  }
  .footer_info .footer_info_btm {
    display: block;
    padding-top: 0;
  }
  .footer_info .footer_info_btm::after {
    content: none;
  }
  .footer_info .footer_info_btm > div {
    width: 100%;
    justify-content: center;
    padding: max(24px, 6.4vw) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer_info .footer_info_btm > div h3 {
    margin: 0 auto 1em;
  }
  .footer_info .footer_info_btm > div p {
    order: 2;
  }
  .footer_info .footer_info_btm > div .btn_bgWh_op01,
  .footer_info .footer_info_btm > div .btn_bgGr {
    order: 3;
  }
  .footer_info .footer_info_btm > div .btn_bgWh_op01 a,
  .footer_info .footer_info_btm > div .btn_bgGr a {
    margin-bottom: 0;
  }
  .footer_nav {
    display: block;
    padding: 0 0 2rem;
    border: 0;
  }
  .footer_nav .flexBox {
    display: block;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border1);
  }
  .footer_nav_list {
    margin: 0;
  }
  .footer_nav_list > li:not(:last-child) {
    margin-bottom: 0;
  }
  .footer_nav_list > li > a {
    background: none;
    display: block;
    border-top: 1px solid var(--color-border1);
    padding: 1.2em;
    position: relative;
  }
  .footer_nav_list > li > a::before {
    content: "";
    width: 1em;
    height: 1em;
    background-image: url(../img/icon/icon_arw_bl.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translateY(-50%);
  }
  footer .accordion_btn_SP {
    border-top: 1px solid var(--color-border1);
    padding: 1.2em;
    position: relative;
  }
  footer .accordion_btn_SP::before {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translate(0%, -50%);
    transition: 0.3s;
  }
  footer .accordion_btn_SP::after {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 1.7em;
    transform: translate(50%, -50%) rotate(90deg);
    transition: 0.3s;
  }
  footer .accordion_btn_SP.open::before {
    transform: translate(0%, -50%) rotate(-180deg);
  }
  footer .accordion_btn_SP.open::after {
    transform: translate(50%, -50%) rotate(0deg);
  }
  .footer_nav_list li ul.accordion_cnt {
    display: none;
    background-color: #ECEAE7;
    padding: 0.6em 0;
    margin: 0 0 1.2em;
  }
  .footer_nav_list li li {
    margin-bottom: 0;
  }
  .footer_nav_list li li a {
    display: block;
    padding: 0.6em 1.2em;
    color: var(--color-maintxt);
  }
  .footer_nav_btn a {
    min-width: inherit;
    padding: 1.2em;
  }
  .footer_address {
    display: block;
    padding-bottom: 2rem;
  }
  .footer_address address {
    margin-bottom: 1.5rem;
  }
  .company_sns {
    justify-content: center;
  }
  .footer_policy {
    display: block;
    text-align: center;
    padding-top: 2rem;
  }
  .footer_policy .footer_copy {
    margin-top: 1rem;
  }
}
.footer_bnr {
  width: 276px;
  margin-left: auto;
}
.footer_bnr li {
  margin-top: 8px;
}
@media (max-width: 750px) {
  .footer_bnr {
    margin-top: 2rem;
    margin-right: auto;
  }
}/*# sourceMappingURL=style.css.map */