@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: 896px) { */
@media (max-width: 1055px) {
  .g_hamb {
    display: flex;
    width: 50px;
    height: 50px;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--color-main);
  }
  .header.js_sm .g_hamb {
    width: 45px;
    height: 45px;
  }
  .g_hamb_inr {
    position: relative;
    width: 18px;
    height: 15px;
  }
  .g_hamb_inr div {
    position: absolute;
    display: block;
    width: inherit;
    height: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-white);
    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.slick-slider {
  width: 100%;
  height: auto;
  min-height: auto;
  margin: auto;
  padding-bottom: 30px; /* dots用 */
}
.g_slider.slick-slider .slick-list,
.g_slider.slick-slider .slick-track {
  height: inherit;
}
.g_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.g_slider .slick-dots {
  height: auto;
  bottom: 0;
  right: 0;
  left: 0;
  padding-top: 0;
  text-align: center;
}
.g_slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 3px;
  overflow: visible;
}
.g_slider .slick-dots li button {
  overflow: visible;
}
.g_slider .slick-dots li button::before {
  background-color: var(--color-border);
  border-radius: 50%;
}
.g_slider .slick-dots li.slick-active button::before {
  background-color: var(--color-main);
}

.g_slider .slick-prev,
.g_slider .slick-next {
  width: 40px;
  height: 40px;
  top: 0;
}
.g_slider .slick-prev:before {
  background-image: url(../img/slider/ic_prev1.png);
}
.g_slider .slick-next:before {
  background-image: url(../img/slider/ic_next1.png);
}

.g_slider .slick-prev {
  left: 0;
}
.g_slider .slick-next {
  right: 0;
}
[dir="rtl"] .g_slider .slick-prev {
  right: 0;
}
[dir="rtl"] .g_slider .slick-next {
  left: 0;
}

