@charset "UTF-8";
/*----------------------------------------
  CSSカスタムプロパティ
----------------------------------------*/
:root {
  --focus-outline-color: #000;
  --vh: 100svh;
  --white: #fff;
  --black: #000;
  --gray: #bebebe;
  --red: #e60011;
  --green: #336600;
  --blue: #00297B;
  --beige: #d9d5c1;
  --beige02: #faf9f3;
  --olive: #827d53;
  --link: #0a4f98;
  --color-text: var(--black);
  --hover-btn: #edecec;
  --hover-btn02: #fafafa;
  --font-family-base: "Noto Sans JP", sans-serif;
  --scroll-padding-gap: 0px;
}

/*----------------------------------------
  html / body
----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  overscroll-behavior: none;
  min-height: 100%;
}

body {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*----------------------------------------
  見出し・テキスト
----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

/*----------------------------------------
  リスト
----------------------------------------*/
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*----------------------------------------
  リンク
----------------------------------------*/
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/*----------------------------------------
  メディア要素
----------------------------------------*/
img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/*----------------------------------------
  テーブル
----------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  border: 0;
}

/*----------------------------------------
  フォーム関連
----------------------------------------*/
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button,
a {
  touch-action: manipulation;
}

/*----------------------------------------
  details / summary
----------------------------------------*/
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/*----------------------------------------
  html / body
----------------------------------------*/
html {
  font-size: 100%;
  scroll-padding-top: var(--scroll-padding-gap);
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  min-height: calc(var(--vh, 100vh));
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0em;
}
body.is_noScroll {
  overflow: hidden;
}

