@charset "utf-8";
/* -----------------------------------------------------------------
 layout
----------------------------------------------------------------- */
.l_page_header {
  display: flex;
  align-items: center;
  padding: min(18vw, 300px) 0 min(17vw, 280px);
}
@media screen and (max-width: 767px) {
  .l_page_header {
    display: flex;
    align-items: center;
    padding-top: calc(20vw + 5rem);
  }
}

/* -----------------------------------------------------------------
 base
----------------------------------------------------------------- */
[id] {
  scroll-margin-top: calc(var(--site_header_margin_top) * 2 + var(--site_header_height));
}
.c_inner_base {
  width: min(1400px,92vw);
  margin-left: auto;
  margin-right: auto;
}
.c_inner_wide {
  width: max(calc(100vw - 80px),92vw);
  margin-left: auto;
  margin-right: auto;
}
.c_inner_narrow {
  width: min(1000px,90.66vw);
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width: 768px) {
  .c_inner_narrow {
    width: min(80%,900px);
  }
}
/* -----------------------------------------------------------------
 js関連
----------------------------------------------------------------- */
.js_overlay {
  background: #000;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  display: none;
}
.js_inview {
  transition: transform .6s ease;
}
/* -----------------------------------------------------------------
 font
----------------------------------------------------------------- */
.en {
  font-family: var(--font_en);
}
.jp {
  font-family: var(--font_jp);
}
.kami {
  font-family: var(--font_kami);
}
/* -----------------------------------------------------------------
 link
----------------------------------------------------------------- */
a.link_blue {
  border-bottom: var(--color_kamikoubou_dark) 1px solid;
  color: var(--color_kamikoubou);
}


@media (hover: hover) and (pointer: fine) {
  a.link_blue:hover {
    border-bottom: var(--color_kamikoubou_pale) 1px solid;
    color: var(--color_kamikoubou);
  }
}
/* -----------------------------------------------------------------
 段落
----------------------------------------------------------------- */
.c_text_base {
  margin-top: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
}

@media print, screen and (min-width: 768px) {
  .c_text_base {
    line-height: 2.15;
  }
}
/* -----------------------------------------------------------------
 c_img_trim
----------------------------------------------------------------- */
  .c_img_trim {
    position: relative;
    overflow: hidden;
    aspect-ratio: 534 / 284;
  }
  .c_img_trim img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    transition: .5s ease;
  }
@media (hover: hover) and (pointer: fine) {
  a:hover .c_img_trim img  {
    transform: translate(-50%, -50%) scale(1.02);
  }
}

/* -----------------------------------------------------------------
 見出し（c_title01）
----------------------------------------------------------------- */
.c_title01 {
}
.c_title01 .sub {
  text-transform: uppercase;
  font-size: min(.8rem,2vw);
}
.c_title01 .title {
  margin-top: .2em;
  text-transform: uppercase;
  font-size: min(5rem,7.5vw);
}
/* -----------------------------------------------------------------
 見出し（c_title02）
----------------------------------------------------------------- */
.c_title02 {
  text-transform: uppercase;
  font-size: min(1.8rem,4.5vw);
}
/* -----------------------------------------------------------------
 見出し（c_title03）
----------------------------------------------------------------- */
.c_title03 {
  line-height: 1.5;
  text-transform: uppercase;
  font-size: min(3rem,3.8vw);
}
@media screen and (max-width: 767px) {
  .c_title03 {
    font-size: 1.8em;
  }
}
/* -----------------------------------------------------------------
 見出し（c_title04）
----------------------------------------------------------------- */
.c_title04 {
  padding-top: .9em;
  border-top: var(--color_gray) 1px solid;
  line-height: 1.5;
  font-size: min(1.3rem,3.6vw);
}

/* -----------------------------------------------------------------
 c_btn01
----------------------------------------------------------------- */
.c_btn01 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 16px 28px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  overflow: hidden;
  transition: background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn01:hover {
    background: var(--color_kamikoubou);
  }
}
/*----------text----------*/
.c_btn01 .text {
  display: inline-grid;
  min-width: 250px;
}
.c_btn01 .text span {
  grid-area: 1 / 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c_btn01 .text {
    min-width: min(50vw, 250px);
  }
}