/*-- Original --*/
.g_slider_itm.slick-slide {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.g_slider_itm.slick-slide img {
  width: 100%;
}
.g_slider_itm[data-slick-index="-2"] {
}
.g_slider_itm[data-slick-index="-1"] {
}
.g_slider_itm[data-slick-index="0"] {
}
.g_slider_itm[data-slick-index="1"] {
}
.g_slider_itm[data-slick-index="2"] {
}
.g_slider_itm[data-slick-index="3"] {
}
.g_slider_itm[data-slick-index="4"] {
}
@media (max-width: 896px) {
}
@media (max-width: 576px) {
}

/*    Section
=====================================================*/
.g_sec {
  padding-top: 120px;
}
.g_sec__last {
  padding-bottom: 180px;
}

@media (max-width: 896px) {
  .g_sec {
    padding-top: calc(80 / 16 * 1.6rem);
  }
  .g_sec__last {
    padding-bottom: calc(120 / 16 * 1.6rem);
  }
}

/*    Heading
=====================================================*/
.g_pgHd {
  margin-top: 105px;
  position: relative;
  height: 470px;
  background: linear-gradient(180deg, var(--color-sub) 0%, var(--color-sub) 10%, var(--color-main) 10%, var(--color-main) 100%);
}
.g_pgHd_inr {
  display: flex;
  align-items: center;
  height: 100%;
}
.g_pgHd_txt_box {
  width: 90vw;
  max-width: 1110px;
  margin: calc((100vw / var(--vw-value-lg)) * 45) auto 0 auto;
}
.g_pgHd_ttl {
  width: clamp(calc(410 / 16* 1.6rem),calc((100vw / var(--vw-value-lg)) * 480),calc(480 / 16* 1.6rem));
  letter-spacing: 0.05em;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
}
.g_pgHd_ttl::before {
  content: attr(data-en);
  display: block;
  font-family: var(--font-en), var(--font-jp), sans-serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: calc(80/16 * 1.6rem);
}
.g_pgHd_ttl_sub {
  margin-top: 40px;
  width: clamp(calc(410 / 16* 1.6rem),calc((100vw / var(--vw-value-lg)) * 480),calc(480 / 16* 1.6rem));
  color: var(--color-white);
}
.g_pgHd_img_wrap {
  position: absolute;
  width: 50%;
  margin: 0 0 0 auto;
  top: 0;
  right: 0;
}
.g_pgHd_img {
  border-radius: calc(30 / 16 * 1.6rem) 0 0 calc(30 / 16 * 1.6rem);
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.g_pgHd_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center;
}
.g_pgHd_icon {
  position: absolute;
  left: -130px;
  bottom: -10%;
}

@media (max-width: 896px) {
  .g_pgHd {
    margin-top: 50px;
    height: 100%;
    padding-bottom: calc((100vw / var(--vw-value-sm)) * 30);
    background: linear-gradient(180deg, var(--color-sub) 0%, var(--color-sub) 30%, var(--color-main) 30%, var(--color-main) 100%);
  }
  .g_pgHd_inr {
    flex-direction: column-reverse;
  }
  .g_pgHd_ttl {
    position: static;
    width: 100%;
    font-size: clamp(1rem, calc((100vw / var(--vw-value-sm)) * 16), 1.6rem);
    line-height: 1.5;
    -webkit-transform: none;
    transform: none;
  }
  .g_pgHd_ttl::before {
    font-size: clamp(1.7rem, calc((100vw / var(--vw-value-sm)) * 34), 6.8rem);
  }
  .g_pgHd_ttl_sub {
    margin-top: calc(20 / 16 * 1.6rem);
  }
  .g_pgHd_txt_box {
    margin: calc((100vw / var(--vw-value-sm)) * 20) auto 0 auto;
  }
  .g_pgHd_img_wrap {
    position: static;
    width: 95%;
    margin-top: calc((100vw / var(--vw-value-sm)) * 20);
  }
  .g_pgHd_img {
    height: 100%;
    border-radius: calc(20 / 16 * 1.6rem) 0 0 calc(20 / 16 * 1.6rem);
  }
  .g_pgHd_img img {
    height: calc((100vw / var(--vw-value-sm))* 200);
  }
  .g_pgHd_icon {
    width: calc((100vw / var(--vw-value-sm)) * 110);
    left: auto;
    bottom: 90px;
    right: calc(10 / 16 * 1.6rem);
  }
}

@media screen and (max-width:576px){
  .g_pgHd_icon {
    bottom: calc((100vw / var(--vw-value-sm)) * 90);
  }
}

/*    2 screens (Indicator)
=====================================================*/
.g_pg_indicator_inr {
  width: 100%;
  max-width: 805px;
}

/* Side Navi */
.g_sideNav {
  position: relative;
  /* width: 190px; */
  flex-shrink: 0;
}
.g_sideNav_inr {
  padding: 120px 0 180px 0;
  position: sticky;
  width: 100%;
  top: 0;
}
.g_sideNav_itm_img {
  width: 100%;
  max-width: 90px;
}
.g_sideNav__indicator .g_sideNav_itm {
  padding-left: 30px;
}
.g_sideNav__indicator .g_sideNav_itm::before {
  width: calc(20 / 16 * 1.6rem);
  height: calc(20 / 16 * 1.6rem);
  left: 0;
  top: calc(6 / 16 * 1.6rem);
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-main);
  z-index: 2;
}
.g_sideNav__indicator .g_sideNav_itm.js_current::before {
  background-color: var(--color-main);
  border: unset;
}
.g_sideNav__indicator .g_sideNav_itm::after {
  width: calc(4 / 16 * 1.6rem);
  height: calc(100% + 20px);
  top: calc(16 / 16 * 1.6rem);
  left: calc(8 / 16 * 1.6rem);
  background-color: var(--color-light-green);
}
.g_sideNav__indicator .g_sideNav_itm:last-child::after {
  height: 0;
}

@media screen and (max-width: 896px) {
  .g_sideNav {
    position: static;
    width: 100%;
    padding: 0;
  }
  .g_sideNav__indicator.g_sideNav {
    display: none;
  }
  .g_sideNav_inr {
    padding: 0;
  }
}

/*    Grid
=====================================================*/