/* SP・PCの切り替え */
@media screen and (min-width: 768px) {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_pcOnly {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_pcOnly {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .hp_spOnlyM {
    display: none !important;
  }
}

.hp_pcOnlyM {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .hp_pcOnlyM {
    display: block !important;
  }
}

@media screen and (min-width: 1280px) {
  .hp_spOnlyL {
    display: none !important;
  }
}

.hp_pcOnlyL {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .hp_pcOnlyL {
    display: block !important;
  }
}

/* font-weight */
.hp_fw900 {
  font-weight: 900 !important;
}

.hp_fw700 {
  font-weight: 700 !important;
}

.hp_fw600 {
  font-weight: 600 !important;
}

.hp_fw500 {
  font-weight: 500 !important;
}

.hp_fw400 {
  font-weight: 400 !important;
}

/* text-align */
.hp_tal {
  text-align: left !important;
}

.hp_tac {
  text-align: center !important;
}

.hp_tar {
  text-align: right !important;
}

/* font-style */
.hp_italic {
  font-style: italic !important;
}

/* font-size */
.hp_fsz10 {
  font-size: 1rem !important;
}

.hp_fsz11 {
  font-size: 1.1rem !important;
}

.hp_fsz12 {
  font-size: 1.2rem !important;
}

.hp_fsz13 {
  font-size: 1.3rem !important;
}

.hp_fsz14 {
  font-size: 1.4rem !important;
}

.hp_fsz15 {
  font-size: 1.5rem !important;
}

.hp_fsz16 {
  font-size: 1.6rem !important;
}

.hp_fsz17 {
  font-size: 1.7rem !important;
}

.hp_fsz18 {
  font-size: 1.8rem !important;
}

.hp_fsz19 {
  font-size: 1.9rem !important;
}

.hp_fsz20 {
  font-size: 2rem !important;
}

.hp_fsz21 {
  font-size: 2.1rem !important;
}

.hp_fsz22 {
  font-size: 2.2rem !important;
}

.hp_fsz23 {
  font-size: 2.3rem !important;
}

.hp_fsz24 {
  font-size: 2.4rem !important;
}

.hp_fsz25 {
  font-size: 2.5rem !important;
}

.hp_fsz26 {
  font-size: 2.6rem !important;
}

.hp_fsz27 {
  font-size: 2.7rem !important;
}

.hp_fsz28 {
  font-size: 2.8rem !important;
}

.hp_fsz29 {
  font-size: 2.9rem !important;
}

.hp_fsz30 {
  font-size: 3rem !important;
}

/* block */
.hp_d_block {
  display: block !important;
}

.hp_d_inline-block {
  display: inline-block !important;
}

.hp_d_inline {
  display: inline !important;
}

.hp_hidden {
  display: none !important;
}

/* flex */
.hp_d_flex {
  display: flex !important;
}

.hp_d_inline-flex {
  display: inline-flex !important;
}

/* flex | align-items */
.hp_ai_start {
  align-items: flex-start !important;
}

.hp_ai_center {
  align-items: center !important;
}

.hp_ai_end {
  align-items: flex-end !important;
}

/* flex | justify-content */
.hp_jc_start {
  justify-content: flex-start !important;
}

.hp_jc_center {
  justify-content: center !important;
}

.hp_jc_end {
  justify-content: flex-end !important;
}

.hp_jc_between {
  justify-content: space-between !important;
}

.hp_jc_around {
  justify-content: space-around !important;
}

/* flex | flex-direction */
.hp_fd_row {
  flex-direction: row !important;
}

.hp_fd_column {
  flex-direction: column !important;
}

/* flex | flex: 1 */
.hp_f_1 {
  flex: 1 !important;
}

/* flex | flex: 0 0 auto */
.hp_no_shrink {
  flex: 0 0 auto !important;
}

/* flex | flex-wrap */
.hp_fw_wrap {
  flex-wrap: wrap !important;
}

.hp_fw_nowrap {
  flex-wrap: nowrap !important;
}

/* flex or grid | gap （4の倍数） */
.hp_gap0 {
  gap: 0px !important;
}

.hp_gap4 {
  gap: 4px !important;
}

.hp_gap8 {
  gap: 8px !important;
}

.hp_gap12 {
  gap: 12px !important;
}

.hp_gap16 {
  gap: 16px !important;
}

.hp_gap20 {
  gap: 20px !important;
}

.hp_gap24 {
  gap: 24px !important;
}

.hp_gap28 {
  gap: 28px !important;
}

.hp_gap32 {
  gap: 32px !important;
}

.hp_gap36 {
  gap: 36px !important;
}

.hp_gap40 {
  gap: 40px !important;
}

.hp_gap44 {
  gap: 44px !important;
}

.hp_gap48 {
  gap: 48px !important;
}

.hp_gap52 {
  gap: 52px !important;
}

.hp_gap56 {
  gap: 56px !important;
}

.hp_gap60 {
  gap: 60px !important;
}

/* flex or grid | column-gap （4の倍数） */
.hp_gap_c0 {
  -moz-column-gap: 0px !important;
       column-gap: 0px !important;
}

.hp_gap_c4 {
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.hp_gap_c8 {
  -moz-column-gap: 8px !important;
       column-gap: 8px !important;
}

.hp_gap_c12 {
  -moz-column-gap: 12px !important;
       column-gap: 12px !important;
}

.hp_gap_c16 {
  -moz-column-gap: 16px !important;
       column-gap: 16px !important;
}

.hp_gap_c20 {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.hp_gap_c24 {
  -moz-column-gap: 24px !important;
       column-gap: 24px !important;
}

.hp_gap_c28 {
  -moz-column-gap: 28px !important;
       column-gap: 28px !important;
}

.hp_gap_c32 {
  -moz-column-gap: 32px !important;
       column-gap: 32px !important;
}

.hp_gap_c36 {
  -moz-column-gap: 36px !important;
       column-gap: 36px !important;
}

.hp_gap_c40 {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.hp_gap_c44 {
  -moz-column-gap: 44px !important;
       column-gap: 44px !important;
}

.hp_gap_c48 {
  -moz-column-gap: 48px !important;
       column-gap: 48px !important;
}

.hp_gap_c52 {
  -moz-column-gap: 52px !important;
       column-gap: 52px !important;
}

.hp_gap_c56 {
  -moz-column-gap: 56px !important;
       column-gap: 56px !important;
}

.hp_gap_c60 {
  -moz-column-gap: 60px !important;
       column-gap: 60px !important;
}

/* flex or grid | row-gap （4の倍数） */
.hp_gap_r0 {
  row-gap: 0px !important;
}

.hp_gap_r4 {
  row-gap: 4px !important;
}

.hp_gap_r8 {
  row-gap: 8px !important;
}

.hp_gap_r12 {
  row-gap: 12px !important;
}

.hp_gap_r16 {
  row-gap: 16px !important;
}

.hp_gap_r20 {
  row-gap: 20px !important;
}

.hp_gap_r24 {
  row-gap: 24px !important;
}

.hp_gap_r28 {
  row-gap: 28px !important;
}

.hp_gap_r32 {
  row-gap: 32px !important;
}

.hp_gap_r36 {
  row-gap: 36px !important;
}

.hp_gap_r40 {
  row-gap: 40px !important;
}

.hp_gap_r44 {
  row-gap: 44px !important;
}

.hp_gap_r48 {
  row-gap: 48px !important;
}

.hp_gap_r52 {
  row-gap: 52px !important;
}

.hp_gap_r56 {
  row-gap: 56px !important;
}

.hp_gap_r60 {
  row-gap: 60px !important;
}

/* width（%）（5の倍数） */
.hp_w05 {
  width: 5% !important;
}

.hp_w10 {
  width: 10% !important;
}

.hp_w15 {
  width: 15% !important;
}

.hp_w20 {
  width: 20% !important;
}

.hp_w25 {
  width: 25% !important;
}

.hp_w30 {
  width: 30% !important;
}

.hp_w35 {
  width: 35% !important;
}

.hp_w40 {
  width: 40% !important;
}

.hp_w45 {
  width: 45% !important;
}

.hp_w50 {
  width: 50% !important;
}

.hp_w55 {
  width: 55% !important;
}

.hp_w60 {
  width: 60% !important;
}

.hp_w65 {
  width: 65% !important;
}

.hp_w70 {
  width: 70% !important;
}

.hp_w75 {
  width: 75% !important;
}

.hp_w80 {
  width: 80% !important;
}

.hp_w85 {
  width: 85% !important;
}

.hp_w90 {
  width: 90% !important;
}

.hp_w95 {
  width: 95% !important;
}

.hp_w100 {
  width: 100% !important;
}

/* 余白は4の倍数 */
/* padding (top + right + bottom + left) */
.hp_pd0 {
  padding: 0px !important;
}

.hp_pd4 {
  padding: 4px !important;
}

.hp_pd8 {
  padding: 8px !important;
}

.hp_pd12 {
  padding: 12px !important;
}

.hp_pd16 {
  padding: 16px !important;
}

.hp_pd20 {
  padding: 20px !important;
}

.hp_pd24 {
  padding: 24px !important;
}

.hp_pd28 {
  padding: 28px !important;
}

.hp_pd32 {
  padding: 32px !important;
}

.hp_pd36 {
  padding: 36px !important;
}

.hp_pd40 {
  padding: 40px !important;
}

.hp_pd44 {
  padding: 44px !important;
}

.hp_pd48 {
  padding: 48px !important;
}

.hp_pd52 {
  padding: 52px !important;
}

.hp_pd56 {
  padding: 56px !important;
}

.hp_pd60 {
  padding: 60px !important;
}

.hp_pd64 {
  padding: 64px !important;
}

.hp_pd68 {
  padding: 68px !important;
}

.hp_pd72 {
  padding: 72px !important;
}

.hp_pd76 {
  padding: 76px !important;
}

.hp_pd80 {
  padding: 80px !important;
}

/* padding (top + bottom) */
.hp_pdtb0 {
  padding-block: 0 !important;
}

.hp_pdtb4 {
  padding-block: 4px !important;
}

.hp_pdtb8 {
  padding-block: 8px !important;
}

.hp_pdtb12 {
  padding-block: 12px !important;
}

.hp_pdtb16 {
  padding-block: 16px !important;
}

.hp_pdtb20 {
  padding-block: 20px !important;
}

.hp_pdtb24 {
  padding-block: 24px !important;
}

.hp_pdtb28 {
  padding-block: 28px !important;
}

.hp_pdtb32 {
  padding-block: 32px !important;
}

.hp_pdtb36 {
  padding-block: 36px !important;
}

.hp_pdtb40 {
  padding-block: 40px !important;
}

.hp_pdtb44 {
  padding-block: 44px !important;
}

.hp_pdtb48 {
  padding-block: 48px !important;
}

.hp_pdtb52 {
  padding-block: 52px !important;
}

.hp_pdtb56 {
  padding-block: 56px !important;
}

.hp_pdtb60 {
  padding-block: 60px !important;
}

.hp_pdtb64 {
  padding-block: 64px !important;
}

.hp_pdtb68 {
  padding-block: 68px !important;
}

.hp_pdtb72 {
  padding-block: 72px !important;
}

.hp_pdtb76 {
  padding-block: 76px !important;
}

.hp_pdtb80 {
  padding-block: 80px !important;
}

/* padding (right + left) */
.hp_pdrl0 {
  padding-inline: 0 !important;
}

.hp_pdrl4 {
  padding-inline: 4px !important;
}

.hp_pdrl8 {
  padding-inline: 8px !important;
}

.hp_pdrl12 {
  padding-inline: 12px !important;
}

.hp_pdrl16 {
  padding-inline: 16px !important;
}

.hp_pdrl20 {
  padding-inline: 20px !important;
}

.hp_pdrl24 {
  padding-inline: 24px !important;
}

.hp_pdrl28 {
  padding-inline: 28px !important;
}

.hp_pdrl32 {
  padding-inline: 32px !important;
}

.hp_pdrl36 {
  padding-inline: 36px !important;
}

.hp_pdrl40 {
  padding-inline: 40px !important;
}

.hp_pdrl44 {
  padding-inline: 44px !important;
}

.hp_pdrl48 {
  padding-inline: 48px !important;
}

.hp_pdrl52 {
  padding-inline: 52px !important;
}

.hp_pdrl56 {
  padding-inline: 56px !important;
}

.hp_pdrl60 {
  padding-inline: 60px !important;
}

.hp_pdrl64 {
  padding-inline: 64px !important;
}

.hp_pdrl68 {
  padding-inline: 68px !important;
}

.hp_pdrl72 {
  padding-inline: 72px !important;
}

.hp_pdrl76 {
  padding-inline: 76px !important;
}

.hp_pdrl80 {
  padding-inline: 80px !important;
}

/* padding (top) */
.hp_pdt0 {
  padding-top: 0 !important;
}

.hp_pdt4 {
  padding-top: 4px !important;
}

.hp_pdt8 {
  padding-top: 8px !important;
}

.hp_pdt12 {
  padding-top: 12px !important;
}

.hp_pdt16 {
  padding-top: 16px !important;
}

.hp_pdt20 {
  padding-top: 20px !important;
}

.hp_pdt24 {
  padding-top: 24px !important;
}

.hp_pdt28 {
  padding-top: 28px !important;
}

.hp_pdt32 {
  padding-top: 32px !important;
}

.hp_pdt36 {
  padding-top: 36px !important;
}

.hp_pdt40 {
  padding-top: 40px !important;
}

.hp_pdt44 {
  padding-top: 44px !important;
}

.hp_pdt48 {
  padding-top: 48px !important;
}

.hp_pdt52 {
  padding-top: 52px !important;
}

.hp_pdt56 {
  padding-top: 56px !important;
}

.hp_pdt60 {
  padding-top: 60px !important;
}

.hp_pdt64 {
  padding-top: 64px !important;
}

.hp_pdt68 {
  padding-top: 68px !important;
}

.hp_pdt72 {
  padding-top: 72px !important;
}

.hp_pdt76 {
  padding-top: 76px !important;
}

.hp_pdt80 {
  padding-top: 80px !important;
}

/* padding (right) */
.hp_pdr0 {
  padding-right: 0 !important;
}

.hp_pdr4 {
  padding-right: 4px !important;
}

.hp_pdr8 {
  padding-right: 8px !important;
}

.hp_pdr12 {
  padding-right: 12px !important;
}

.hp_pdr16 {
  padding-right: 16px !important;
}

.hp_pdr20 {
  padding-right: 20px !important;
}

.hp_pdr24 {
  padding-right: 24px !important;
}

.hp_pdr28 {
  padding-right: 28px !important;
}

.hp_pdr32 {
  padding-right: 32px !important;
}

.hp_pdr36 {
  padding-right: 36px !important;
}

.hp_pdr40 {
  padding-right: 40px !important;
}

.hp_pdr44 {
  padding-right: 44px !important;
}

.hp_pdr48 {
  padding-right: 48px !important;
}

.hp_pdr52 {
  padding-right: 52px !important;
}

.hp_pdr56 {
  padding-right: 56px !important;
}

.hp_pdr60 {
  padding-right: 60px !important;
}

.hp_pdr64 {
  padding-right: 64px !important;
}

.hp_pdr68 {
  padding-right: 68px !important;
}

.hp_pdr72 {
  padding-right: 72px !important;
}

.hp_pdr76 {
  padding-right: 76px !important;
}

.hp_pdr80 {
  padding-right: 80px !important;
}

/* padding (bottom) */
.hp_pdb0 {
  padding-bottom: 0 !important;
}

.hp_pdb4 {
  padding-bottom: 4px !important;
}

.hp_pdb8 {
  padding-bottom: 8px !important;
}

.hp_pdb12 {
  padding-bottom: 12px !important;
}

.hp_pdb16 {
  padding-bottom: 16px !important;
}

.hp_pdb20 {
  padding-bottom: 20px !important;
}

.hp_pdb24 {
  padding-bottom: 24px !important;
}

.hp_pdb28 {
  padding-bottom: 28px !important;
}

.hp_pdb32 {
  padding-bottom: 32px !important;
}

.hp_pdb36 {
  padding-bottom: 36px !important;
}

.hp_pdb40 {
  padding-bottom: 40px !important;
}

.hp_pdb44 {
  padding-bottom: 44px !important;
}

.hp_pdb48 {
  padding-bottom: 48px !important;
}

.hp_pdb52 {
  padding-bottom: 52px !important;
}

.hp_pdb56 {
  padding-bottom: 56px !important;
}

.hp_pdb60 {
  padding-bottom: 60px !important;
}

.hp_pdb64 {
  padding-bottom: 64px !important;
}

.hp_pdb68 {
  padding-bottom: 68px !important;
}

.hp_pdb72 {
  padding-bottom: 72px !important;
}

.hp_pdb76 {
  padding-bottom: 76px !important;
}

.hp_pdb80 {
  padding-bottom: 80px !important;
}

/* padding (left) */
.hp_pdl0 {
  padding-left: 0 !important;
}

.hp_pdl4 {
  padding-left: 4px !important;
}

.hp_pdl8 {
  padding-left: 8px !important;
}

.hp_pdl12 {
  padding-left: 12px !important;
}

.hp_pdl16 {
  padding-left: 16px !important;
}

.hp_pdl20 {
  padding-left: 20px !important;
}

.hp_pdl24 {
  padding-left: 24px !important;
}

.hp_pdl28 {
  padding-left: 28px !important;
}

.hp_pdl32 {
  padding-left: 32px !important;
}

.hp_pdl36 {
  padding-left: 36px !important;
}

.hp_pdl40 {
  padding-left: 40px !important;
}

.hp_pdl44 {
  padding-left: 44px !important;
}

.hp_pdl48 {
  padding-left: 48px !important;
}

.hp_pdl52 {
  padding-left: 52px !important;
}

.hp_pdl56 {
  padding-left: 56px !important;
}

.hp_pdl60 {
  padding-left: 60px !important;
}

.hp_pdl64 {
  padding-left: 64px !important;
}

.hp_pdl68 {
  padding-left: 68px !important;
}

.hp_pdl72 {
  padding-left: 72px !important;
}

.hp_pdl76 {
  padding-left: 76px !important;
}

.hp_pdl80 {
  padding-left: 80px !important;
}

/* margin (top + right + bottom + left) */
.hp_mg0 {
  margin: 0 !important;
}

.hp_mg4 {
  margin: 4px !important;
}

.hp_mg8 {
  margin: 8px !important;
}

.hp_mg12 {
  margin: 12px !important;
}

.hp_mg16 {
  margin: 16px !important;
}

.hp_mg20 {
  margin: 20px !important;
}

.hp_mg24 {
  margin: 24px !important;
}

.hp_mg28 {
  margin: 28px !important;
}

.hp_mg32 {
  margin: 32px !important;
}

.hp_mg36 {
  margin: 36px !important;
}

.hp_mg40 {
  margin: 40px !important;
}

.hp_mg44 {
  margin: 44px !important;
}

.hp_mg48 {
  margin: 48px !important;
}

.hp_mg52 {
  margin: 52px !important;
}

.hp_mg56 {
  margin: 56px !important;
}

.hp_mg60 {
  margin: 60px !important;
}

.hp_mg64 {
  margin: 64px !important;
}

.hp_mg68 {
  margin: 68px !important;
}

.hp_mg72 {
  margin: 72px !important;
}

.hp_mg76 {
  margin: 76px !important;
}

.hp_mg80 {
  margin: 80px !important;
}

/* margin (top + bottom) */
.hp_mgtb0 {
  margin-block: 0 !important;
}

.hp_mgtb4 {
  margin-block: 4px !important;
}

.hp_mgtb8 {
  margin-block: 8px !important;
}

.hp_mgtb12 {
  margin-block: 12px !important;
}

.hp_mgtb16 {
  margin-block: 16px !important;
}

.hp_mgtb20 {
  margin-block: 20px !important;
}

.hp_mgtb24 {
  margin-block: 24px !important;
}

.hp_mgtb28 {
  margin-block: 28px !important;
}

.hp_mgtb32 {
  margin-block: 32px !important;
}

.hp_mgtb36 {
  margin-block: 36px !important;
}

.hp_mgtb40 {
  margin-block: 40px !important;
}

.hp_mgtb44 {
  margin-block: 44px !important;
}

.hp_mgtb48 {
  margin-block: 48px !important;
}

.hp_mgtb52 {
  margin-block: 52px !important;
}

.hp_mgtb56 {
  margin-block: 56px !important;
}

.hp_mgtb60 {
  margin-block: 60px !important;
}

.hp_mgtb64 {
  margin-block: 64px !important;
}

.hp_mgtb68 {
  margin-block: 68px !important;
}

.hp_mgtb72 {
  margin-block: 72px !important;
}

.hp_mgtb76 {
  margin-block: 76px !important;
}

.hp_mgtb80 {
  margin-block: 80px !important;
}

/* margin (left + right) */
.hp_mgrl0 {
  margin-inline: 0 !important;
}

.hp_mgrl4 {
  margin-inline: 4px !important;
}

.hp_mgrl8 {
  margin-inline: 8px !important;
}

.hp_mgrl12 {
  margin-inline: 12px !important;
}

.hp_mgrl16 {
  margin-inline: 16px !important;
}

.hp_mgrl20 {
  margin-inline: 20px !important;
}

.hp_mgrl24 {
  margin-inline: 24px !important;
}

.hp_mgrl28 {
  margin-inline: 28px !important;
}

.hp_mgrl32 {
  margin-inline: 32px !important;
}

.hp_mgrl36 {
  margin-inline: 36px !important;
}

.hp_mgrl40 {
  margin-inline: 40px !important;
}

.hp_mgrl44 {
  margin-inline: 44px !important;
}

.hp_mgrl48 {
  margin-inline: 48px !important;
}

.hp_mgrl52 {
  margin-inline: 52px !important;
}

.hp_mgrl56 {
  margin-inline: 56px !important;
}

.hp_mgrl60 {
  margin-inline: 60px !important;
}

.hp_mgrl64 {
  margin-inline: 64px !important;
}

.hp_mgrl68 {
  margin-inline: 68px !important;
}

.hp_mgrl72 {
  margin-inline: 72px !important;
}

.hp_mgrl76 {
  margin-inline: 76px !important;
}

.hp_mgrl80 {
  margin-inline: 80px !important;
}

/* margin (top) */
.hp_mgt0 {
  margin-top: 0 !important;
}

.hp_mgt4 {
  margin-top: 4px !important;
}

.hp_mgt8 {
  margin-top: 8px !important;
}

.hp_mgt12 {
  margin-top: 12px !important;
}

.hp_mgt16 {
  margin-top: 16px !important;
}

.hp_mgt20 {
  margin-top: 20px !important;
}

.hp_mgt24 {
  margin-top: 24px !important;
}

.hp_mgt28 {
  margin-top: 28px !important;
}

.hp_mgt32 {
  margin-top: 32px !important;
}

.hp_mgt36 {
  margin-top: 36px !important;
}

.hp_mgt40 {
  margin-top: 40px !important;
}

.hp_mgt44 {
  margin-top: 44px !important;
}

.hp_mgt48 {
  margin-top: 48px !important;
}

.hp_mgt52 {
  margin-top: 52px !important;
}

.hp_mgt56 {
  margin-top: 56px !important;
}

.hp_mgt60 {
  margin-top: 60px !important;
}

.hp_mgt64 {
  margin-top: 64px !important;
}

.hp_mgt68 {
  margin-top: 68px !important;
}

.hp_mgt72 {
  margin-top: 72px !important;
}

.hp_mgt76 {
  margin-top: 76px !important;
}

.hp_mgt80 {
  margin-top: 80px !important;
}

/* margin (right) */
.hp_mgr0 {
  margin-right: 0 !important;
}

.hp_mgr4 {
  margin-right: 4px !important;
}

.hp_mgr8 {
  margin-right: 8px !important;
}

.hp_mgr12 {
  margin-right: 12px !important;
}

.hp_mgr16 {
  margin-right: 16px !important;
}

.hp_mgr20 {
  margin-right: 20px !important;
}

.hp_mgr24 {
  margin-right: 24px !important;
}

.hp_mgr28 {
  margin-right: 28px !important;
}

.hp_mgr32 {
  margin-right: 32px !important;
}

.hp_mgr36 {
  margin-right: 36px !important;
}

.hp_mgr40 {
  margin-right: 40px !important;
}

.hp_mgr44 {
  margin-right: 44px !important;
}

.hp_mgr48 {
  margin-right: 48px !important;
}

.hp_mgr52 {
  margin-right: 52px !important;
}

.hp_mgr56 {
  margin-right: 56px !important;
}

.hp_mgr60 {
  margin-right: 60px !important;
}

.hp_mgr64 {
  margin-right: 64px !important;
}

.hp_mgr68 {
  margin-right: 68px !important;
}

.hp_mgr72 {
  margin-right: 72px !important;
}

.hp_mgr76 {
  margin-right: 76px !important;
}

.hp_mgr80 {
  margin-right: 80px !important;
}

/* margin (bottom) */
.hp_mgb0 {
  margin-bottom: 0 !important;
}

.hp_mgb4 {
  margin-bottom: 4px !important;
}

.hp_mgb8 {
  margin-bottom: 8px !important;
}

.hp_mgb12 {
  margin-bottom: 12px !important;
}

.hp_mgb16 {
  margin-bottom: 16px !important;
}

.hp_mgb20 {
  margin-bottom: 20px !important;
}

.hp_mgb24 {
  margin-bottom: 24px !important;
}

.hp_mgb28 {
  margin-bottom: 28px !important;
}

.hp_mgb32 {
  margin-bottom: 32px !important;
}

.hp_mgb36 {
  margin-bottom: 36px !important;
}

.hp_mgb40 {
  margin-bottom: 40px !important;
}

.hp_mgb44 {
  margin-bottom: 44px !important;
}

.hp_mgb48 {
  margin-bottom: 48px !important;
}

.hp_mgb52 {
  margin-bottom: 52px !important;
}

.hp_mgb56 {
  margin-bottom: 56px !important;
}

.hp_mgb60 {
  margin-bottom: 60px !important;
}

.hp_mgb64 {
  margin-bottom: 64px !important;
}

.hp_mgb68 {
  margin-bottom: 68px !important;
}

.hp_mgb72 {
  margin-bottom: 72px !important;
}

.hp_mgb76 {
  margin-bottom: 76px !important;
}

.hp_mgb80 {
  margin-bottom: 80px !important;
}

/* margin (left) */
.hp_mgl0 {
  margin-left: 0 !important;
}

.hp_mgl4 {
  margin-left: 4px !important;
}

.hp_mgl8 {
  margin-left: 8px !important;
}

.hp_mgl12 {
  margin-left: 12px !important;
}

.hp_mgl16 {
  margin-left: 16px !important;
}

.hp_mgl20 {
  margin-left: 20px !important;
}

.hp_mgl24 {
  margin-left: 24px !important;
}

.hp_mgl28 {
  margin-left: 28px !important;
}

.hp_mgl32 {
  margin-left: 32px !important;
}

.hp_mgl36 {
  margin-left: 36px !important;
}

.hp_mgl40 {
  margin-left: 40px !important;
}

.hp_mgl44 {
  margin-left: 44px !important;
}

.hp_mgl48 {
  margin-left: 48px !important;
}

.hp_mgl52 {
  margin-left: 52px !important;
}

.hp_mgl56 {
  margin-left: 56px !important;
}

.hp_mgl60 {
  margin-left: 60px !important;
}

.hp_mgl64 {
  margin-left: 64px !important;
}

.hp_mgl68 {
  margin-left: 68px !important;
}

.hp_mgl72 {
  margin-left: 72px !important;
}

.hp_mgl76 {
  margin-left: 76px !important;
}

.hp_mgl80 {
  margin-left: 80px !important;
}

/* border */
.hp_borderRadius0 {
  border-radius: 0 !important;
}

/* Float */
.hp_floatLeft {
  float: left !important;
}

.hp_floatRight {
  float: right !important;
}

.hp_clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* TEL */
.hp_telRestricted[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (hover: none) and (pointer: coarse) {
  .hp_telRestricted[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* color */
.hp_red {
  color: var(--red) !important;
}

/*----------------------------------------
  スクリーンリーダー専用表示
----------------------------------------*/
.a11y_srOnly {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*----------------------------------------
  スキップリンク
----------------------------------------*/
.a11y_skip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  color: var(--color-text);
  background: var(--color-background);
  padding: 8px 16px;
  transform: translateY(-120%);
  transition: transform 0.3s ease-out;
}
.a11y_skip:focus {
  transform: translateY(0);
}

/*----------------------------------------
  キーボードフォーカス強調
----------------------------------------*/
:focus-visible {
  outline: 3px solid var(--focus-outline-color);
  outline-offset: 3px;
}

.splide :focus-visible {
  outline: 3px solid var(--focus-outline-color) !important;
  outline-offset: -3px;
}

/*----------------------------------------
  prefers-reduced-motion 対応
----------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*----------------------------------------
  tabindex="-1" が付いている要素がフォーカスされた時、枠線を消す
----------------------------------------*/
[tabindex="-1"]:focus {
  outline: none !important;
}

/*----------------------------------------
  edit_btn 公開まで非表示
----------------------------------------*/
#edit_btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(68, 68, 68, 0.7);
  z-index: 1000;
}
#edit_btn_inner {
  padding: 5px 10px;
  margin: 0 auto;
}
#edit_btn a {
  color: #333;
  font-size: 13px;
  border-radius: 4px;
  display: block;
  float: right;
  font-weight: bold;
  margin: 5px 0 5px 5px;
  padding: 3px 15px 4px;
  text-decoration: none;
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(238, 238, 238) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff,endColorstr=#ffeeeeee,GradientType=0)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ffeeeeee, GradientType=0);
}
@media (hover: hover) {
  #edit_btn a:hover {
    background-image: linear-gradient(180deg, rgb(238, 238, 238) 0%, rgb(255, 255, 255) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffeeeeee,endColorstr=#ffffffff,GradientType=0)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffeeeeee, endColorstr=#ffffffff, GradientType=0);
  }
}

/* noscript */
.noscript {
  text-align: center;
  font-size: 80%;
  padding: 5px;
  background: #ececec;
}

.ly_container {
  position: relative;
  height: 100%;
  min-height: var(--vh);
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 52px;
  padding-block: 4px;
  display: grid;
  place-items: center;
  background-color: var(--white);
}
@media screen and (min-width: 992px) {
  .ly_header {
    height: auto;
    min-height: 80px;
    padding-block: 16px;
  }
}
.ly_header_inner {
  width: calc(100% - 24px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media screen and (min-width: 992px) {
  .ly_header_inner {
    width: calc(100% - 40px);
    gap: 0 20px;
  }
}
.ly_header_content {
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .ly_header_content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }
}
.ly_header_logo {
  max-width: 245px;
}
@media screen and (min-width: 992px) {
  .ly_header_logo {
    width: 30.1846591%;
    max-width: 425px;
  }
}
.ly_header_logo > a {
  display: block;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .ly_header_logo > a:hover {
    opacity: 0.7;
  }
}
.ly_header_logo > a img {
  display: block;
  width: 100%;
}
.ly_header_btnUnit {
  display: none;
}
@media screen and (min-width: 992px) {
  .ly_header_btnUnit {
    display: block;
    margin-left: 16px;
  }
}
.ly_header_btn {
  display: block;
  padding: 8px 16px;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--blue);
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}
@media (hover: hover) {
  .ly_header_btn:hover {
    color: var(--black);
    background-color: var(--hover-btn);
  }
}

.ly_headerNav {
  display: none;
}
@media screen and (min-width: 992px) {
  .ly_headerNav {
    display: block;
  }
}
.ly_headerNav_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (min-width: 1280px) {
  .ly_headerNav_list {
    gap: 10px 32px;
  }
}
.ly_headerNav_list > li > a {
  position: relative;
  display: block;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}
.ly_headerNav_list > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
  transform-origin: left;
}
@media (hover: hover) {
  .ly_headerNav_list > li > a:hover::after {
    transform: scaleX(1);
  }
}
.ly_headerNav_list > li > a.is_current::after {
  transform: scaleX(1);
}

.ly_headerSearch {
  display: none;
}
@media screen and (min-width: 992px) {
  .ly_headerSearch {
    display: block;
    position: relative;
    margin-left: 16px;
  }
}
.ly_headerSearch_input {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--green);
  border-radius: 20px;
  outline: none;
  background-color: #fff;
  color: var(--black);
  transition: all 0.3s ease-out;
  cursor: pointer;
}
@media (hover: hover) {
  .ly_headerSearch_input:hover + .ly_headerSearch_icon {
    border-color: var(--green);
  }
}
.ly_headerSearch_input:focus {
  width: 180px;
  padding: 10px 50px 10px 20px;
}
.ly_headerSearch_input:focus + .ly_headerSearch_icon {
  background-color: var(--green);
}
.ly_headerSearch_input:focus + .ly_headerSearch_icon::before {
  background-image: url("/image/icon/icon-search-white.svg");
}
.ly_headerSearch_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.ly_headerSearch_icon img {
  display: block;
  width: 100%;
}
.ly_headerSearch_icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url("/image/icon/icon-search.svg") no-repeat center;
  background-size: 100% 100%;
}

.ly_menuToggle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 992px) {
  .ly_menuToggle {
    display: none;
  }
}
.ly_menuToggle > .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 1px;
  background-color: var(--blue);
}
.ly_menuToggle > .line:nth-of-type(1) {
  transform: translate3d(-50%, -8px, 0);
}
.ly_menuToggle > .line:nth-of-type(2) {
  transform: translate3d(-50%, 0, 0);
}
.ly_menuToggle > .line:nth-of-type(3) {
  transform: translate3d(-50%, 8px, 0);
}