/*----------text_en----------*/
.c_btn01 .text_en {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn01:hover .text_en {
    opacity: 0;
    transform: translateX(12px);
  }
}
/*----------text_jp----------*/
.c_btn01 .text_jp {
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.3s ease 0.05s,
    transform 0.3s ease 0.05s;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn01:hover .text_jp {
    opacity: 1;
    transform: translateX(0);
  }
}
/*----------icon----------*/
.c_btn01 .icon {
  display: grid;
  place-items: center;
  width: 1em;
  height: 1em;
}
.c_btn01 .icon img {
  grid-area: 1 / 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.c_btn01 .icon_dot {
  transform: scale(1);
  opacity: 1;
}
.c_btn01 .icon_arrow {
  transform: scale(0);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn01:hover .icon_dot {
    transform: scale(0);
    opacity: 0;
  }
  .c_btn01:hover .icon_arrow {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* -----------------------------------------------------------------
 c_btn02
----------------------------------------------------------------- */
.c_btn02 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2em;
  margin-top: 2rem;
  padding: 1.8em 1.5em;
  border-radius: 4px;
  background: var(--color_kamikoubou);
  color: #fff;
  overflow: hidden;
  transition: background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn02:hover {
    background: var(--color_kamikoubou_dark);
  }
}
/*----------text----------*/
.c_btn02 .text {
  display: inline-grid;
  min-width: 600px;
  text-align: center;
}
.c_btn02 .text span {
  grid-area: 1 / 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c_btn02 {
    gap: 1em;
  }
  .c_btn02 .text {
    min-width: max(12em, 40vw);
  }
}
/*----------icon----------*/
.c_btn02 .icon {
  display: grid;
  place-items: center;
  width: 2em;
  height: 2em;
  transform: scale(1);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.c_btn02 .icon img {
  grid-area: 1 / 1;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn02:hover .icon {
    transform: scale(1.2);
  }
}
/* -----------------------------------------------------------------
 c_btn03
----------------------------------------------------------------- */
.c_btn03 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  background: var(--color_gray);
  color: #fff;
  overflow: hidden;
  transition: background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn03:hover {
    background: var(--color_kamikoubou);
  }
}
/*----------text----------*/
.c_btn03 .text {
  display: inline-grid;
  min-width: 8rem;
  text-align: center;
}
.c_btn03 .text span {
  grid-area: 1 / 1;
  white-space: nowrap;
}

/*----------icon----------*/
.c_btn03 .icon {
  display: grid;
  place-items: center;
  width: 2em;
  height: 2em;
  transform: scale(.9) rotate(180deg);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.c_btn03 .icon img {
  grid-area: 1 / 1;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn03:hover .icon {
    transform: scale(1) rotate(180deg);
  }
}

/* -----------------------------------------------------------------
 テーブル（c_table01）
----------------------------------------------------------------- */
.c_table01 {
  width: 100%;
  margin-top: var(--margin_size_60);
  border-bottom: 1px solid var(--color_border_pale);
  border-collapse: collapse;
}

.c_table01 tr {
  border-top: 1px solid var(--color_border_pale);
}

.c_table01 th,
.c_table01 td {
  width: 100%;
  vertical-align: top;
  border-top: none;
}
.c_table01 th {
  background: transparent;
  text-align: left;
  font-weight: bold;
  font-size: .9em;
}
.c_table01 td {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c_table01 th {
    width: 8rem;
    padding:1rem 1rem 0.5rem;
  }
  .c_table01 td {
    width: auto;
    padding:.8rem 1rem 0.5rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  .c_table01 tr {
    margin-bottom: 0;
    border-top: none;
  }
  .c_table01 th,
  .c_table01 td {
    width: auto;
    border-top: 1px solid var(--color_border_pale);
  }
  .c_table01 th {
    width: 21%;
    padding: 1.9rem 2rem 1.5rem;
  }
  .c_table01 td {
    padding: 1.6rem 2rem 1.5rem;
  }
}