/* サブグリッド */
.g_subgrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 0;
}
.g_subgrid_span_2 {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.g_subgrid_span_3 {
  -ms-grid-row-span: 3;
  grid-row: span 3;
}
.g_subgrid_span_4 {
  -ms-grid-row-span: 4;
  grid-row: span 4;
}

@media screen and (max-width: 896px) {
  .g_subgrid {
    display: block;
  }
  .g_subgrid_span_2,
  .g_subgrid_span_3,
  .g_subgrid_span_4 {
    grid-row: auto;
  }
}

/* PC 2カラム、SP 1カラム（画像が上） */
.g_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
}
.g_grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.g_grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.g_grid_1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1 / 2 / 2 / 3;
}
.g_grid_2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 896px) {
  .g_grid {
    display: block;
  }
  .g_grid_2 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .g_grid_2 {
    margin-top: calc((100vw / var(--vw-value-sm)) * 20);
  }
}

/*    Line Height
=====================================================*/
/*打消し*/
.g_lh {
  margin-block: calc((1em - 1lh) / 2);
}
.g_lh_1 {
  line-height: 1;
}
/*    Color Text
=====================================================*/
.g_c_wh {
  color: var(--color-white);
}
.g_c_green {
  color: var(--color-main);
}
.g_c_red {
  color: var(--color-red);
}

/*    Color Back Ground
=====================================================*/
.g_bgc_wh {
  background-color: var(--color-white);
}
.g_bgc_green {
  background-color: var(--color-main);
}

/*    Button - basic -
=====================================================*/
.g_btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 250px;
  border-radius: calc(1px / 0);
  transition: 0.4s;
}
.g_btn.g_btn__green {
  background-color: var(--color-main);
  color: var(--color-white);
  border: 2px solid var(--color-main);
}
.g_btn.g_btn__wh {
  background-color: var(--color-white);
  color: var(--color-main);
  border: 2px solid var(--color-white);
}

.g_btn > * {
  width: 100%;
  height: 65px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.g_btn.u_ic::after {
  width: calc(14 / 16 * 1.6rem);
  height: calc(12 / 16 * 1.6rem);
  top: 0;
  bottom: 0;
  right: calc(20 / 16 * 1.6rem);
}
.g_btn.g_btn__wh.u_ic::after {
  background-image: url(../img/common/arrow_green.svg);
}
.g_btn.g_btn__green.u_ic::after {
  background-image: url(../img/common/arrow_white.svg);
}

.g_arrow {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: calc((100vw / var(--vw-value-lg)) * 55);
  transition: 0.4s;
}
.g_arrow.u_ic::before {
  width: calc(36 / 16 * 1.6rem);
  height: calc(36 / 16 * 1.6rem);
  background-color: var(--color-main);
  border-radius: 50%;
  top: 0;
  right: 0;
  transition: 0.4s;
}
.g_arrow.u_ic::after {
  width: calc(12 / 16 * 1.6rem);
  height: calc(11 / 16 * 1.6rem);
  background-image: url(../img/common/arrow_white.svg);
  top: calc(12 / 16 * 1.6rem);
  right: calc(12 / 16 * 1.6rem);
}
.g_arrow.g_arrow__green.u_ic::before {
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
}
.g_arrow.g_arrow__green.u_ic::after {
  background-image: url(../img/common/arrow_green.svg);
}

@media (any-hover: hover) {
  /* BUTTON */
  .g_btn.g_btn__wh:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }
  .g_btn.g_btn__wh:hover::after {
    background-image: url(../img/common/arrow_white.svg);
  }
  .g_btn.g_btn__green:hover {
    color: var(--color-main);
    background-color: var(--color-white);
  }
  .g_btn.g_btn__green:hover::after {
    background-image: url(../img/common/arrow_green.svg);
  }

  /* LINK */
  .g_arrow:hover::before {
    background-color: var(--color-white);
    border: 1px solid var(--color-main);
  }
  .g_arrow:hover::after {
    background-image: url(../img/common/arrow_green.svg);
  }
  .g_arrow.g_arrow__green:hover::before {
    background-color: var(--color-main);
    border: 1px solid var(--color-white);
  }
  .g_arrow.g_arrow__green:hover::after {
    background-image: url(../img/common/arrow_white.svg);
  }
}

@media screen and (max-width: 896px) {
  .g_btn {
    width: 100%;
    max-width: 335px;
  }
  .g_btn > * {
    height: 60px;
  }

  .g_arrow {
    padding-right: calc(40/16 * 1.6rem);
  }
  .g_arrow.u_ic::before {
    width: calc(30/16 * 1.6rem);
    height: calc(30/16 * 1.6rem);
  }
  .g_arrow.u_ic::after {
    width: calc(10 / 16* 1.6rem);
    height: calc(9 / 16* 1.6rem);
    top: calc(10 / 16* 1.6rem);
    right: calc(10 / 16* 1.6rem);
  }
}