.ly_menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .ly_menu {
    display: none;
  }
}
.ly_menu.is_menuOpen {
  will-change: visibility, opacity;
  visibility: visible;
  opacity: 1;
}
.ly_menu_logo {
  max-width: 245px;
}
.ly_menu_logo > a {
  display: block;
}
.ly_menu_logo > a img {
  display: block;
  width: 100%;
}
.ly_menu_close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.ly_menu_close > .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 1px;
  background-color: var(--white);
}
.ly_menu_close > .line:nth-of-type(1) {
  transform: translate3d(-50%, 0, 0) rotate(45deg);
}
.ly_menu_close > .line:nth-of-type(2) {
  transform: translate3d(-50%, 0, 0) rotate(-45deg);
}

.ly_menuHead {
  width: 100%;
  height: 52px;
  padding-block: 4px;
  display: grid;
  place-items: center;
}
.ly_menuHead_inner {
  width: calc(100% - 24px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.ly_menuBody {
  margin-top: 40px;
  padding-bottom: 20px;
  flex: 1;
}
.ly_menuBody_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}

.ly_menuNavUnit {
  margin-top: 40px;
}

.ly_menuNav_list:first-child .ly_menuNav_item {
  border-top: 1px solid #335495;
}
.ly_menuNav_item {
  border-bottom: 1px solid #335495;
}
.ly_menuNav_item.is_open .ly_menuNav_header::before {
  transform: translateY(-50%) rotate(90deg);
}
.ly_menuNav_header {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 30px 8px 8px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.ly_menuNav_header::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 5px;
  height: 8px;
  background: url("/image/icon/icon-arrow-white.svg") no-repeat center;
  background-size: 100% 100%;
  transition: transform 0.3s ease-out;
}

button.ly_menuNav_header {
  padding-right: 50px;
}
button.ly_menuNav_header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: #335495;
}

