@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #222;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 899px) {
    body {
      font-size: 3.84vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #FF6C33;
}
a:visited {
  color: #FF6C33;
}
a:hover {
  text-decoration: none;
  color: #FF6C33;
}
a:active {
  color: #FF6C33;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.3;
  font-weight: 600;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/*----------------------------------------------------
 フォントカラー
--------------------------------------------------- */
.fc01 {
  color: #fff;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 899px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow: hidden;
}
#contents {
  position: relative;
  z-index: 5;
  background: #fff;
  line-height: 1.5;
}
#contents a:hover img{
  opacity: 0.70;
}

.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 899px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
    }
    .wrapper, .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 5.33vw;
      padding-right: 5.33vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 160px;
  background: rgba(0,0,0,0.3);
  transition: all 0.2s ease-in-out 0s;
}
.hd_logo {
  position: absolute;
  left: 30px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header_min #header {
  height: 120px;
}
.header_min .hd_logo img {
  width: 70px;
  height: auto;
}
  @media screen and (max-width: 899px) {
    #header {
      position: absolute;
      height: auto;
      background: none;
    }
    .hd_logo {
      left: 5.12vw;
      top: 5.12vw;
      height: auto;
      display: block;
    }
    .hd_logo img {
      width: 14.87vw;
      height: auto;
    }
    .header_min #header {
      height: auto;
    }
    .header_min .hd_logo img {
      width: 14.87vw;
      height: auto;
    }
  }

.hd_sns {
  position: absolute;
  top: 0;
  right: 560px;
  height: 100%;
  align-items: center;
}
.hd_sns li {
  margin-left: 20px;
}
.hd_sns li img {
  will-change: transform;
}
  @media screen and (max-width: 899px) {
    .hd_sns {
      display: none;
    }
  }

.hd_language {
  position: absolute;
  top: 0;
  right: 440px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
}
.hd_language li {
  position: relative;
  padding-left: 12px;
  margin-left: 11px;
}
.hd_language li:last-child::after {
  position: absolute;
  left: 0;
  top: calc(50% - 9px);
  z-index: 5;
  content: "";
  width: 1px;
  height: 18px;
  background: #fff;
}
.hd_language li > * {
  position: relative;
  display: inline-block;
  padding: 7px 0;
  text-decoration: none;
  color: #fff;
}
.hd_language li span {
  opacity: 0.5;
}
.hd_language li a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-in-out 0s;
}
.hd_language li a:hover::before {
  width: 0;
  opacity: 0;
}
  @media screen and (max-width: 899px) {
    .hd_language {
      display: none;
    }
  }