/*戻るボタン*/
.g_btn.g_btn_back::after {
  right: auto;
  left: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*外部リンク付きボタン*/
.g_btn .g_tab {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  padding-right: 0;
}
.g_btn .g_tab::before {
  background-image: url(../img/common/ico_tab_wh.svg);
}
@media (any-hover: hover) {
  .g_btn:hover .g_tab::before {
    background-image: url(../img/common/ico_tab.svg);
  }
}

@media (max-width: 896px) {
  .g_btn .g_tab {
    right: 2.2vw;
  }
}
@media (max-width: 576px) {
  .g_btn .g_tab {
    right: 5.3vw;
  }
}

/*    link - Text -
=====================================================*/
/* underline */
.g_link {
  color: var(--color-main);
  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 {
  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/common/ico_tab.svg);
}

/*    link - Image -
=====================================================*/
.g_hover_img picture,
.g_hover_img figure {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.g_hover_img img {
  transition: 0.4s;
  overflow: hidden;
}

@media (any-hover: hover) {
  .g_hover_img:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/*    Decoration
=====================================================*/
/* 枠線 */
.g_bd {
  border: 1px solid var(--color-border);
}
.g_bd__p {
  padding: 20px;
  border: 1px solid var(--color-border);
}
.g_bd_dot {
  background-image: radial-gradient(circle, #009944 3px, transparent 3px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 18px 6px;
}
@media screen and (max-width: 896px) {
  .g_bd_dot {
    background-image: radial-gradient(circle, #009944 calc(2 / 16 * 1.6rem), transparent calc(2 / 16 * 1.6rem));
    background-position: left top;
    background-repeat: repeat-x;
    background-size: calc(14 / 16 * 1.6rem) calc(4 / 16 * 1.6rem);
  }
}

/* 見出し装飾 - 下線 */
.g_decoHd_bb {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.g_decoHd_bb::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  bottom: -1px;
  border-bottom: 1px solid var(--color-main);
  z-index: 5;
}

/* 見出し装飾 - 左線 */
.g_decoHd_bl {
  position: relative;
  padding-left: 15px;
}
.g_decoHd_bl::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0.3em;
  left: 0;
  width: 4px;
  height: 1em;
  background-color: var(--color-main);
}

@media (max-width: 576px) {
  .g_decoHd_bl {
    padding-left: 4vw;
  }
  .g_decoHd_bl::before {
    top: 1.8vw;
    width: 1vw;
  }
}

/* 角丸 */
.g_bdrs_10 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: calc(10 / 16 * 1.6rem);
  overflow: hidden;
}
.g_bdrs_20 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: calc(20 / 16 * 1.6rem);
  overflow: hidden;
}
.g_bdrs_30 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: calc(30 / 16 * 1.6rem);
  overflow: hidden;
}

@media screen and (max-width: 576px) {
  .g_bdrs_20,
  .g_bdrs_30 {
    border-radius: calc(10 / 16 * 1.6rem);
  }
  .g_bdrs_20_sm {
    border-radius: calc(20 / 16 * 1.6rem);
  }
  .g_bdrs_30_sm {
    border-radius: calc(30 / 16 * 1.6rem);
  }
}

/* アイコン */
.g_clover_icon {
  padding-left: calc(30 / 16 * 1.6rem);
}
.g_clover_icon::before {
  width: calc(27 / 16 * 1.6rem);
  height: calc(27 / 16 * 1.6rem);
  left: 0;
  top: 0;
  bottom: 0;
  background-image: url(../img/job/ttl_icon.svg);
}
@media screen and (max-width: 896px) {
  .g_clover_icon {
    padding-left: calc(30 / 16 * 1.6rem);
  }
  .g_clover_icon::before {
    width: calc(20 / 16 * 1.6rem);
    height: calc(20 / 16 * 1.6rem);
  }
}
/*    Information list
=====================================================*/
/* サムネイル無 */
.g_info_itm {
  display: flex;
  align-items: baseline;
  width: 100%;
  padding: 15px 0;
}
.g_info_itm_li {
  border-top: 1px solid var(--color-border);
}
.g_info_itm_li:last-child {
  border-bottom: 1px solid var(--color-border);
}
.g_info_itm_cap {
  display: flex;
  width: auto;
  margin-right: 20px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 20px;
}
.g_info_itm_cap span {
  transition: color 0.2s;
}
.g_info_itm_label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 20px;
  margin-left: 20px;
  padding: 0 10px;
  color: var(--color-main);
  font-size: 1rem;
  text-align: center;
  line-height: 20px;
  border: 1px solid var(--color-main);
  transition: color 0.2s, linear 0.2s;
}
.g_info_itm_txt {
  transition: color 0.2s;
}
@media (any-hover: hover) {
  .g_info_itm:hover .g_info_itm_txt,
  .g_info_itm:hover .g_info_itm_cap span {
    color: var(--color-hover);
  }
  .g_info_itm:hover .g_info_itm_label {
    border-color: var(--color-hover);
  }
}