.ly_menuNavLv2_list {
  margin-left: 1em;
}
.ly_menuNavLv2_list:first-child .ly_menuNavLv2_item {
  border-top: 1px dashed #335495;
}
.ly_menuNavLv2_list:last-child .ly_menuNavLv2_item {
  border-bottom: none;
}
.ly_menuNavLv2_item {
  border-bottom: 1px dashed #335495;
}
.ly_menuNavLv2_item.is_open .ly_menuNavLv2_header::before {
  transform: translateY(-50%) rotate(90deg);
}
.ly_menuNavLv2_header {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 30px 8px 8px;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.ly_menuNavLv2_header::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--white);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.ly_main {
  position: relative;
  overflow: clip;
  flex-shrink: 0;
  margin-top: 52px;
}
@media screen and (min-width: 992px) {
  .ly_main {
    margin-top: 80px;
  }
}

.ly_footer {
  padding-top: 74px;
  border-top: 1px solid var(--gray);
}
.ly_footer_wrap {
  position: relative;
  margin-top: auto;
  padding-top: 150px;
}
.ly_footer_centered {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .ly_footer_centered {
    width: calc(100% - 40px);
  }
}
.ly_footer_column {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (min-width: 992px) {
  .ly_footer_column {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ly_footer_content {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .ly_footer_content {
    text-align: left;
  }
}
.ly_footer_siteLogo {
  display: block;
  font-weight: 700;
  transition: opacity 0.3s ease-out;
  font-size: 1.25rem;
  line-height: 1.45;
}
@media (hover: hover) {
  .ly_footer_siteLogo:hover {
    opacity: 0.7;
  }
}
.ly_footer_address {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .ly_footer_address {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.8125;
  }
}
.ly_footer_symbol {
  max-width: 114px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .ly_footer_symbol {
    max-width: 132px;
    margin-inline: 0;
  }
}
.ly_footer_symbol img {
  display: block;
  width: 100%;
}
.ly_footer_copyright {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  padding-block: 16px;
  background-color: var(--blue);
}
@media screen and (min-width: 992px) {
  .ly_footer_copyright {
    margin-top: 24px;
  }
}
.ly_footer_copyright .copyright {
  display: block;
  text-align: center;
  width: calc(100% - 24px);
  max-width: 1200px;
  margin-inline: auto;
  color: var(--white);
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 992px) {
  .ly_footer_copyright .copyright {
    width: calc(100% - 40px);
    text-align: right;
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.ly_footerNav {
  margin-top: 28px;
}
.ly_footerNav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
}
@media screen and (min-width: 992px) {
  .ly_footerNav_list {
    justify-content: flex-start;
  }
}
.ly_footerNav_list > li {
  position: relative;
}
.ly_footerNav_list > li:not(:last-child) {
  margin-right: 16px;
  padding-right: 16px;
}
.ly_footerNav_list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: var(--black);
}
.ly_footerNav_list > li > a {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}
@media (hover: hover) {
  .ly_footerNav_list > li > a:hover {
    text-decoration: underline;
  }
}

.ly_centered {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}

.ly_pageTop {
  position: absolute;
  bottom: calc(100% - 150px);
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}
.ly_pageTop > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px 0;
  width: 100px;
  height: 100px;
  padding-bottom: 12px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-weight: 500;
  transition: opacity 0.3s ease-out;
  font-size: 0.75rem;
  line-height: 1.5;
}
.ly_pageTop > a::before {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-color: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
@media (hover: hover) {
  .ly_pageTop > a:hover {
    opacity: 0.7;
  }
}

.bl_box {
  border-radius: 10px;
  padding: 12px;
  background-color: var(--beige02);
}
@media screen and (min-width: 992px) {
  .bl_box {
    padding: 20px;
  }
}

.bl_pageHead {
  width: 100%;
  min-height: 80px;
  padding-block: 20px;
  background-color: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  border-bottom: 7px solid var(--green);
}
@media screen and (min-width: 992px) {
  .bl_pageHead {
    min-height: 120px;
  }
}
.bl_pageHead_inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}

.bl_pageBody {
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .bl_pageBody {
    padding-top: 60px;
  }
}

.bl_pageMv {
  position: relative;
  height: 32vw;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 992px) {
  .bl_pageMv {
    height: 31.9444444vw;
    max-height: 480px;
  }
}
.bl_pageMv_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bl_pageMv_bg img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/120;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.bl_pageMv_cont {
  position: relative;
}
.bl_pageMv_ttl {
  text-align: center;
  color: var(--white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4583333333;
}
@media screen and (min-width: 992px) {
  .bl_pageMv_ttl {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}

.bl_breadcrumb {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 8px auto;
}
.bl_breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
}
.bl_breadcrumb_list > li {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
}
.bl_breadcrumb_list > li:not(:first-child)::before {
  display: inline-block;
  content: "＞";
  margin: 0 1em;
  font-size: 0.625rem;
  line-height: 1;
}
@media (hover: hover) {
  .bl_breadcrumb_list > li > a:hover {
    text-decoration: underline;
  }
}

.bl_formMassage {
  padding: 10px 15px;
  color: #aa0808;
  border: 2px solid #aa0808;
  background-color: #fffaca;
  margin: 10px auto;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
}

.bl_form_required {
  display: inline-block;
  padding: 4px 10px;
  color: var(--white);
  background-color: #aa0808;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl_form_note {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
}
.bl_form_fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.bl_form_fieldset legend {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.bl_form_privacy {
  width: calc(100% - 40px);
  max-width: 880px;
  margin: 40px auto 0;
  padding: 30px 20px;
  background-color: var(--beige);
  border: 1px solid var(--beige);
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .bl_form_privacy {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 20px;
  }
}
.bl_form_privacy .ttl {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 13px;
}
@media screen and (min-width: 992px) {
  .bl_form_privacy .ttl {
    flex: 1;
  }
}
@media screen and (min-width: 992px) {
  .bl_form_privacy .content {
    width: 68.1818182%;
  }
}
.bl_form_link {
  color: var(--link);
  text-decoration: underline;
  transition: color 0.3s ease-out;
}
@media (hover: hover) {
  .bl_form_link:hover {
    color: var(--blue);
  }
}
.bl_form .error {
  display: inline-block;
  margin-top: 8px;
  color: #aa0808;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
}

.bl_formList {
  width: calc(100% - 40px);
  max-width: 880px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .bl_formList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px 20px;
  }
}
.bl_formList dt {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 40px 0 13px 0;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .bl_formList dt {
    margin: 0;
    padding-top: 13px;
    width: calc(100% - 20px - 68.1818182%);
    min-height: 40px;
  }
}
.bl_formList dt:first-child {
  margin-top: 0;
}
.bl_formList dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .bl_formList dd {
    width: 68.1818182%;
    min-height: 40px;
  }
}
.bl_formList dd.bg_on {
  padding: 10px;
  border-radius: 10px;
  background-color: #f3f6f8;
  border: 2px solid #dfdfdf;
}
.bl_formList_wrap {
  margin-top: 50px;
  padding-block: 30px;
  border-radius: 20px;
  background-color: var(--beige02);
}
@media screen and (min-width: 992px) {
  .bl_formList_wrap {
    padding-block: 60px;
  }
}
.bl_formList__error {
  border-color: #aa0808;
  background-color: #fff7f7;
}
.bl_formList__error .bl_form_privacy {
  border: 2px solid #aa0808;
  background-color: #ffebeb;
}

.bl_formBtns {
  margin-top: 50px !important;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.bl_formBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  text-align: center;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 5px;
  padding: 8px 20px;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  font-size: 1rem;
  line-height: 1.6875;
}
@media (hover: hover) {
  .bl_formBtn:hover {
    color: var(--black);
    background-color: var(--hover-btn);
  }
}
.bl_formBtn__back {
  background-color: var(--gray);
  color: var(--black);
}
@media (hover: hover) {
  .bl_formBtn__back:hover {
    background-color: var(--hover-btn);
  }
}

.bl_media_inner {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (min-width: 992px) {
  .bl_media_inner {
    flex-direction: row;
    gap: 0 40px;
  }
}
.bl_media_imgWrap {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .bl_media_imgWrap {
    width: 36.3636364%;
  }
}
.bl_media_imgWrap img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 335/209;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  .bl_media_imgWrap img {
    aspect-ratio: 400/250;
  }
}
.bl_media_cont {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .bl_media_cont {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.bl_media_cont > :first-child {
  margin-top: 0 !important;
}
.bl_media_cont > :last-child {
  margin-bottom: 0 !important;
}
.bl_media_initials {
  position: absolute;
  z-index: -1;
}
.bl_media_ttl {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 992px) {
  .bl_media_ttl {
    margin-bottom: 30px;
    font-size: 1.6875rem;
    line-height: 1.4814814815;
  }
}
.bl_media_txt {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
}
@media screen and (min-width: 992px) {
  .bl_media_txt {
    height: 100%;
    font-size: 1.125rem;
    line-height: 2;
  }
}
@media screen and (min-width: 992px) {
  .bl_media__rev .bl_media_inner {
    flex-direction: row-reverse;
  }
}
.bl_media__w1100 {
  max-width: 1100px;
  margin-left: auto;
}
.bl_media__about .bl_media_initials {
  top: 14px;
  left: 0;
  width: 170px;
}
@media screen and (min-width: 992px) {
  .bl_media__about .bl_media_initials {
    top: 0;
    left: 0;
    width: 214px;
  }
}
.bl_media__service .bl_media_initials {
  top: 14px;
  left: 0;
  width: 140px;
}
@media screen and (min-width: 992px) {
  .bl_media__service .bl_media_initials {
    top: 0;
    width: 214px;
  }
}
.bl_media__work .bl_media_initials {
  top: 14px;
  left: 0;
  width: 170px;
}
@media screen and (min-width: 992px) {
  .bl_media__work .bl_media_initials {
    top: 0;
    width: 290px;
  }
}
.bl_media__recruit .bl_media_initials {
  top: 14px;
  left: 0;
  width: 130px;
}
@media screen and (min-width: 992px) {
  .bl_media__recruit .bl_media_initials {
    top: 5px;
    width: 188px;
  }
}
.bl_media__insights .bl_media_initials {
  top: 14px;
  left: 30px;
  width: 30px;
}
@media screen and (min-width: 992px) {
  .bl_media__insights .bl_media_initials {
    top: 5px;
    width: 188px;
  }
}
@media screen and (min-width: 992px) {
  .bl_media__imgSm .bl_media_imgWrap {
    width: 220px;
  }
}
.bl_media__imgSm .bl_media_imgWrap img {
  aspect-ratio: 220/256;
}
@media screen and (min-width: 992px) {
  .bl_media__imgSm .bl_media_imgWrap img {
    aspect-ratio: 220/256;
  }
}
.bl_media .el_btn_wrap {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .bl_media .el_btn_wrap {
    margin-top: 40px;
    justify-content: flex-end;
  }
}
.bl_media + .bl_media {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_media + .bl_media {
    margin-top: 80px;
  }
}

.bl_media02_inner {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
}
@media screen and (min-width: 992px) {
  .bl_media02_inner {
    flex-direction: row;
    gap: 0 65px;
  }
}
.bl_media02_imgWrap {
  max-width: 150px;
  margin-inline: auto;
}
.bl_media02_imgWrap img {
  display: block;
  width: 100%;
}
.bl_media02_cont {
  position: relative;
  flex: 1;
}
.bl_media02_cont > :first-child {
  margin-top: 0 !important;
}
.bl_media02_cont > :last-child {
  margin-bottom: 0 !important;
}
.bl_media02_ttl {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 992px) {
  .bl_media02_ttl {
    margin-bottom: 30px;
    font-size: 1.6875rem;
    line-height: 1.4814814815;
  }
}
.bl_media02_txt {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
}
@media screen and (min-width: 992px) {
  .bl_media02_txt {
    font-size: 1.125rem;
    line-height: 2;
  }
}
@media screen and (min-width: 992px) {
  .bl_media02__rev .bl_media02_inner {
    flex-direction: row-reverse;
  }
}
.bl_media02 + .bl_media02 {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_media02 + .bl_media02 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .bl_media02 .el_lv3Heading {
    margin-bottom: 40px;
  }
}

.bl_newsList {
  display: flex;
  flex-direction: column;
}
.bl_newsList > li {
  border-top: 1px dashed var(--gray);
}
.bl_newsList > li:last-child {
  border-bottom: 1px dashed var(--gray);
}

.bl_newsItem {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  padding: 12px 28px 12px 0;
}
@media screen and (min-width: 992px) {
  .bl_newsItem {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 30px;
    padding: 16px 42px 16px 16px;
  }
}
.bl_newsItem::after {
  content: "→";
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue);
  color: var(--white);
  font-size: 0.625rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .bl_newsItem::after {
    right: 16px;
    width: 22px;
    height: 22px;
  }
}
.bl_newsItem_head {
  display: flex;
  align-items: flex-start;
  gap: 0 12px;
}
.bl_newsItem_date {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 992px) {
  .bl_newsItem_date {
    font-size: 1rem;
    line-height: 1.625;
  }
}
.bl_newsItem_ttl {
  font-size: 0.9375rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .bl_newsItem_ttl {
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

a.bl_newsItem {
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  a.bl_newsItem:hover {
    opacity: 0.7;
  }
}

.bl_pager {
  width: calc(100% - 40px);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.bl_pager_wrap {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_pager_wrap {
    margin-top: 80px;
  }
}
.bl_pager_num > a,
.bl_pager_num > span {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: color 0.3s ease-out, background 0.3s ease-out;
  font-size: 1rem;
}
.bl_pager_num > a:hover {
  color: var(--white);
  background-color: var(--green);
  border-color: var(--green);
}
.bl_pager_num.is_current span {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.bl_pager_prev > a,
.bl_pager_prev > span, .bl_pager_next > a,
.bl_pager_next > span {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: background 0.3s ease-out;
}
.bl_pager_prev > a::before,
.bl_pager_prev > span::before, .bl_pager_next > a::before,
.bl_pager_next > span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(45deg);
  transition: border 0.3s ease-out;
}
.bl_pager_prev > a:hover, .bl_pager_next > a:hover {
  background-color: var(--green);
  border-color: var(--green);
}
.bl_pager_prev > a:hover::before, .bl_pager_next > a:hover::before {
  border-color: var(--white);
}
.bl_pager_prev > span, .bl_pager_next > span {
  background-color: #e9ebed;
  border-color: #e9ebed;
}
.bl_pager_prev > span::before, .bl_pager_next > span::before {
  opacity: 0.4;
}
.bl_pager_prev > a::before,
.bl_pager_prev > span::before {
  margin-left: 3px;
  transform: rotate(45deg) scale(-1);
}
.bl_pager_next > a::before,
.bl_pager_next > span::before {
  margin-right: 3px;
}
.bl_pager__left {
  justify-content: flex-start;
}

.el_homeHeading {
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .el_homeHeading {
    margin-bottom: 40px;
  }
}
.el_homeHeading .en {
  color: var(--olive);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .el_homeHeading .en {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}
.el_homeHeading .ja {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 992px) {
  .el_homeHeading .ja {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.el_homeHeading .ja::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--green) 0px, var(--green) max(20%, 34px), var(--gray) max(20%, 34px), var(--gray) 100%);
  flex: 1;
}
@media screen and (min-width: 992px) {
  .el_homeHeading .ja::after {
    background: linear-gradient(to right, var(--green) 0px, var(--green) max(6%, 70px), var(--gray) max(6%, 70px), var(--gray) 100%);
  }
}
.el_homeHeading__center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.el_homeLv3Heading {
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .el_homeLv3Heading {
    margin-bottom: 40px;
  }
}
.el_homeLv3Heading .en {
  color: var(--olive);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4230769231;
}
@media screen and (min-width: 992px) {
  .el_homeLv3Heading .en {
    font-size: 2.1875rem;
    line-height: 1.4571428571;
  }
}
.el_homeLv3Heading .ja {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 992px) {
  .el_homeLv3Heading .ja {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.el_homeLv3Heading__center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.el_pageHeading {
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .el_pageHeading {
    margin-bottom: 40px;
  }
}
.el_pageHeading .ja {
  color: var(--olive);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .el_pageHeading .ja {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}
.el_pageHeading .en {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 992px) {
  .el_pageHeading .en {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.el_pageHeading .en::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--green) 0px, var(--green) max(20%, 34px), var(--gray) max(20%, 34px), var(--gray) 100%);
  flex: 1;
}
@media screen and (min-width: 992px) {
  .el_pageHeading .en::after {
    background: linear-gradient(to right, var(--green) 0px, var(--green) max(6%, 70px), var(--gray) max(6%, 70px), var(--gray) 100%);
  }
}
.el_pageHeading__center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.el_pageLv3Heading {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.45;
}
@media screen and (min-width: 992px) {
  .el_pageLv3Heading {
    padding-bottom: 18px;
    font-size: 2.125rem;
    line-height: 1.4411764706;
  }
}

.el_lv1Heading {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4583333333;
}
@media screen and (min-width: 992px) {
  .el_lv1Heading {
    font-size: 2.625rem;
    line-height: 1.4523809524;
  }
}

.el_lv2Heading, .bl_richTxt h2 {
  position: relative;
  padding-left: 16px;
  margin-bottom: 28px;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.6363636364;
}
@media screen and (min-width: 992px) {
  .el_lv2Heading, .bl_richTxt h2 {
    padding-left: 24px;
    font-size: 2.375rem;
    line-height: 1.4473684211;
  }
}
.el_lv2Heading::before, .bl_richTxt h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.184em;
  left: 0;
  width: 4px;
  height: 100%;
  max-height: 28px;
  background-color: var(--green);
}
@media screen and (min-width: 992px) {
  .el_lv2Heading::before, .bl_richTxt h2::before {
    width: 5px;
    max-height: 42px;
  }
}

.el_lv3Heading, .bl_richTxt h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.45;
}
@media screen and (min-width: 992px) {
  .el_lv3Heading, .bl_richTxt h3 {
    padding-bottom: 18px;
    font-size: 2.125rem;
    line-height: 1.4411764706;
  }
}
.el_lv3Heading::before, .bl_richTxt h3::before, .el_lv3Heading::after, .bl_richTxt h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.el_lv3Heading::before, .bl_richTxt h3::before {
  width: 100%;
  background-color: var(--gray);
}
.el_lv3Heading::after, .bl_richTxt h3::after {
  width: 43px;
  background-color: var(--green);
}

.el_lv4Heading, .bl_richTxt h4 {
  padding-bottom: 8px;
  margin-bottom: 28px;
  border-bottom: 1px dashed var(--black);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}
@media screen and (min-width: 992px) {
  .el_lv4Heading, .bl_richTxt h4 {
    font-size: 1.875rem;
    line-height: 1.4666666667;
  }
}

.el_lv5Heading, .bl_richTxt h5 {
  margin-bottom: 26px;
  color: var(--green);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .el_lv5Heading, .bl_richTxt h5 {
    font-size: 1.625rem;
    line-height: 1.4230769231;
  }
}

.el_lv6Heading, .bl_richTxt h6 {
  margin-bottom: 26px;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .el_lv6Heading, .bl_richTxt h6 {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.el_link, .bl_richTxt a {
  position: relative;
  color: var(--link);
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .el_link:hover, .bl_richTxt a:hover {
    opacity: 0.7;
  }
}
.el_link_wrap {
  margin-top: 20px;
}
.el_link__map {
  padding-left: 30px;
}
.el_link__map::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 20px;
  background: url("/image/icon/icon-map.svg") no-repeat center;
  background-size: 100% 100%;
}

.el_linkIcon {
  position: relative;
}
.el_linkIcon__pdf, .el_linkIcon__excel, .el_linkIcon__word {
  padding-left: 1.75em;
}
.el_linkIcon__pdf::before, .el_linkIcon__excel::before, .el_linkIcon__word::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25em;
  height: 1.563em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.el_linkIcon__pdf::before {
  background-image: url("/image/icon/icon-pdf.svg");
}
.el_linkIcon__excel::before {
  background-image: url("/image/icon/icon-excel.svg");
}
.el_linkIcon__word::before {
  background-image: url("/image/icon/icon-word.svg");
}
.el_linkIcon__blank {
  padding-right: 1.5em;
}
.el_linkIcon__blank::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  right: 0;
  width: 1em;
  height: 1em;
  background: url("/image/icon/icon_external.svg") no-repeat center;
  background-size: 100% 100%;
}

.el_ul > li, .bl_richTxt ul > li {
  position: relative;
  padding-left: 1em;
}
.el_ul > li::before, .bl_richTxt ul > li::before {
  content: "・";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.el_ul > li + li, .bl_richTxt ul > li + li {
  margin-top: 8px;
}

.el_ol, .bl_richTxt ol {
  counter-reset: counter calc(var(--start, 1) - 1);
}
.el_ol > li, .bl_richTxt ol > li {
  position: relative;
  padding-left: 1.6em;
}
.el_ol > li::before, .bl_richTxt ol > li::before {
  content: counter(counter) ".";
  counter-increment: counter;
  position: absolute;
  top: 0;
  left: 0;
}
.el_ol > li + li, .bl_richTxt ol > li + li {
  margin-top: 8px;
}

.bl_table, .bl_richTxt table {
  width: 100%;
}
.bl_table tr:first-child th, .bl_richTxt table tr:first-child th, .bl_table tr:first-child td, .bl_richTxt table tr:first-child td {
  border-top: 1px solid var(--gray);
}
.bl_table th, .bl_richTxt table th, .bl_table td, .bl_richTxt table td {
  display: table-cell;
}
.bl_table th, .bl_richTxt table th {
  position: relative;
  min-width: 200px;
  padding: 12px 20px 12px 12px;
  text-align: left;
  font-weight: 500;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  vertical-align: center;
}
.bl_table th::before, .bl_richTxt table th::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(100% - 8px);
  height: calc(100% - 16px);
  background-color: var(--beige02);
}
.bl_table th::after, .bl_richTxt table th::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 24px);
  background-color: var(--gray);
}
.bl_table td, .bl_richTxt table td {
  position: relative;
  padding: 12px;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
}
.bl_table td::after, .bl_richTxt table td::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 24px);
  background-color: var(--gray);
}
.bl_table thead th:not(:first-child), .bl_richTxt table thead th:not(:first-child) {
  padding-inline: 20px;
}
.bl_table thead th:not(:first-child)::before, .bl_richTxt table thead th:not(:first-child)::before {
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
}
.bl_table thead th:last-child::before, .bl_richTxt table thead th:last-child::before {
  left: auto;
  right: 0;
  width: calc(100% - 8px);
  transform: translate(0, -50%);
}
.bl_table thead th:last-child::after, .bl_richTxt table thead th:last-child::after {
  content: none;
}
.bl_table tbody th, .bl_richTxt table tbody th {
  width: 18.3333333%;
}
.bl_table tbody td:not(:first-child), .bl_richTxt table tbody td:not(:first-child) {
  padding-inline: 20px;
}
.bl_table tbody td:last-child::after, .bl_richTxt table tbody td:last-child::after {
  content: none;
}
.bl_table .highlight, .bl_richTxt table .highlight {
  position: relative;
  z-index: 1;
}
.bl_table .highlight::before, .bl_richTxt table .highlight::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(100% - 8px);
  height: calc(100% - 16px);
  background-color: var(--beige02);
}
.bl_table .highlight__center::before, .bl_richTxt table .highlight__center::before {
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
}
.bl_table .highlight__right::before, .bl_richTxt table .highlight__right::before {
  left: auto;
  right: 0;
  width: calc(100% - 8px);
  transform: translate(0, -50%);
}
.bl_table .rowDetail, .bl_richTxt table .rowDetail {
  padding-inline: 20px;
  border-bottom: none;
  background-image: linear-gradient(to right, var(--gray));
  background-size: calc(100% - 20px) 1px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.bl_table__profile thead th {
  text-align: center;
}
.bl_table__profile tbody td:last-of-type {
  position: relative;
  z-index: 1;
  text-align: center;
}
.bl_table__profile tbody td:last-of-type::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(100% - 8px);
  height: calc(100% - 16px);
  background-color: var(--beige02);
}

.bl_tableWrap {
  padding-bottom: 8px;
  overflow-x: auto;
}
@media screen and (min-width: 992px) {
  .bl_tableWrap {
    padding-bottom: 0;
  }
}
.bl_tableWrap .bl_table, .bl_tableWrap .bl_richTxt table, .bl_richTxt .bl_tableWrap table {
  min-width: 460px;
}
@media screen and (min-width: 992px) {
  .bl_tableWrap .bl_table, .bl_tableWrap .bl_richTxt table, .bl_richTxt .bl_tableWrap table {
    min-width: auto;
  }
}

.bl_table02 {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .bl_table02 tr {
    display: flex;
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .bl_table02 tr:first-child {
    margin-top: 0;
  }
}
.bl_table02 tr:first-child th {
  margin-top: 0;
}
.bl_table02 tr td:not(:first-of-type) {
  margin-top: 2px;
}
@media screen and (min-width: 992px) {
  .bl_table02 tr td:not(:first-of-type) {
    margin: 0 0 0 2px;
  }
}
.bl_table02 th, .bl_table02 td {
  display: block;
  padding: 12px 8px;
}
@media screen and (min-width: 992px) {
  .bl_table02 th, .bl_table02 td {
    padding: 14px 20px;
  }
}
.bl_table02 th {
  margin-top: 20px;
  text-align: left;
  background-color: var(--beige);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .bl_table02 th {
    width: 23.5294118%;
    margin-top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.bl_table02 td {
  background-color: var(--white);
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .bl_table02 td {
    min-width: 160px;
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 1.125rem;
    line-height: 2;
  }
}
@media screen and (min-width: 992px) {
  .bl_table02 td.access {
    width: 15.6862745%;
    flex: 0 0 auto;
  }
}
.bl_table02__border th, .bl_table02__border td {
  border: 1px solid var(--beige);
}

.bl_richTxt {
  max-width: 1200px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 2;
  /*----------------------------------------
    ブロック要素の間隔リズム
  ----------------------------------------*/
}
.bl_richTxt > * {
  margin: 0;
}
.bl_richTxt > * + * {
  margin-top: 30px;
}
.bl_richTxt > *:first-child {
  margin-top: 0 !important;
}
.bl_richTxt > *:last-child {
  margin-bottom: 0 !important;
}
.bl_richTxt + .bl_section {
  padding-top: 40px;
}
.bl_richTxt {
  /*----------------------------------------
    見出し階層 (h1-h6)
  ----------------------------------------*/
}
.bl_richTxt h2 {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h2 {
    margin-top: 100px;
  }
}
.bl_richTxt h2 + * {
  margin-top: 26px !important;
}
.bl_richTxt h2 + h3 {
  margin-top: 30px !important;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h2 + h3 {
    margin-top: 40px !important;
  }
}
.bl_richTxt h3 {
  margin-top: 52px;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h3 {
    margin-top: 80px;
  }
}
.bl_richTxt h3 + * {
  margin-top: 26px !important;
}
.bl_richTxt h3 + h4 {
  margin-top: 30px !important;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h3 + h4 {
    margin-top: 40px !important;
  }
}
.bl_richTxt h4 {
  margin-top: 52px;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h4 {
    margin-top: 68px;
  }
}
.bl_richTxt h4 + * {
  margin-top: 26px !important;
}
.bl_richTxt h4 + h5 {
  margin-top: 30px !important;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h4 + h5 {
    margin-top: 40px !important;
  }
}
.bl_richTxt h5 {
  margin-top: 44px;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h5 {
    margin-top: 58px;
  }
}
.bl_richTxt h5 + * {
  margin-top: 26px !important;
}
.bl_richTxt h5 + h6 {
  margin-top: 30px !important;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h5 + h6 {
    margin-top: 40px !important;
  }
}
.bl_richTxt h6 {
  margin-top: 44px;
}
@media screen and (min-width: 992px) {
  .bl_richTxt h6 {
    margin-top: 58px;
  }
}
.bl_richTxt h6 + * {
  margin-top: 26px !important;
}
.bl_richTxt {
  /*----------------------------------------
    段落・インライン
  ----------------------------------------*/
}
.bl_richTxt p {
  font-size: 1rem;
  line-height: 2;
}
.bl_richTxt p.el_note {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
.bl_richTxt p > .el_linkIcon {
  margin-inline: 0.5em;
}
.bl_richTxt strong {
  font-weight: 700;
}
.bl_richTxt i,
.bl_richTxt em {
  font-style: normal;
}
.bl_richTxt s {
  text-decoration: line-through;
}
.bl_richTxt {
  /*----------------------------------------
    画像・キャプション
  ----------------------------------------*/
  /*----------------------------------------
    引用
  ----------------------------------------*/
  /*----------------------------------------
    リスト
  ----------------------------------------*/
}
.bl_richTxt ul.alpha_contents > li {
  padding-left: 0;
}
.bl_richTxt ul.alpha_contents > li::before {
  content: none;
}
.bl_richTxt {
  /*----------------------------------------
    テーブル
  ----------------------------------------*/
}
.bl_richTxt {
  /*----------------------------------------
    ボックス
  ----------------------------------------*/
  /*----------------------------------------
    マージン調整
  ----------------------------------------*/
  /*----------------------------------------
    動画
  ----------------------------------------*/
}
.bl_richTxt iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_richTxt {
  /*----------------------------------------
    clearfix
  ----------------------------------------*/
}
.bl_richTxt .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.bl_search {
  position: relative;
}
.bl_search_input {
  width: 100%;
  height: 40px;
  padding: 10px 50px 10px 20px;
  border: 1px solid var(--green);
  border-radius: 20px;
  outline: none;
  background-color: #fff;
  color: var(--black);
  transition: all 0.3s ease-out;
  cursor: pointer;
}
@media (hover: hover) {
  .bl_search_input:hover + .bl_search_icon {
    border-color: var(--green);
  }
}
.bl_search_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--green);
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.bl_search_icon img {
  display: block;
  width: 100%;
}
.bl_search_icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url("/image/icon/icon-search-white.svg") no-repeat center;
  background-size: 100% 100%;
}
.bl_search__w500 {
  max-width: 500px;
}

.bl_searchList {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 30px;
}

.bl_searchItem {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
}
.bl_searchItem_ttl {
  font-weight: 700;
  font-size: 1.125rem;
}
.bl_searchItem_ttl > a {
  color: var(--blue);
}
@media (hover: hover) {
  .bl_searchItem_ttl > a:hover {
    text-decoration: underline;
  }
}
.bl_searchItem_url {
  color: #808080;
  font-size: 0.75rem;
  margin: 5px 0;
}
.bl_searchItem_txt {
  font-size: 1rem;
}

.bl_section + .bl_section {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_section + .bl_section {
    padding-top: 100px;
  }
}
.bl_section_in {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_section_in {
    padding-top: 80px;
  }
}

.bl_listIndex {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 992px) {
  .bl_listIndex__2col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .bl_listIndex__2col > li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .bl_listIndex__3col {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .bl_listIndex__3col > li {
    width: calc((100% - 80px) / 3);
  }
}
.bl_listIndex_lv2 {
  margin-top: 12px;
  padding-inline: 20px;
}
.bl_listIndex_lv2 > li {
  position: relative;
  padding-left: 1em;
}
.bl_listIndex_lv2 > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--olive);
}
.bl_listIndex_lv2 > li:not(:first-child) {
  margin-top: 8px;
}
.bl_listIndex_lv2 > li > a {
  display: block;
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.bl_listIndex_lv2 > li > a.is_current {
  font-weight: 700;
  color: var(--olive);
}
@media (hover: hover) {
  .bl_listIndex_lv2 > li > a:hover {
    opacity: 0.7;
  }
}

.bl_listIndexItem {
  display: block;
  padding: 20px;
  border-radius: 7px;
  border: 1px solid var(--gray);
  background-color: var(--beige02);
  transition: background-color 0.3s ease-out;
}
@media (hover: hover) {
  .bl_listIndexItem:hover {
    background-color: var(--hover-btn02);
  }
}
.bl_listIndexItem_imgWrap {
  margin-bottom: 20px;
}
.bl_listIndexItem_imgWrap img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 333/188;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.bl_listIndexItem_ttl {
  position: relative;
  width: 100%;
  padding-right: 16px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.bl_listIndexItem_ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("/image/icon/icon-arrow02.svg") no-repeat center;
  background-size: 100% 100%;
}
.bl_listIndexItem_lead {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--gray);
  background-color: var(--white);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.bl_listIndexItem.is_current {
  border: 2px solid var(--olive);
}

/* 本文が表示された場合 */
.content1 + .bl_listIndex {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .content1 + .bl_listIndex {
    margin-top: 80px;
  }
}

.bl_ctaList {
  margin-inline: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (min-width: 992px) {
  .bl_ctaList {
    margin-inline: 0;
    flex-direction: row;
    gap: 0 20px;
  }
}
@media screen and (min-width: 992px) {
  .bl_ctaList > li {
    width: 100%;
  }
}

.bl_ctaItem {
  padding-block: 20px;
  background-color: var(--beige02);
}
@media screen and (min-width: 992px) {
  .bl_ctaItem {
    padding-block: 40px;
    height: 100%;
  }
}
.bl_ctaItem_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .bl_ctaItem_inner {
    width: calc(100% - 80px);
  }
}
.bl_ctaItem_ttl {
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .bl_ctaItem_ttl {
    margin-bottom: 20px;
  }
}
.bl_ctaItem_ttl .en {
  color: var(--olive);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .bl_ctaItem_ttl .en {
    font-size: 2.1875rem;
    line-height: 1.4571428571;
  }
}
.bl_ctaItem_ttl .ja {
  margin-top: 2px;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 992px) {
  .bl_ctaItem_ttl .ja {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.bl_ctaItem_cont {
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_cont {
    align-items: center;
    gap: 0 24px;
  }
}
.bl_ctaItem_cont .icon {
  width: 44px;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_cont .icon {
    width: 58px;
  }
}
.bl_ctaItem_cont .icon img {
  display: block;
  width: 100%;
}
.bl_ctaItem_cont .cont {
  flex: 1;
}
.bl_ctaItem_btn {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 12px 44px 12px 12px;
  background-color: var(--white);
  border-radius: 5px;
  border: 1px solid #cfccb6;
  color: var(--green);
  font-weight: 700;
  transition: background-color 0.3s ease-out;
  font-size: 1.375rem;
  line-height: 1.4545454545;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_btn {
    min-height: 120px;
    padding-right: 60px;
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}
.bl_ctaItem_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("/image/icon/icon-arrow03.svg") no-repeat center;
  background-size: 100% 100%;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_btn::after {
    right: 24px;
    width: 30px;
    height: 30px;
  }
}
@media (hover: hover) {
  .bl_ctaItem_btn:hover {
    background-color: var(--hover-btn02);
  }
}
.bl_ctaItem_telWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 12px;
  background-color: var(--white);
  border-radius: 5px;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_telWrap {
    flex-direction: column;
    min-height: 120px;
  }
}
.bl_ctaItem_tel {
  display: block;
  color: var(--blue);
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.4411764706;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_tel {
    font-size: 3.375rem;
    line-height: 1;
  }
}
.bl_ctaItem_time {
  margin-top: 10px;
  text-align: right;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 1280px) {
  .bl_ctaItem_time {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.bl_map {
  width: 100%;
}
.bl_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.el_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  text-align: center;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 5px;
  padding: 8px 20px;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  font-size: 1rem;
  line-height: 1.6875;
}
@media (hover: hover) {
  .el_btn:hover {
    color: var(--black);
    background-color: var(--hover-btn);
  }
}
.el_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.el_btn_wrap__left {
  justify-content: flex-start;
}
.el_btn_wrap__center {
  justify-content: center;
}
.el_btn_wrap__right {
  justify-content: flex-end;
}
.el_btn__full {
  width: 100%;
  max-width: none;
}
.el_btn__sm {
  min-width: 140px;
}
.el_btn__green {
  background-color: var(--green);
}

.el_input {
  width: 100%;
  height: 48px;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--white);
  border: 1px solid var(--gray);
}
@media screen and (min-width: 992px) {
  .el_input {
    padding: 20px;
  }
}
.el_input__error {
  border: 2px solid #aa0808;
}

.el_checkbox {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.el_checkbox:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.el_checkbox:focus-visible + label::before {
  outline: 3px solid var(--focus-outline-color);
  outline-offset: 3px;
}
.el_checkbox_label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}
.el_checkbox_label::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 2px;
  background-color: var(--white);
  border: 1px solid var(--blue);
}
.el_checkbox_label::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 5px;
  transform: rotate(-45deg);
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  opacity: 0;
  visibility: hidden;
}
.el_checkbox_wrap {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
.el_checkbox_wrap label {
  flex: 1;
}
.el_checkbox__error + label::before {
  border: 2px solid #aa0808;
}

.el_radioTxt {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.el_radioTxt_input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
  overflow: hidden;
}
.el_radioTxt_input:focus-visible + label::before {
  outline: 3px solid var(--focus-outline-color);
  outline-offset: 3px;
}
.el_radioTxt_input:checked + label::after {
  content: "";
}
.el_radioTxt_label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 26px;
}
.el_radioTxt_label::before, .el_radioTxt_label::after {
  position: absolute;
  border-radius: 50%;
}
.el_radioTxt_label::before {
  left: 0;
  top: 3px;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid var(--blue);
  background-color: var(--white);
}
.el_radioTxt_label::after {
  left: 4px;
  top: 7px;
  content: none;
  width: 12px;
  height: 12px;
  background-color: var(--blue);
}

.el_textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--white);
  border: 1px solid var(--gray);
}
@media screen and (min-width: 992px) {
  .el_textarea {
    padding: 20px;
  }
}
.el_textarea__error {
  border: 2px solid #aa0808;
}