.hd_tel {
  position: absolute;
  right: 150px;
  top: calc(50% - 14px);
  color: #fff;
  line-height: 1;
  font-size: 2.8rem;
}
.hd_tel a {
  color: #fff;
  text-decoration: none;
}
  @media screen and (max-width: 899px) {
    .hd_tel {
      display: none;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
.ft_img img {
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
.ft_info {
  position: relative;
  z-index: 5;
  background: #ADA792;
  padding: clamp(100px, 10vw, 200px) 0;
  text-align: center;
  color: #fff;
}
.ft_info_block {
  align-items: center;
}
.ft_logo {
  margin-right: 30px;
}
.ft_logo img {
  width: 100px;
  height: auto;
}
.ft_info_block dt {
  margin-bottom: 40px;
}
.ft_info_block dd li {
  margin: 0 10px;
}
.copyright {
  display: block;
  font-size: 1.6rem;
  margin-top: clamp(80px, 8vw, 100px);
}
  @media screen and (max-width: 899px) {
    .ft_img {
      height: 62.56vw;
    }
    .ft_info {
      padding: 15.38vw 0 34.61vw;
    }
    .ft_logo {
      margin-right: 3.84vw;
    }
    .ft_logo img {
      width: 15vw;
    }
    .ft_info_block dt {
      margin-bottom: 3.84vw;
    }
    .ft_info_block dt img {
      width: 34.61vw;
      height: auto;
    }
    .ft_info_block dd li {
      margin: 0 1.28vw;
    }
    .ft_info_block dd li img {
      width: 6.15vw;
      height: auto;
    }
    .copyright {
      font-size: 3.33vw;
      margin-top: 15.38vw;
    }
  }

.ft_fix_menu {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  display:none;
  background: #f5f5f5;
}
.ft_fix_menu li {
  width: 20%;
  border-right: solid 1px #ddd;
}
.ft_fix_menu li:last-child {
  border-right: none;
}
.ft_fix_menu li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120px;
  text-decoration: none;
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
}
.ft_fix_menu li a:hover {
  color: #FF6C33;
}
.ft_fix_menu li a span {
  display: inline-block;
  padding-top: 40px;
  text-align: center;
}
.ft_fix_menu01 a span {
  background: url("../img/common/ft_fix_menu01.svg") center top no-repeat;
  background-size: 36px auto;
}
.ft_fix_menu02 a span {
  background: url("../img/common/ft_fix_menu02.svg") center top no-repeat;
  background-size: 32px auto;
}
.ft_fix_menu03 a span {
  background: url("../img/common/ft_fix_menu03.svg") center top no-repeat;
  background-size: 30px auto;
}
.ft_fix_menu04 a span {
  background: url("../img/common/ft_fix_menu04.svg") center top no-repeat;
  background-size: 40px auto;
}
.ft_fix_menu05 a span {
  background: url("../img/common/ft_fix_menu05.svg") center top no-repeat;
  background-size: 32px auto;
}
.ft_fix_menu06 a span {
  background: url("../img/common/ft_fix_menu06.svg") center 0 no-repeat;
  background-size: 70px auto;
  font-size: 90%;
  padding-top: 30px!important;
}
  @media screen and (max-width: 899px) {
    .ft_fix_menu li a {
      height: 19.23vw;
      font-size: 3vw;
    }
    .ft_fix_menu li a span {
      padding-top: 6.41vw;
      white-space: nowrap;
    }
    .ft_fix_menu01 a span {
      background-size: 6vw auto;
    }
    .ft_fix_menu02 a span {
      background-size: 5.52vw auto;
    }
    .ft_fix_menu03 a span {
      background-size: 5.12vw auto;
    }
    .ft_fix_menu04 a span {
      background-size: 6.97vw auto;
    }
    .ft_fix_menu05 a span {
      background-size: 5.53vw auto;
    }
    .ft_fix_menu06 a span {
      background: url("../img/common/ft_fix_menu06.svg") center 0 no-repeat;
      background-size: 12vw auto;
      font-size: 2.75vw;
      padding-top: 4.6vw!important;
      line-height: 1.2;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
.sub_ttl01 {
  position: relative;
  margin-bottom: 80px;
}
.sub_ttl01 span {
  position: relative;
  font-size: min(5.3vw,6rem);
  display: inline-block;
  padding-left: 45px;
  margin-right: 10px;
  font-weight: 700;
}
.sub_ttl01 span:last-child {
  margin-right: 0;
}
.sub_ttl01 span::after {
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  z-index: 5;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #BC002E;
}

.sub_ttl01 small {
  display: inline-block;
  font-size: min(2.9vw,3.6rem);
}
  @media screen and (max-width: 899px) {
    .sub_ttl01 {
      margin-bottom: 6.41vw;
    }
    .sub_ttl01 span {
      font-size: 6.41vw;
      font-weight: 700;
      padding-left: 7.69vw;
      margin-right: 0;
    }
    .sub_ttl01 span::after {
      top: 1.8vw;
      width: 5.12vw;
      height: 5.12vw;
    }
    .sub_ttl01 small {
      display: block;
      font-size: 4.87vw;
      margin-top: 1.79vw;
    }
  }

.sub_ttl02 {
  font-size: 4.8rem;
  margin-bottom: 35px;
  font-weight: 700;
}
  @media screen and (max-width: 899px) {
    .sub_ttl02 {
      font-size: 6.4vw;
      margin-bottom: 5.12vw;
    }
  }

.sub_ttl03 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
}
  @media screen and (max-width: 899px) {
    .sub_ttl03 {
      font-size: 5.38vw;
      margin-bottom: 3.84vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.btn01 a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  background: #FF6C33;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 30px;
  overflow: hidden;
}
.btn01 a:hover {
  filter: brightness(1.2);
}
.btn01 a span {
  display: inline-block;
  padding-right: 20px;
  background: url("../img/common/ico/ico_arrow01.svg") right center no-repeat;
  background-size: 8px auto;
}
  @media screen and (max-width: 899px) {
    .btn01 a {
      padding: 3.58vw 7.69vw;
      font-size: 3.84vw;
      border-radius: 7.69vw;
    }
    .btn01 a span {
      padding-right: 5.12vw;
      background-size: 2vw auto;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

/*transition*/
.trs {
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
/*trp*/
.trp {
  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;
  -ms-transition: opacity .1s ease;
  -o-transition: opacity .1s ease;
  transition: opacity .1s ease;
  opacity: 1;
  filter: alpha(opacity=100);
}
.trp:hover {
  opacity: .6;
  filter: alpha(opacity=60);
}
/* trs-dr */
.trs-dr02 {
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -ms-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
}
.trs-dr03 {
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}
.trs-dr06 {
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  -ms-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
}
.trs-dr08 {
  -webkit-transition-duration: .8s;
  -moz-transition-duration: .8s;
  -ms-transition-duration: .8s;
  -o-transition-duration: .8s;
  transition-duration: .8s;
}
.trs-dr12 {
  -webkit-transition-duration: 1.2s;
  -moz-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
/* trs-tf */
.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}

#hbMenu {
  opacity: 0;
  z-index: -10;
  left: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out 0s;
}
#hbNav {
  position: absolute;
  right: 0;
  width: 75%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  overflow-y: visible;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
}
  @media screen and (max-width: 899px) {
    #hbMenu {
      width: 100%;
      right: -100vw;
    }
    #hbNav {
      width: 100%;
    }
  }

.menuTrigger {
  position: fixed;
  z-index: 100;
  top: 52px;
  right: 40px;
  display: block;
  width: 60px;
  height: 47px;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  caret-color: transparent;
}
.header_min .menuTrigger {
  top: 32px;
}
.hb_open .header_min .menuTrigger {
  top: 52px;
}
.menuTrigger.open {
  z-index: 350;
  position: fixed;
  background: none;
}
.menuIcon_line {
  position: absolute;
  right: 0;
  width: 60px;
  height: 5px;
  border-radius: 3px;
  background: #fff;
}
.menuIcon_line:nth-of-type(1) {
  top: calc(50% - 18px);
}
.menuIcon_line:nth-of-type(2) {
  top: 50%;
}
.menuIcon_line:nth-of-type(3) {
  top: calc(50% + 18px);
}
@media screen and (max-width: 899px) {
  .menuTrigger {
    top: 5.12vw !important;
    right: 5.12vw;
    width: 13vw;
    height: 13vw;
  }
  .header_min .menuTrigger {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
  }
  .menuIcon_line {
    width: 10.25vw;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
  }
  .menuIcon_line:nth-of-type(1) {
    top: calc(25% - 2px);
  }
  .menuIcon_line:nth-of-type(2) {
    top: calc(50%);
    transform: translate(-50%, -50%);
  }
  .menuIcon_line:nth-of-type(3) {
    top: calc(75% - 2px);
  }
}

/* open */
.hb_open .menuTrigger {
  z-index: 300;
}
.hb_open .menuTrigger .menuIcon_line {
  background: #FF6C33;
}
.hb_open .menuTrigger .menuIcon_line:nth-of-type(1) {
  top: calc(50%);
  transform: rotate(45deg);
}
.hb_open .menuTrigger .menuIcon_line:nth-of-type(2) {
  opacity: 0;
}
.hb_open .menuTrigger .menuIcon_line:nth-of-type(3) {
  top: calc(50%);
  transform: rotate(-45deg);
}
.hb_open #hbMenu {
  opacity: 1;
  left: 0;
  z-index: 200;
}
.hb_open #page::after {
  opacity: 1;
  z-index: 100;
}
  @media screen and (max-width: 899px) {
    .hb_open .menuTrigger {
      background: none;
    }
    .hb_open .menuTrigger .menuIcon_line {
      left: calc(50% - 5.125vw);
      transform: none;
    }
  }

.hb_inner {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}

.hb_header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 160px;
  border-bottom: solid 1px #ddd;
}
.hb_logo {
  position: absolute;
  left: 40px;
  top: 19px;
}
  @media screen and (max-width: 899px) {
    .hb_header {
      position: relative;
      left: 0;
      top: 0;
      width: 84.615vw;
      height: auto;
      margin: 0 auto;
      padding-top: 37.17vw;
      padding-bottom: 10.25vw;
    }
    .hb_logo {
      position: absolute;
      left: -2.56vw;
      top: 5.12vw;
    }
    .hb_logo img {
      width: 14.87vw;
    }
  }