/* サムネイル有 */
.g_info_itm_thum .g_info_itm_cap {
  flex-wrap: wrap;
  margin-right: 0;
}
.g_info_itm_thum .g_info_itm_label {
  min-width: 60px;
  height: auto;
  min-height: 20px;
  margin-left: 10px;
}
@media (any-hover: hover) {
  .g_info_itm_thum a:hover .g_info_itm_txt,
  .g_info_itm_thum a:hover .g_info_itm_cap span {
    color: var(--color-hover);
  }
  .g_info_itm_thum a:hover .g_info_itm_cap .g_info_itm_label {
    border-color: var(--color-hover);
  }
}

.g_info_itm_thum_img {
  margin-bottom: 15px;
  overflow: hidden;
}
.g_info_itm_thum_img img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (any-hover: hover) {
  .g_info_itm_thum a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* 導線 */
.g_info_link {
  padding-right: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: right;
  transition: color 0.2s;
}
@media (any-hover: hover) {
  .g_info_link:hover {
    color: var(--color-hover);
  }
}

.g_info_link::after {
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  right: 0;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .g_info_link:hover::after {
    border-color: var(--color-hover);
  }
}

@media (max-width: 896px) {
  .g_info_itm {
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .g_info_itm {
    padding: 5.3vw 0;
    flex-wrap: wrap;
  }
  .g_info_itm_cap {
    line-height: 5.8vw;
  }
  .g_info_itm_label {
    min-width: 30.8vw;
    height: 5.8vw;
    margin-right: 5.3vw;
    margin-left: 5.3vw;
    line-height: 5.8vw;
  }
  .g_info_itm_txt {
    margin-top: 2.6vw;
  }

  .g_info_itm_thum .g_info_itm_label {
    min-width: 16.8vw;
  }
  .g_info_itm_thum_img {
    width: 35%;
    height: 25vw;
    margin-right: 5%;
    margin-bottom: 0;
  }
  .g_info_itm_thum_img img {
    height: 25vw;
  }
  .g_info_itm_thum_txt {
    width: 60%;
  }
}

/*    Category list
=====================================================*/
.g_catLst {
  width: 230px;
  height: 40px;
  margin-bottom: 40px;
  position: relative;
}
.g_catLst::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.g_catLst::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-reverse);
  border-right: 1px solid var(--color-reverse);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  pointer-events: none;
}
.g_catLst_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background-color: var(--color-reverse);
  display: block;
  width: inherit;
  height: 100%;
  min-height: 100%;
  padding-left: 20px;
  color: inherit;
  font-family: var(--font-jp), sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  cursor: pointer;
}
.g_catLst_select:focus {
  outline: none;
}
@media (max-width: 896px) {
  .g_catLst_select {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .g_catLst {
    width: 100%;
    margin-bottom: 6.6vw;
  }
  .g_catLst_select {
    font-size: 16px;
  }
}

/*    Pager list
=====================================================*/
/*    Archive
--------------------------------- */
.g_pager_li {
  width: 40px;
  height: 40px;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: calc(5 / 16 * 1.6rem);
  margin-left: calc(10 / 16 * 1.6rem);
  font-family: var(--font-en), var(--font-jp), sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-white);
  transition: color 0.2s, background 0.2s;
}
.g_pager_li a {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.g_pager_li span {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.g_pager_li.current {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-main);
}
.g_pager_li.current a {
  pointer-events: none;
}
.g_pager_li.prev {
  margin-left: 0;
}
.g_pager_dots {
  margin-left: calc(10 / 16 * 1.6rem);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main);
}
@media (any-hover: hover) {
  .g_pager_li:not(.current):hover {
    background-color: var(--color-white);
    color: var(--color-main);
  }
}