.el_txt {
  font-size: 1rem;
  line-height: 2;
}
.el_txt__small {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
.el_txt__xs {
  font-size: 0.75rem;
  line-height: 1.6666666667;
}

.el_note {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}

.js_fadeUp {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js_fadeUp.is_fadeUp {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js_accItemBody {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.un_homeMv {
  border-bottom: 7px solid var(--blue);
}
.un_homeMv_slider {
  position: relative;
}
.un_homeMv_slider .splide__slide {
  width: 100%;
}
.un_homeMv_slider .splide__slide > a {
  display: block;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .un_homeMv_slider .splide__slide > a:hover {
    opacity: 0.7;
  }
}
.un_homeMv_slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/560;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  .un_homeMv_slider .splide__slide img {
    aspect-ratio: 1440/560;
  }
}
.un_homeMv_slider .splide__controller {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .un_homeMv_slider .splide__controller {
    bottom: 20px;
  }
}
.un_homeMv_slider .splide__controller__custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  border-radius: 30px;
}
.un_homeMv_slider .splide__pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 12px 8px;
  padding: 0;
}
.un_homeMv_slider .splide__pagination__page {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: width 0.3s ease, border-radius 0.3s ease;
}
@media screen and (min-width: 992px) {
  .un_homeMv_slider .splide__pagination__page {
    width: 16px;
    height: 16px;
  }
}
.un_homeMv_slider .splide__pagination__page.is-active {
  width: 36px;
  border-radius: 16px;
  background-color: var(--blue);
  transform: scale(1);
}
.un_homeMv_slider .splide__toggle {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
}
.un_homeMv_slider .splide__toggle__play::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 14px;
  background-color: #9c9c9c;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.un_homeMv_slider .splide__toggle__pause::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 14px;
  border-left: 4px solid #9c9c9c;
  border-right: 4px solid #9c9c9c;
}

