@charset "UTF-8";

@import "settings.css";

/*============================================================================================
			General
=============================================================================================*/
/*    Fonts
=====================================================*/
.g_en {
  font-family: var(--font-en), var(--font-jp), sans-serif; /* 第2フォントに日本語フォントを指定 */
}

/*    Hamburger Menu
=====================================================*/
/*-- Initial --*/
.g_hamb {
  display: none;
}

@media (max-width: 1080px) {
  .g_hamb {
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center !important;
  }

  .g_hamb_inr {
    position: relative;
    width: calc((20 / 16) * 1.6rem);
    height: calc((15 / 16) * 1.6rem);
  }

  .g_hamb_inr div {
    position: absolute;
    display: block;
    width: inherit;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-black);
    transition: top 0.2s, bottom 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, top 0.2s, bottom 0.2s;
    transition: transform 0.2s, top 0.2s, bottom 0.2s, -webkit-transform 0.2s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .g_hamb .g_hamb_inr_top {
    bottom: auto;
  }

  .g_hamb .g_hamb_inr_btm {
    top: auto;
  }

  /*-- Opened --*/
  .g_hamb.js_open .g_hamb_inr_mdl {
    opacity: 0;
  }

  .g_hamb.js_open .g_hamb_inr_top {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .g_hamb.js_open .g_hamb_inr_btm {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/*    Slider
=====================================================*/
/*-- Default Custom --*/
.g_slider {
  --dots-mt: 2rem;
  --dot-w: 0.8rem;
  --dot-h: 0.8rem;

  height: 100%;
}

.g_slider_arrow {
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: calc((var(--dots-mt) + var(--dot-h)) * -1);
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 10;
  transition: opacity var(--transition);
}

.g_slider_arrow__prev {
  left: 0;
  background-image: url(../../img/renewal/slider/ic_prev1.png);
}

.g_slider_arrow__next {
  right: 0;
  background-image: url(../../img/renewal/slider/ic_next1.png);
}

.g_slider_dots {
  margin-top: var(--dots-mt);
  font-size: 0;
  text-align: center;
}

.g_slider_dots.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.g_slider_dots.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: var(--dot-w);
  height: var(--dot-h);
  margin: 0 0.4rem;
}

@media (any-hover: hover) {
  .g_slider_arrow:hover {
    opacity: var(--opacity);
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    Section
=====================================================*/
.g_sec {
  padding-top: 8rem;
}

.g_sec__last {
  padding-top: 8rem;
  padding-bottom: 12rem;
}

.g_sec__bg {
  margin-top: 8rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-sub);
}

@media (max-width: 896px) {
  .g_sec {
    padding-top: 6rem;
  }

  .g_sec__last {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }

  .g_sec__bg {
    margin-top: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 576px) {
}

/*    Heading
=====================================================*/
.g_pgHd {
  padding: 6rem 2rem;
  font-size: 4.8rem;
  text-align: center;
  background-color: var(--color-sub);
}

@media (max-width: 896px) {
  .g_pgHd {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
}

/*    Color Text
=====================================================*/
.g_c_wh {
  color: var(--color-white);
}
.g_c_red {
  color: var(--color-red);
}
.g_c_main {
  color: var(--color-main);
}

/*    Color Text
=====================================================*/
.g_ls_7 {
  letter-spacing:calc(0.7/16 * 1.6rem);
}
.g_ls_8 {
  letter-spacing:calc(0.8/16 * 1.6rem);
}

/*    Font family
=====================================================*/
.g_jp {
  font-family: var(--font-jp);
}

/*    Color Text
=====================================================*/
.g_ls_7 {
  letter-spacing:calc(0.7/16 * 1.6rem);
}
.g_ls_8 {
  letter-spacing:calc(0.8/16 * 1.6rem);
}

/*    Button - basic -
=====================================================*/
.g_btn {
  position: relative;
  display: block;
  width: fit-content;
  background-color: var(--color-main);
  border: 0.2rem solid var(--color-main);
  border-radius: calc(5/16 * 1.6rem);
  transition: color var(--transition), background var(--transition);
}
.g_btn > * {
  display: flex;
  padding: 0 4rem 0 1.6rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.8rem;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: calc(0.64/16 * 1.6rem);
}
.g_btn a,
.g_btn a:visited {
  color: var(--color-white);
}
.g_btn .u_ic::after {
  width: 1.2rem;
  height: 1.2rem;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  mask-image: url(../../img/renewal/common/icon_arrow.svg);
  mask-size: contain;
  background-color: var(--color-white);
}

@media (any-hover: hover) {
  .g_btn:hover {
    background-color: var(--color-white);
  }
  .g_btn:hover a {
    color: var(--color-main);
  }
  .g_btn .u_ic:hover::after {
    background-color: var(--color-main);
  }
}

/*戻るボタン*/
.g_btn.g_btn_back::after {
  right: auto;
  left: 2rem;
  rotate: -135deg;
}

/*外部リンク付きボタン*/
.g_tab.u_ic::before {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  mask-image: url(../../img/renewal/common/icon_tab.svg);
  background-color: var(--color-main);
}

.g_ankerTop {
  scroll-margin-top:80px;
}

/*    link - Text -
=====================================================*/
/* underline */
.g_link {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .g_link:hover {
    text-decoration: none;
  }
}

/* hover transparent */
.g_link_transp {
  transition: opacity var(--transition);
}

@media (any-hover: hover) {
  .g_link_transp:hover {
    opacity: var(--opacity);
  }
}

/* 外部リンクアイコン */
.g_tab {
  width: fit-content;
  position: relative;
  display: inline-block;
  padding-right: 1.5em;
}

.g_tab::before {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  background-image: url(../../img/renewal/common/ico_tab.svg);
}

/* 画像拡大 */
.g_zoom_img {
  overflow: hidden;
}

.g_zoom_img img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale var(--transition);
}

@media (any-hover: hover) {
  .g_zoom_img:hover img,
  a:has(.g_zoom_img):hover .g_zoom_img img {
    scale: 1.1;
  }
}

/*    Decoration
=====================================================*/
/* 枠線 */
.g_bd {
  border: 0.1rem solid var(--color-border);
}

.g_bd__p {
  padding: 2rem;
  border: 0.1rem solid var(--color-border);
}

/* 見出し装飾 - 下線 */
.g_decoHd_bb {
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid var(--color-border);
}

.g_decoHd_bb::after {
  content: "";
  position: absolute;
  display: block;
  width: 4rem;
  bottom: -0.1rem;
  border-bottom: 0.1rem solid var(--color-main);
  z-index: 5;
}

/* 見出し装飾 - 左線 */
.g_decoHd_bl {
  position: relative;
  padding-left: 0.5em;
}

.g_decoHd_bl::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc((1lh - 1em) / 2);
  left: 0;
  width: 0.15em;
  height: 1em;
  background-color: var(--color-main);
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    Information list
=====================================================*/
/* サムネイル無 */
.g_info_itm {
  border-top: 0.1rem solid var(--color-border);
}

.g_info_itm:last-child {
  border-bottom: 0.1rem solid var(--color-border);
}

.g_info_itm_link {
  display: flex;
  align-items: baseline;
  width: 100%;
  padding: 1.5rem 0;
}

.g_info_itm_link * {
  transition: color var(--transition);
}

.g_info_itm_label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: 2rem;
  padding: 0 1rem;
  color: var(--color-main);
  font-size: 1rem;
  text-align: center;
  line-height: 2rem;
  border: 0.1rem solid var(--color-main);
  transition: color var(--transition), border-color var(--transition);
}

@media (any-hover: hover) {
  .g_info_itm_link:hover * {
    color: var(--color-hover);
  }

  .g_info_itm_link:hover .g_info_itm_label {
    border-color: var(--color-hover);
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
  .g_info_itm_link {
    flex-direction: column;
  }
}

/*    Category list
=====================================================*/
.g_catLst {
  position: relative;
  width: 100%;
  max-width: 230px;
  height: 4rem;
}

.g_catLst::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: var(--color-main);
  pointer-events: none;
}

.g_catLst::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  top: -0.3rem;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  border-top: 0.1rem solid var(--color-white);
  border-right: 0.1rem solid var(--color-white);
  rotate: 135deg;
  pointer-events: none;
}

.g_catLst_select {
  display: block;
  height: 100%;
  padding-left: 2rem;
  border: 0.1rem solid var(--color-border);
  background-color: var(--color-white);
  cursor: pointer;
}

@media (max-width: 896px) {
  .g_catLst_select {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
}

/*    Pager list
=====================================================*/
/*    Archive
--------------------------------- */
.g_pager_li {
  width: 4rem;
  height: 4rem;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-main);
  border: 0.2rem solid var(--color-main);
  transition: color var(--transition), background var(--transition);
}

.g_pager_li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.g_pager_li.current > * {
  background-color: var(--color-white);
  color: var(--color-main);
  pointer-events: none;
}

.g_pager_dots {
  font-size: 1.6rem;
}

@media (any-hover: hover) {
  .g_pager_li:hover {
    background-color: var(--color-white);
    color: var(--color-main);
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    Single
--------------------------------- */
.g_single_pager {
  border-top: 0.1rem solid var(--color-border);
  border-bottom: 0.1rem solid var(--color-border);
}

.g_single_pager_itm {
  position: relative;
}

.g_single_pager_itm__next::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.1rem;
  height: calc(100% - 1.5rem * 2);
  top: 0;
  bottom: 0;
  left: calc(-1 * (3rem / 2 - 0.1rem));
  margin: auto;
  background-color: var(--color-border);
}

.g_single_pager_itm a {
  padding: 1.5rem 0;
  transition: opacity var(--transition);
}

.g_single_pager_itm_img img {
  width: 10rem;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (any-hover: hover) {
  .g_single_pager_itm a:hover {
    opacity: var(--opacity);
  }
}

@media (max-width: 896px) {
  .g_single_pager_itm__next::before {
    width: 100%;
    height: 0.1rem;
    bottom: auto;
    left: 0;
  }
}

@media (max-width: 576px) {
}

/*    List number
=====================================================*/
.g_incr {
  counter-reset: item;
}

.g_incr_itm::before {
  content: counter(item);
  counter-increment: item;
}

/*    Entry
=====================================================*/
.g_entry_article {
  width: 100%;
}

.g_entry_article h1 {
  font-size: 4rem;
  font-weight: bold;
}

.g_entry_article h2 {
  font-size: 3rem;
  font-weight: bold;
}

.g_entry_article h3 {
  font-size: 2.6rem;
  font-weight: bold;
}

.g_entry_article h4 {
  font-size: 2.2rem;
  font-weight: bold;
}

.g_entry_article h5 {
  font-size: 1.8rem;
  font-weight: bold;
}

.g_entry_article h6 {
  font-size: 1.6rem;
  font-weight: bold;
}

.g_entry_article > ul,
.g_entry_article > ul ul {
  padding-left: 1.3em;
  margin-left: 1.3em;
  list-style-type: disc;
}

.g_entry_article > ol,
.g_entry_article > ol ol {
  padding-left: 1em;
  margin-left: 1em;
  list-style-type: decimal;
}

.g_entry_article p {
  font-size: var(--fz-main);
  min-height: 1em;
}

.g_entry_article p.has-small-font-size {
  font-size: calc(var(--fz-main) * 0.8);
}

.g_entry_article p.has-medium-font-size {
  font-size: calc(var(--fz-main) * 1.25);
}

.g_entry_article p.has-large-font-size {
  font-size: calc(var(--fz-main) * 2);
}

.g_entry_article p.has-huge-font-size {
  font-size: calc(var(--fz-main) * 3);
}

.g_entry_article p.has-drop-cap:not(:focus):first-letter {
  font-size: 5em;
  margin: 0;
}

.g_entry_article .wp-block-image .alignright {
  float: none;
  margin: 0 0 0 auto;
}

.g_entry_article em {
  font-style: italic;
  display: inline;
}

.g_entry_article figure {
  margin: 0 0 1em;
}

.g_entry_article figcaption {
  text-align: center;
  margin: auto;
  font-size: 1.4rem;
}

.g_entry_article code {
  padding: 1.5rem;
  color: var(--color-white);
  background-color: #333;
}

.g_entry_article em,
.g_entry_article strong {
  display: inline;
}

.g_entry_article strong {
  font-weight: bold;
}

.g_entry_article del,
.g_entry_article s {
  text-decoration: line-through;
}

.g_entry_article div {
  font-size: var(--fz-main);
}

.g_entry_article img {
  max-width: 100%;
  height: auto;
}

.g_entry_article p > a {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .g_entry_article p > a:hover {
    text-decoration: none;
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

.g_entry_article .wp-block-button {
  transition: opacity var(--transition);
}

.g_entry_article .is-style-outline .wp-block-button__link,
.g_entry_article .wp-block-button__link.is-style-outline {
  padding: 1rem 2.4rem;
}

.g_entry_article .wp-block-table {
  width: 100%;
  border: 0.1rem solid var(--color-border);
}

.g_entry_article .wp-block-table tr {
  border-top: 0.1rem solid var(--color-border);
}

.g_entry_article .wp-block-table tr:last-child {
  border-bottom: none;
}

.g_entry_article .wp-block-table tr th,
.g_entry_article .wp-block-table tr td {
  padding: 1rem;
  vertical-align: middle;
}

.g_entry_article .wp-block-table tr th {
  color: var(--color-white);
  font-weight: bold;
  background-color: var(--color-sub);
}

.g_entry_article .wp-block-table thead th {
  text-align: center;
}

.g_entry_article .wp-block-table tr th + th,
.g_entry_article .wp-block-table tr td + td {
  border-left: 0.1rem solid var(--color-border);
}

.g_entry_article .wp-block-table tfoot {
  background-color: var(--color-border);
}

.g_entry_article .wp-block-table thead tr:first-of-type,
.g_entry_article .wp-block-table tbody tr:first-of-type {
  border-top: none;
}

.g_entry_article .aligncenter .wp-block-embed__wrapper {
  text-align: center;
}

@media (any-hover: hover) {
  .g_entry_article .wp-block-button:hover {
    opacity: var(--opacity);
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    Pagetop
=====================================================*/
/*    追従
--------------------------- */
.g_pagetop_fixed {
  position: fixed;
  width: 4rem;
  height: 4rem;
  bottom: 3rem;
  right: 3rem;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity var(--transition);
}

.g_pagetop_fixed.js_show {
  opacity: 1;
  pointer-events: auto;
}

.g_pagetop_fixed.js_stc {
  position: absolute;
  top: -2.5rem;
}

@media (any-hover: hover) {
  .g_pagetop_fixed:hover {
    opacity: var(--opacity);
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    フッター固定
--------------------------- */
.g_pagetop {
  width: 100%;
  max-width: 66px;
  max-height: 66px;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 0.1rem solid var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.7/16 * 1.6rem);
  text-align: center;
}
.g_pagetop a {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition) , background-color var(--transition);
  aspect-ratio: 1 / 1;
}
.g_pagetop a::before {
  content: "";
  position: static;
  width: 1.2rem;
  height: 1.2rem;
  top: 1.6rem;
  left: 0;
  right: 0;
  mask-image: url(../../img/renewal/common/icon_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-white);
  transform: rotate(-90deg);
}

@media (any-hover: hover) {
  .g_pagetop a:hover {
    color: var(--color-main);
    background-color: var(--color-white);
  }

  .g_pagetop a:hover::before {
    border-color: var(--color-white);
  }
  .g_pagetop a:hover::before {
    background-color: var(--color-main);
  }
}

@media (max-width: 576px) {
  .g_pagetop {
    max-width: 52px;
    max-height: 52px;
    font-size: 1.2rem;
    letter-spacing: calc(0.6/16 * 1.6rem);
  }
  .g_pagetop a::before {
    top: 1.2rem;
  }
}

/*    Breadcrumb
=====================================================*/
.g_breadcrumb_lst {
  padding: 1rem 0;
  overflow-x: auto;
}

.g_breadcrumb_lst__line {
  border-bottom: 0.1rem solid var(--color-border);
}

.g_breadcrumb_itm {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}

.g_breadcrumb_itm + .g_breadcrumb_itm::before {
  content: "";
  position: absolute;
  margin: auto;
  width: 0.3rem;
  height: 0.3rem;
  top: 0;
  bottom: 0;
  left: -1.15rem;
  border-top: 0.1rem solid var(--color-main);
  border-right: 0.1rem solid var(--color-main);
  rotate: 45deg;
}

@media (any-hover: hover) {
  .g_breadcrumb_lst_li a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    GDPR
=====================================================*/
.g_gdpr {
  position: fixed;
  display: none;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 3rem 0;
  background-color: rgb(255 255 255 / 0.95);
  box-shadow: 0px -0.4rem 1.2rem rgb(0 0 0 / 0.1);
  z-index: calc(infinity);
}

.g_gdpr_wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.g_gdpr_btn > * {
  height: 5rem;
  cursor: pointer;
}

@media (max-width: 896px) {
  .g_gdpr_wrp {
    display: block;
  }
  .g_gdpr_txt {
    width: 100%;
  }
  .g_gdpr_btn {
    max-width: 13rem;
    margin: 15px 0 0 auto;
  }
}

@media (max-width: 576px) {
}

/*    Loading
=====================================================*/
.loading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	right: auto;
	bottom: auto;
	background-color: #fff;
	-webkit-animation-name: Loading;
	animation-name: Loading;
	-webkit-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease
}
.loading img {
	-webkit-animation-name: LoadingImage;
	animation-name: LoadingImage;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease
}
@media screen and (max-width:680px), screen and (max-width:737px) and (orientation:landscape) {
	.loading img {
		width: 200px
	}
}
@media screen and (max-width:680px), screen and (max-width:737px) and (orientation:landscape) {
	.loading {
		padding-bottom: 70px
	}
}
@-webkit-keyframes Loading {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
		z-index: 9999
	}
	99% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0;
		z-index: 9999
	}
	100% {
		opacity: 0;
		z-index: -1
	}
}
@keyframes Loading {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
		z-index: 9999
	}
	99% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0;
		z-index: 9999
	}
	100% {
		opacity: 0;
		z-index: -1
	}
}
@-webkit-keyframes LoadingImage {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
@keyframes LoadingImage {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}


/*    FadeIn
=====================================================*/
.js_fadeIn {
  --fadeIn: 0.7s;
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  transition: opacity var(--fadeIn), -webkit-transform var(--fadeIn);
  transition: transform var(--fadeIn), opacity var(--fadeIn);
  transition: transform var(--fadeIn), opacity var(--fadeIn), -webkit-transform var(--fadeIn);
  z-index: 2;
}

.js_fadeIn.delay {
  --delay: 0.2s;
  transition: opacity var(--fadeIn) var(--delay), -webkit-transform var(--fadeIn) var(--delay);
  transition: transform var(--fadeIn) var(--delay), opacity var(--fadeIn) var(--delay);
  transition: transform var(--fadeIn) var(--delay), opacity var(--fadeIn) var(--delay), -webkit-transform var(--fadeIn) var(--delay);
}

.js_fadeIn.js_active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.js_hide {
  display: none;
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    Modal
=====================================================*/
.g_modal {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: calc(infinity);
}

.g_modal_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.g_modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 4rem;
  background-color: var(--color-white);
  translate: -50%;
}

@media (max-width: 896px) {
}

@media (max-width: 576px) {
}

/*    Table Parts
=====================================================*/
/*    definition list
---------------------------- */
.g_dl > div {
  padding: 2rem 0;
  gap: 2rem;
  border-bottom: 0.1rem solid var(--color-border);
}

.g_dl > div:first-child {
  border-top: 0.1rem solid var(--color-border);
}

.g_dl dt {
  width: 100%;
  max-width: 20rem;
}

@media (max-width: 896px) {
  .g_dl dt {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
}

/*    Table
---------------------------- */
.g_table {
  width: 100%;
  border: 0.1rem solid var(--color-border);
}

.g_table tr:not(:last-child) {
  border-bottom: 0.1rem solid var(--color-border);
}

.g_table tr * {
  padding: 1.5rem;
}

.g_table tr th {
  width: 20rem;
  background-color: var(--color-sub);
  border-right: 0.1rem solid var(--color-border);
}

@media (max-width: 896px) {
  .g_table tr * {
    display: block;
  }

  .g_table tr th {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
}

/*    Tel
=====================================================*/
@media (min-width: 577px) {
  .g_tel {
    pointer-events: none;
  }
}

@media (max-width: 576px) {
  .g_tel {
    text-decoration: underline;
  }
}

/*    Accordion
=====================================================*/
@media screen and (max-width:576px){
  .g_acd_ic{
    position: relative;
  }
  .g_acd_ic::before,
  .g_acd_ic::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-grey-03);
    transition: all 0.4s linear;
    border-radius: calc(1px / 0);
    z-index: 1;
  }
  .g_acd_ic::before {
    width: calc(15 / 16 * 1.6rem);
    height: calc(1 / 16 * 1.6rem);
    right: 0;
  }
  .g_acd_ic::after {
    width: calc(1 / 16 * 1.6rem);
    height: calc(15 / 16 * 1.6rem);
    right: calc(7 / 16 * 1.6rem);
  }
  .g_acd.js_open .g_acd_ic::after {
    -webkit-transform: rotate(90deg) translateY(0);
    transform: rotate(90deg) translateY(0);
  }
}