/*    Single
--------------------------------- */
.g_single_pager {
  margin-top: 80px;
  padding: 15px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.g_single_pager_prev {
  border-right: 1px solid var(--color-border);
}
.g_single_pager .u_img {
  min-width: 110px;
  margin-right: 20px;
  transition: opacity 0.2s;
}
.g_single_pager .u_img img {
  margin: 0;
}
.g_single_pager_note {
  margin-bottom: 5px;
}
.g_single_pager p {
  transition: color 0.2s;
}
.g_single_pager img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
.g_single_pager .g_info_itm_cap {
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.g_single_pager .g_info_itm_date {
  margin-right: 10px;
}
.g_single_pager .g_info_itm_label {
  min-width: 63px;
  height: auto;
  min-height: 20px;
  margin: 0 10px 0 0;
  transition: color 0.2s, linear 0.2s;
}
@media (any-hover: hover) {
  .g_single_pager a:hover p,
  .g_single_pager a:hover span {
    color: var(--color-hover);
  }
  .g_single_pager a:hover .u_img {
    opacity: var(--opacity);
  }
  .g_single_pager a:hover .g_info_itm_label {
    border-color: var(--color-hover);
  }
}

@media (max-width: 576px) {
  .g_single_pager {
    border-bottom: none;
  }
  .g_single_pager .g_single_pager_prev {
    border-right: none;
    margin-bottom: 15px;
  }
  .g_single_pager_prev,
  .g_single_pager_next {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
  }
}

/*    List number
=====================================================*/
.g_incr {
  counter-reset: item;
  padding-left: 2em;
}
.g_incr_itm {
  font-size: inherit;
  list-style-type: none;
  position: relative;
}
.g_incr_itm::before {
  font-size: inherit;
  line-height: inherit;
  content: counter(item);
  counter-increment: item;
  top: 0;
  left: -2em;
  width: 2em;
  position: absolute;
  display: inline-block;
  margin: auto;
}

/*    Entry
=====================================================*/
.g_entry_head_txt {
  font-size: 2rem;
  line-height: 1.6;
  margin-top: 15px;
}
.g_entry_article {
  width: 100%;
}
.g_entry_article h1 {
  margin-bottom: 10px;
  font-size: 4rem;
  font-weight: bold;
}
.g_entry_article h2 {
  margin-bottom: 15px;
  font-size: 3rem;
  font-weight: bold;
}
.g_entry_article h3 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: bold;
}
.g_entry_article h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: bold;
}
.g_entry_article h5 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  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 li {
  margin-bottom: initial;
  font-size: inherit;
}
.g_entry_article p {
  font-size: 1.5rem;
  min-height: 1em;
  /* margin-bottom: 1em; */
}
.g_entry_article p.has-small-font-size {
  font-size: calc(1.5rem * 0.8);
}
.g_entry_article p.has-medium-font-size {
  font-size: calc(1.5rem * 1.25);
}
.g_entry_article p.has-large-font-size {
  font-size: calc(1.5rem * 2);
}
.g_entry_article p.has-huge-font-size {
  font-size: calc(1.5rem * 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: 15px;
  color: var(--color-reverse);
  background-color: #333;
}
.g_entry_article em,
.g_entry_article strong {
  display: inline;
}
.g_entry_article strong {
  font-weight: bold;
}
.g_entry_article div {
  font-size: 1.5rem;
}
.g_entry_article img {
  max-width: 100%;
  height: auto;
}
.g_entry_article p > a {
  text-decoration: underline;
}
.g_entry_article .wp-block-button {
  transition: opacity 0.2s;
}
.g_entry_article .is-style-outline .wp-block-button__link,
.g_entry_article .wp-block-button__link.is-style-outline {
  padding: 10px 24px;
}
@media (any-hover: hover) {
  .g_entry_article p > a:hover {
    text-decoration: none;
  }
  .g_entry_article .wp-block-button:hover {
    opacity: var(--opacity);
  }
}

.g_entry_article .wp-block-table {
  width: 100%;
  border: 1px solid var(--color-border);
}
.g_entry_article .wp-block-table tr {
  border-top: 1px 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: 10px;
  vertical-align: middle;
}
.g_entry_article .wp-block-table tr th {
  color: var(--color-reverse);
  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 {
  border-left: 1px solid var(--color-border);
}
.g_entry_article .wp-block-table tr td + td {
  border-left: 1px 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;
}

/*    Pagetop
=====================================================*/
/*    追従
--------------------------- */
.g_pagetop_fixed {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 30px;
  transition: opacity 0.2s, visibility 0s, ease 0.2s;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}
.g_pagetop_fixed img {
  width: 100%;
  transition: opacity 0.2s;
}
.g_pagetop_fixed.js_show {
  opacity: 1;
  visibility: visible;
}
.g_pagetop_fixed.js_stc {
  position: absolute;
  top: -25px;
}
@media (any-hover: hover) {
  .g_pagetop_fixed:hover img {
    opacity: var(--opacity);
  }
}

/*    フッター固定
--------------------------- */
.g_pagetop {
  padding: 20px 0 10px;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-sub);
  text-align: center;
  line-height: 1;
}
.g_pagetop a {
  padding: 10px;
  display: inline-block;
  transition: color 0.2s;
}
.g_pagetop a:before {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: linear 0.2s;
}
@media (any-hover: hover) {
  .g_pagetop a:hover {
    color: var(--color-hover);
  }
  .g_pagetop a:hover:before {
    border-top: 1px solid var(--color-hover);
    border-right: 1px solid var(--color-hover);
  }
}

/*    Breadcrumb
=====================================================*/
.g_breadcrumb_lst {
  padding: 10px 0;
}
.g_breadcrumb_lst_line {
  border-bottom: 1px solid var(--color-border);
}
.g_breadcrumb_lst_li {
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
}
.g_breadcrumb_lst_li + .g_breadcrumb_lst_li {
  padding-left: 20px;
}
.g_breadcrumb_lst_li + .g_breadcrumb_lst_li::before {
  content: "";
  position: absolute;
  margin: auto;
  width: calc(5/16 * 1.6rem);
  height: calc(8/16 * 1.6rem);
  top: calc(2.5/ 16* 1.6rem);
  bottom: 0;
  left: calc(8/16 * 1.6rem);
  background-image: url(../img/common/breadcrumb_arrow.svg);
  background-repeat: no-repeat;
}
@media (any-hover: hover) {
  .g_breadcrumb_lst_li a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 896px) {
  .g_breadcrumb_lst {
    display: block;
    padding: 10px 0 0 0;
    overflow-x: auto;
    white-space: nowrap;
  }
  .g_breadcrumb_lst_li {
    display: inline-block;
    white-space: nowrap;
  }
  .g_breadcrumb_lst_li + .g_breadcrumb_lst_li::before {
    top: calc(1 / 16* 1.6rem);
    left: calc(5/16 * 1.6rem);
  }
}
@media (max-width: 576px) {
}

/*    GDPR
=====================================================*/
.g_gdpr {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 0 30px;
  box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 500;
}
.g_gdpr_wrp {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g_gdpr_txt {
  font-size: 1.4rem;
  line-height: 1.6;
  width: 80%;
  color: var(--color-main);
}
.g_gdpr_txt a {
  font-weight: bold;
  text-decoration: underline;
}
.g_gdpr_btn {
  font-size: 1.4rem;
  font-weight: 500;
  width: 255px;
  height: 50px;
  color: var(--color-reverse);
  border: 2px solid var(--color-main);
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  cursor: pointer;
  border-radius: calc(5 / 16 * 1.6rem);
}
@media (any-hover: hover) {
  .g_gdpr_txt a:hover {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
  }
  .g_gdpr_btn:hover {
    color: var(--color-main);
    background-color: var(--color-reverse);
  }
}

@media (max-width: 1024px) {
  .g_gdpr {
    padding-left: 0;
  }
  .g_gdpr_wrp {
    width: 80%;
  }
}
@media (max-width: 896px) {
  .g_gdpr_wrp {
    display: block;
  }
  .g_gdpr_txt {
    width: 100%;
  }
  .g_gdpr_btn {
    width: 130px;
    margin: 15px 0 0 auto;
  }
}
@media (max-width: 576px) {
  .g_gdpr {
    padding: 3.5vw 0;
    /* bottom: 8vh; */
  }
  .g_gdpr_wrp {
    width: 86vw;
  }
  .g_gdpr_btn {
    width: 30vw;
    height: 9vw;
    margin: 4vw 0 0 auto;
  }
}

/*    Loading
=====================================================*/
/* .js_loading {
  width: 100vw;
  height: 100vh;
  background-color: var(--color-reverse);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.js_loading.js_loading__page {
  background-color: var(--color-reverse);
}
.loader {
  border-radius: 50%;
  width: 5em;
  height: 5em;
  margin: auto;
  font-size: 10px;
  border-top: 5px solid rgba(22, 22, 22, 0.2);
  border-right: 5px solid rgba(22, 22, 22, 0.2);
  border-bottom: 5px solid rgba(22, 22, 22, 0.2);
  border-left: 5px solid var(--color-main);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: loader 1.1s infinite linear;
  animation: loader 1.1s infinite linear;
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

html.js_notmove {
  overflow: hidden;
} */



/*    Loading(改修)
===================================================== */
.js_loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483648;
}

.loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: var(--color-sub);
  transform-origin: top;
  transform: scaleY(1);
}