.un_homeInfo {
  padding-block: 30px 40px;
  background-color: var(--beige02);
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .un_homeInfo {
    padding-block: 60px 80px;
  }
}
.un_homeInfo_centered {
  position: relative;
  z-index: 1;
}
.un_homeInfo_centered::before {
  content: "";
  position: absolute;
  top: min(35.2vw, 132px);
  left: -10px;
  width: 128px;
  height: 132px;
  background: url("/image/home/symbol-white.svg") no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .un_homeInfo_centered::before {
    top: min(8.05555556vw, 116px);
    left: 0;
    width: 393px;
    height: 404px;
  }
}
.un_homeInfo .bl_newsList {
  max-width: 920px;
  margin-left: auto;
}

.un_homeAbout {
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_homeAbout {
    padding-top: 120px;
  }
}

.un_homeAboutSub {
  margin: 40px -20px 0;
  padding-block: 40px;
  background-color: var(--beige02);
}
@media screen and (min-width: 992px) {
  .un_homeAboutSub {
    margin: 60px 0 0;
    padding-block: 60px;
  }
}
.un_homeAboutSub_centered {
  max-width: 1020px;
}

.un_homeService {
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_homeService {
    padding-top: 120px;
  }
}

.un_homeWorks {
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_homeWorks {
    padding-top: 120px;
  }
}