.hb_sns {
  position: absolute;
  top: 0;
  right: 560px;
  height: 100%;
  align-items: center;
}
.hb_sns li {
  margin-left: 20px;
}
.hb_sns li img {
  will-change: transform;
}
  @media screen and (max-width: 1199px) {
    .hb_sns {
      position: absolute;
      top: 105px;
      right: 150px;
      height: auto;
      align-items: center;
    }
  }
  @media screen and (max-width: 899px) {
    .hb_sns {
      position: static;
      top: auto;
      right: auto;
      height: auto;
      justify-content: flex-start;
      margin-top: 7.69vw;
    }
    .hb_sns li {
      margin-left: 0;
      margin-right: 3vw;
    }
    .hb_sns li img {
      width: 6.15vw;
      height: auto;
    }
  }

.hb_language {
  position: absolute;
  top: 0;
  right: 440px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.8rem;
}
.hb_language li {
  position: relative;
  padding-left: 12px;
  margin-left: 11px;
}
.hb_language li:last-child::after {
  position: absolute;
  left: 0;
  top: calc(50% - 9px);
  z-index: 5;
  content: "";
  width: 1px;
  height: 18px;
  background: #000;
}
.hb_language li > * {
  position: relative;
  display: inline-block;
  padding: 7px 0;
  text-decoration: none;
  color: #000;
}
.hb_language li span {
  opacity: 0.5;
}
.hb_language li a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.2s ease-in-out 0s;
}
.hb_language li a:hover::before {
  width: 0;
  opacity: 0;
}
  @media screen and (max-width: 1199px) {
    .hb_language {
      top: 25px;
      right: 150px;
      height: auto;
    }
  }
  @media screen and (max-width: 899px) {
    .hb_language {
      top: 7.17vw;
      right: 17.94vw;
      font-size: 4.61vw;
    }
    .hb_language li {
      padding-left: 3vw;
      margin-left: 3vw;
    }
    .hb_language li:last-child::after {
      top: calc(50% - 2.1vw);
      height: 4.2vw;
    }
    .hb_language li > * {
      padding: 1.79vw 0;
    }
    .hb_language li a:hover::before {
      display: none;
    }
  }