.loader::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: var(--color-main);
  transform-origin: top;
  transform: scaleY(0);
}

html.js_appear .loader::before {
  animation-name: loader02;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

html.js_appear .loader::after {
  animation-name: loader;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes loader {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

@keyframes loader02 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}


/*    FadeIn
=====================================================*/
.js_fadeIn {
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.7s;
  transition: transform 0.7s, opacity 0.7s, -webkit-transform 0.7s;
  z-index: 2;
}
.js_fadeIn.delay {
  transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
  transition: transform 0.7s 0.2s, opacity 0.7s 0.2s;
  transition: transform 0.7s 0.2s, opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
}
.js_fadeIn.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.js_hide {
  display: none;
}

/*    Modal
=====================================================*/
.g_modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.g_modal_bg {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.g_modal_content {
  background-color: var(--color-reverse);
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
}

/*    Table Parts
=====================================================*/
/*    definition list
---------------------------- */
.g_dl > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}
.g_dl > div:first-child {
  border-top: 1px solid var(--color-border);
}
.g_dl dt {
  width: 15%;
  margin-right: 5%;
}
.g_dl dd {
  width: 80%;
}

@media (max-width: 896px) {
  .g_dl dt {
    width: 100%;
    margin-right: 0;
  }
  .g_dl dd {
    width: 100%;
    margin-top: 5px;
  }
}

/*    Table
---------------------------- */
.g_table {
  width: 100%;
  border: 2px solid var(--color-sub);
}
.g_table tr {
  border-bottom: 2px solid var(--color-sub);
}
.g_table tr:last-child {
  border-bottom: none;
}
.g_table tr th,
.g_table tr td {
  padding: calc(20 / 16 * 1.6rem);
  line-height: calc(26 / 16);
}
.g_table tr th {
  /* width: 17%; */
  width: 19%;
  background-color: var(--color-main);
  border-right: 2px solid var(--color-sub);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
  vertical-align: middle;
}
.g_table tr td {
  background-color: var(--color-white);
  font-weight: 500;
}

@media (max-width: 896px) {
  .g_table tr th,
  .g_table tr td {
    display: block;
    padding: calc(10 / 16 * 1.6rem);
  }
  .g_table tr th {
    width: 100%;
    letter-spacing: 0;
    text-align: left;
    border-right: none;
    border-bottom: 2px solid var(--color-sub);
  }
}

/*    Tel
=====================================================*/
@media (min-width: 577px) {
  .g_tel {
    pointer-events: none;
  }
}
@media (max-width: 576px) {
  .g_tel {
    text-decoration: underline;
  }
}