.un_homeRecruit {
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_homeRecruit {
    padding-top: 120px;
  }
}

.un_homeInsights {
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_homeInsights {
    padding-top: 120px;
  }
}

.un_contact {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_contact {
    padding-top: 120px;
  }
}

.un_sitemap > *:first-child {
  margin-top: 0 !important;
}
.un_sitemap a {
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .un_sitemap a:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
.un_sitemap_lv1 {
  font-weight: 400;
  margin: 40px 0 15px;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv1 {
    margin-top: 60px;
  }
}
.un_sitemap_lv1 > a {
  position: relative;
  display: block;
  background: var(--beige02);
  text-decoration: none;
  color: var(--black);
  padding: 12px 15px;
  border-radius: 3px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
.un_sitemap_lv2 {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv2 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.un_sitemap_lv2 > li {
  font-size: 1rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv2 > li {
    width: calc((100% - 20px) / 2);
  }
}
.un_sitemap_lv2 > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 12px 25px 12px 12px;
  border-radius: 3px;
  border: 1px solid var(--olive);
  color: var(--black);
}
.un_sitemap_lv2 > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--olive);
}
.un_sitemap_lv3, .un_sitemap_lv4, .un_sitemap_lv5 {
  margin: 10px 0;
  padding-left: 1em;
}
.un_sitemap_lv3 > li > a, .un_sitemap_lv4 > li > a, .un_sitemap_lv5 > li > a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  color: var(--black);
  transition: color 0.3s ease-out;
}
.un_sitemap_lv3 > li > a::before, .un_sitemap_lv4 > li > a::before, .un_sitemap_lv5 > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--olive);
  transition: background 0.3s ease-out;
}
@media (hover: hover) {
  .un_sitemap_lv3 > li > a:hover, .un_sitemap_lv4 > li > a:hover, .un_sitemap_lv5 > li > a:hover {
    color: var(--olive);
  }
  .un_sitemap_lv3 > li > a:hover::before, .un_sitemap_lv4 > li > a:hover::before, .un_sitemap_lv5 > li > a:hover::before {
    background-color: var(--olive);
  }
}
.un_sitemap_lv3 li + li {
  margin-top: 5px;
}
.un_sitemap_lv4, .un_sitemap_lv5 {
  margin-left: 24px;
}