.hb_tel {
  position: absolute;
  right: 150px;
  top: calc(50% - 14px);
  color: #FF6C33;
  line-height: 1;
  font-size: 2.8rem;
}
.hb_tel a {
  text-decoration: none;
}
  @media screen and (max-width: 899px) {
    .hb_tel {
      position: static;
      right: auto;
      top: auto;
      font-size: 7.17vw;
    }
  }

.hb_menu {
  padding: 60px clamp(80px, 8vw, 110px);
}
.hb_menu ul {
  padding-bottom: 20px;
}
.hb_menu li {
  margin-bottom: 30px;
}
.hb_menu li a {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.hb_menu li a:hover {
  color: #FF6C33;
}
  @media screen and (max-width: 899px) {
    .hb_menu {
      padding: 10.25vw 7.69vw 7.69vw;
    }
    .hb_menu ul {
      padding-bottom: 2.56vw;
      margin-bottom: 10.25vw;
      border-bottom: solid 1px #ddd;
    }
    .hb_menu li {
      margin-bottom: 6.41vw;
    }
    .hb_menu li a {
      font-size: 5.12vw;
    }
  }

.hb_btn a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  padding: 19px 30px;
  text-align: center;
  background: #FF6C33;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
}
.hb_btn a:hover {
  filter: brightness(1.2);
}
.hb_btn a span {
  display: inline-block;
  padding-right: 30px;
  background: url("../img/common/ico/ico_link01.svg") right center no-repeat;
  background-size: 20px auto;
}
  @media screen and (max-width: 899px) {
    .hb_btn {
      text-align: center;
    }
    .hb_btn a {
      padding: 0 7.69vw;
      border-radius: 7.69vw;
    }
    .hb_btn a span {
      padding: 4.87vw 7.69vw 4.87vw 0;
      background-size: 5.12vw auto;
    }
  }

.hb_close {
  position: fixed;
  z-index: -10;
  overflow: hidden;
}
.hb_close::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  will-change: opacity, backdrop-filter;
}
.hb_open .hb_close {
  position: fixed;
  inset: 0;
  z-index: 150;
}
.hb_open .hb_close::after {
  opacity: 1;
}
  @media screen and (max-width: 899px) {
    .hb_close {
      display: none;
    }
  }

/*アニメーション*/
.fade-up {
  opacity: 0;
  transform: translateY(20px);
}
.fade-left {
  opacity: 0;
  transform: translateX(-20px); /* 左から登場 */
}