.un_alert {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  background-color: var(--white);
}
.un_alert_inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .un_alert_inner {
    display: flex;
  }
}
.un_alert_head {
  padding: 5px 10px;
  background-color: #db0000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px 9px 0 0;
}
@media screen and (min-width: 992px) {
  .un_alert_head {
    min-width: 150px;
    width: 12.5%;
    border-radius: 9px 0 0 9px;
  }
}
.un_alert_ttl {
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 992px) {
  .un_alert_ttl {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.un_alert_body {
  padding: 5px 15px;
  background-color: var(--white);
  border-radius: 0 0 9px 9px;
  border: 4px solid #db0000;
}
@media screen and (min-width: 992px) {
  .un_alert_body {
    padding: 5px 24px;
    border-radius: 0 9px 9px 0;
    flex: 1;
  }
}
.un_alert_list > li:not(:last-child) {
  border-bottom: 1px dashed var(--gray);
}
.un_alert_list > li > a {
  display: block;
  text-decoration: none;
  padding: 14px 0;
  color: #707070;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .un_alert_list > li > a {
    display: flex;
    gap: 0 24px;
  }
}
@media (hover: hover) {
  .un_alert_list > li > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.un_alert_list > li > a .date {
  position: relative;
  padding-left: 16px;
  font-size: 0.9375rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .un_alert_list > li > a .date {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.un_alert_list > li > a .date::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 8px;
  background-color: #db0000;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.un_alert_list > li > a .ttl {
  color: var(--black);
  text-decoration: underline;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
}
@media screen and (min-width: 992px) {
  .un_alert_list > li > a .ttl {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* 既存のcss（一部抜粋）※デザインによって調整、削除する */
/*---------------------------------------------------------------------
	alert_box
---------------------------------------------------------------------*/
.alert_box {
  padding: 10px;
  background: #B20000;
}

.alert_box .inner {
  background: #fff;
  padding: 12px;
  border: 4px solid #FF8A92;
  max-width: 1200px;
  margin: 0 auto;
}

.alert_box .head {
  background: #B20000;
  padding: 10px;
  position: relative;
}

.alert_box .ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}

.alert_box .link {
  position: absolute;
  right: 8px;
  top: 8px;
}

.alert_box .link a {
  color: #000;
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
  background: #fff;
  border: 1px solid #BFBFBF;
  padding: 2px 20px 2px 10px;
}

.alert_box .link a::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #E60011;
}

.alert_box .list a {
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #BFBFBF;
  padding: 5px;
  padding-left: 20px;
  position: relative;
}

.alert_box .list a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #B20000;
}

.alert_box .list .date {
  color: #707070;
  font-size: 1.4rem;
}

.alert_box .list .title {
  text-decoration: underline;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .alert_box {
    padding: 30px;
  }
  .alert_box .ttl {
    font-size: 2.4rem;
  }
  .alert_box .link a {
    width: 200px;
    padding: 6px;
    transition: 0.3s;
  }
  .alert_box .link a::before {
    right: 8px;
    top: 14px;
  }
  .alert_box .link a:hover {
    background: #fff4bd;
  }
  .alert_box .list a {
    display: table;
    width: 100%;
    padding: 10px 10px 10px 20px;
    transition: 0.3s;
  }
  .alert_box .list a:hover {
    border-bottom-color: #B20000;
    background: #fff4bd;
  }
  .alert_box .list .date {
    display: table-cell;
    vertical-align: top;
    font-size: 1.6rem;
    width: 140px;
    padding-top: 4px;
  }
  .alert_box .list .title {
    display: table-cell;
    vertical-align: top;
    font-size: 2rem;
  }
  .alert_box .list a::before {
    top: 22px;
  }
}
/*---------------------------------------------------------------------
	template
---------------------------------------------------------------------*/
.fll_img {
  margin-bottom: 15px;
}

.flr_img {
  margin-bottom: 15px;
}

.sp_flr_img {
  float: right;
  margin: 0 0 0 20px;
}

.sp_fll_img {
  float: left;
  margin: 0 20px 0 0;
}

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

.fl_over {
  overflow: hidden;
}

@media print, screen and (min-width: 767px) {
  .fll_img {
    float: left;
    max-width: 45%;
    margin: 0 40px 0 0;
  }
  .flr_img {
    float: right;
    max-width: 45%;
    margin: 0 0 0 40px;
  }
}
.caption,
.list_1column .caption,
.list_2column .caption,
.list_3column .caption,
.list_4column .caption,
.list_5column .caption {
  font-size: 86.66%;
  line-height: 1.4;
  padding-top: 7px;
  text-align: center;
  margin: 0;
}

.list_1column img,
.list_2column img,
.list_3column img,
.list_4column img,
.list_5column img {
  width: 100%;
  height: auto;
}

.list_2column .width_auto,
.list_3column .width_auto {
  width: auto;
}

/* list_2column */
.list_2column .item + .item {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .list_2column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_2column .item {
    width: 48.75%;
    margin: 0 2.5% 2.5% 0;
  }
  .list_2column .item + .item {
    margin-top: 0;
  }
  .list_2column .item:nth-child(2n) {
    margin-right: 0;
  }
}
/* list_3column */
.list_3column .item + .item {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .list_3column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_3column .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_3column .item + .item {
    margin-top: 0;
  }
  .list_3column .item:nth-child(3n) {
    margin-right: 0;
  }
}
/* list_4column */
.list_4column {
  display: flex;
  flex-wrap: wrap;
}

.list_4column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}

.list_4column .item:nth-child(2n) {
  margin-right: 0;
}

@media print, screen and (min-width: 768px) {
  .list_4column .item,
  .list_4column .item:nth-child(2n) {
    width: 23.33%;
    margin: 0 2.08% 2.08% 0;
  }
  .list_4column .item:nth-child(4n) {
    margin-right: 0;
  }
}
/* list_5column */
.list_5column {
  display: flex;
  flex-wrap: wrap;
}

.list_5column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}

.list_5column .item:nth-child(2n) {
  margin-right: 0;
}

@media print, screen and (min-width: 768px) {
  .list_5column .item,
  .list_5column .item:nth-child(2n) {
    width: 18%;
  }
  .list_5column .item:nth-child(2n) {
    margin-right: 2.5%;
  }
  .list_5column .item:nth-child(5n) {
    margin-right: 0;
  }
}
.contact_box {
  background: #fafafa;
  padding: 15px 20px;
  border: 3px solid #133775;
}

* + .contact_box {
  margin-top: 60px;
}

/*---------------------------------------------------------------------
	contact
---------------------------------------------------------------------*/
.mail_form {
  border: 8px solid #d6f0fb;
  margin: 0 auto;
  padding: 22px;
}

.mail_form form {
  margin: 0 auto;
}

.mail_form form dl {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 20px;
}

.mail_form form dt {
  width: 30%;
  display: table-cell;
  vertical-align: top;
  font-size: 93.75%;
  padding-right: 10px;
  padding-top: 12px;
}

.mail_form form dd {
  display: table-cell;
  vertical-align: top;
}

.mail_form form .bg_on {
  background-color: #ececec;
  padding: 12px;
}

.mail_form form .bg_on label {
  /*width: 20%;*/
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.mail_form form .border_on {
  border: 1px solid #CCCCCC;
  padding: 12px;
}

.mail_form.confirm_list dd {
  background-color: #E5F6FB;
  padding: 12px;
  word-break: break-all;
}

.mail_form .btn_list {
  text-align: center;
  margin: 20px auto;
}

.mail_form .icon_required::before {
  content: "必須";
  color: #fff;
  background: #e20000;
  font-size: 80%;
  border-radius: 3px;
  padding: 2px 9px;
  margin-right: 10px;
}

.icon_required_p {
  color: #fff;
  background: #e20000;
  font-size: 80%;
  border-radius: 3px;
  padding: 2px 9px;
  margin-right: 10px;
}

.mail_form .error {
  color: #d71618;
  font-size: 13px;
}

.form_errors {
  color: #d80000;
  border: 5px solid #e69898;
  text-align: left;
  padding: 20px;
  background: #fafafa;
  margin-bottom: 20px;
}

.mail_form.type_02 form {
  max-width: none;
}

.mail_form.type_02 form dl {
  max-width: 870px;
}

.mail_form.type_02 form dl dt {
  width: 35%;
}

.mail_form input,
.mail_form button,
.mail_form textarea,
.mail_form select {
  margin: 0;
  font-size: 16px;
  padding: 12px;
}

.mail_form input:-ms-input-placeholder {
  color: #808080;
}

.mail_form select,
.mail_form textarea,
.mail_form input[type=tel],
.mail_form input[type=text],
.mail_form input[type=email],
.mail_form input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  background-color: #ececec;
}

.mail_form input.small {
  width: 27%;
}

.mail_form input[type=file] {
  font-size: 16px;
}

.mail_form input[type=radio] {
  margin-right: 5px;
  padding: 5px;
}

.mail_form input[type=checkbox] {
  margin-right: 5px;
  padding: 5px;
}

.mail_form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: #ececec;
  position: relative;
}

.mail_form .twin {
  font-size: 0;
}

.mail_form .twin input + input {
  margin-left: 3.44%;
}

.mail_form .twin input {
  width: 48.26%;
  display: inline-block;
}

.mail_form textarea {
  width: 100%;
  height: 150px;
  background-color: #ececec;
}

.mail_form input[type=text]:focus,
.mail_form input[type=email]:focus,
.mail_form textarea:focus {
  box-shadow: 0 0 7px #008CD6;
}

.btm_text {
  /*width: 69%;
  margin-left: auto;*/
  text-align: center;
}

.mail_form input[type=submit] {
  color: #fff;
  padding: 1em 5em;
  background-color: #358FDD;
  border: none;
  border-radius: 0;
}

.mail_form input[type=submit]:hover {
  background-color: #055FAD;
}

.mail_form input[type=reset],
.mail_form input.back {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
  border: none;
  border-radius: 0;
}

.mail_form input[type=reset]:hover,
.mail_form input.back:hover {
  background-color: #555;
}

.mail_form .btn_backhome {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #358FDD;
  text-decoration: none;
  border: none;
  border-radius: 0;
  display: inline-block;
}

.mail_form .btn_backhome:hover {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
}

.form_message {
  background-color: #ffffbb;
  border: 2px solid #df0000;
  color: #df0000;
  font-size: 120%;
  font-weight: bold;
  margin: 10px auto;
  padding: 10px 15px;
}

@media print, screen and (max-width: 768px) {
  .mail_form {
    padding: 12px;
    border-width: 4px;
  }
  .mail_form form dl {
    padding: 0 10px;
    margin-bottom: 15px;
  }
  .mail_form form dt {
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 10px;
    padding: 0;
  }
  .mail_form form dd {
    display: block;
    width: auto;
  }
  .mail_form input,
  .mail_form button,
  .mail_form textarea,
  .mail_form select {
    padding: 10px;
  }
  .mail_form input.small {
    width: 50%;
  }
  .mail_form input[type=submit] {
    padding: 1em;
  }
  .btm_text {
    width: auto;
    text-align: center;
  }
}
/* btn_radio  btn_checkbox */
.btn_radio,
.btn_checkbox {
  display: inline-block;
  margin-right: 6px;
}

.btn_radio + label,
.btn_checkbox + label {
  background-color: #ececec;
  /*border: 1px solid #358fdd;*/
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  position: relative;
  margin-bottom: 5px;
}

#confirm.btn_checkbox + label {
  background: #ffffe5;
  border: 1px solid #aaa;
  width: 100%;
}

.btn_radio.size_s + label,
.btn_checkbox.size_s + label {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
}

@media (min-width: 1px) {
  .btn_radio,
  .btn_checkbox {
    display: none;
    margin: 0;
  }
  .btn_radio + label,
  .btn_checkbox + label {
    padding-left: 37px;
    color: #000;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .btn_radio:checked + label,
  .btn_checkbox:checked + label {
    background-color: #cbe2f6;
    border-color: #358fdd;
  }
  .btn_radio + label::before,
  .btn_checkbox + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #FFF;
  }
  .btn_radio + label::before {
    border: 1px solid #aaa;
    border-radius: 30px;
  }
  .btn_checkbox + label::before {
    border: 1px solid #aaa;
  }
  .btn_radio:checked + label::after,
  .btn_checkbox:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    box-sizing: border-box;
    display: block;
  }
  .btn_radio:checked + label::after {
    left: 15px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #358fdd;
    border-radius: 8px;
  }
  .btn_checkbox:checked + label::after {
    left: 12px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #358fdd;
    border-bottom: 3px solid #358fdd;
    transform: rotate(-45deg);
  }
}
.input_btn_list {
  letter-spacing: -0.5em;
}

.input_btn_list li {
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 10px 0;
}

.input_btn_list label {
  margin: 0 !important;
}

.mail_form input.input_other {
  display: none;
  width: auto;
  margin-left: 10px;
  padding: 10px;
}

/*---------------------------------------------------------------------
	404
---------------------------------------------------------------------*/
.thumb_404 {
  margin-right: 40px;
  float: left;
  width: 20%;
}

.border_box {
  padding: 20px;
  border: 10px solid #fbf4e8;
}

.border_box > ul {
  color: #FF7F00;
  padding-left: 20px !important;
}

/*---------------------------------------------------------------------
	sitemap
---------------------------------------------------------------------*/
/* CMS独自のスタイルやクラスにあてる */
/* colorbox */
#cboxOverlay, #cboxWrapper, #colorbox {
  z-index: 10 !important;
}/*# sourceMappingURL=common.css.map */