@charset "UTF-8";


/* base
------------------------------------------------------------------------------------*/
:root {
  --maxWidth: 1080px; /* 1080px 1280px 1440px */
  --maxWidthMargin:  0 auto; /* 1080px 1280px 1440px */
  --maxWidthPadding:  0 40px; /* 1080px 1280px 1440px */
  --en_gothic: YakuHanJPs, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --ja_gothic: YakuHanJPs, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* --ja_mincho: YakuHanMPs, "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif; */
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: var(--ja_gothic);
  line-height: 1;
  /* font-family: inherit; */
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  min-width: 980px;
  background: #000;
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #222;
  font-size: 1.6rem;
  /* font-family: var(--ja_gothic); */
  font-display: optional;
  /* line-height: 1; */
  position: relative;
  /* overflow-x: hidden; */
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;  
}

a {
  color: #1c70b5;
  text-decoration: none;
  transition: opacity 300ms;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  /* text-underline-position: under; */ 
  opacity: 0.5;
}

select { line-height: revert; }
label { cursor: pointer; }


/* ヘッダー
------------------------------------------------------------------------------------*/
.header_wrap {
  height: 110px;
  background: #000;
  order: -1000;
}

.header_inner {
  max-width: var(--maxWidth);
  position: relative;  
  margin: 0 auto;
}

.header_logo {
  position: absolute;
  top: 24px;
  left: 24px;
}

.header_logo_link {
  width: 208px;
  display: block;
}

.header_logo_txt {
  color: #fff;
  font-size: 1.1rem;
  margin: 8px 0 0 2px;
  padding: 0;
}


/* パンくず
------------------------------------------------------------------------------------*/
.breadcrumb_wrap {
  width: 100%;
  max-width: 800px;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 auto;
  padding: 20px 0;
}
.breadcrumb_txt { display: inline-block; }
/*
.breadcrumb_link { text-decoration: underline; }
.breadcrumb_link:hover { text-decoration: none; }
*/

.breadcrumb_txt:nth-of-type(n + 2)::before {
  content: " > ";
  display: inline-block;
  margin:0 8px
}


/* タイトル
------------------------------------------------------------------------------------*/
.mainTit_h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 48px;
}


/* フッター
------------------------------------------------------------------------------------*/
/* メニュー */
.footerMenu_wrap {
  max-width: var(--maxWidth);
  display: flex;
  justify-content: center;
  margin: 144px auto 0;
}

.footerSG_wrap + .footerMenu_wrap { margin-top: 40px; }

.footerMenu_ul {
  width: 220px;
  list-style: none;
}

.footerMenu_tlt {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 4px;
}

.footerMenu_list {
  font-size: 1.5rem;
  display: block;
  margin-top: 12px;
}

.footerMenu_list_link { color: #222; }
.footerMenu_list_link:hover { text-decoration: none; }

/* 関連リンク */
.footerRelated_wrap {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 32px;
}
/*
.footerRelated_link { text-decoration: underline; }
.footerRelated_link:hover { text-decoration: none; }
*/

/* フッター */
.footer_wrap {
  height: 56px;
  background: #000;
  display: grid;
  place-items: center;
  margin-top: 12px;
  order: 5;
}

.copyRight {
  color: #fff;
  font-size: 1.5rem;
}


/* ページTOPへ戻る
------------------------------------------------------------------------------------*/
.floatBtn_scrollTop {
  width: 60px;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.4));
  position: fixed;
  bottom: 60px;
  right: 16px;
  right: 25px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.floatBtn_scrollTop_on {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1280px) {
  .floatBtn_scrollTop {
    left: calc(50% + 584px);
    right: 0;
    transform: translateX(-50%)
  }
}


/* 上部固定アラート
------------------------------------------------------------------------------------*/
#js_alert_headerModal {
  width: calc(100% - 32px);
  height: auto;
  min-height: 64px;
  background: rgba(242, 204, 225, 0.9);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  position: fixed;
  top: 24px;
  left: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  padding: 8px 16px;
  transition: opacity 250ms, top 250ms;
}
#js_alert_headerModal.js_alert_headerModal_open {
  top: 16px;
  opacity: 1;
  pointer-events: auto;
}

#js_alert_headerModal_icon {
  width: 18px;
}

#js_alert_headerModal_close {
  width: 18px;
  cursor: pointer;
}

#js_alert_headerModal_txt {
  font-weight: bold;
  line-height: 1.8rem;
  flex: 1;
  margin-top: -1px;
  padding: 0 16px;
}


/* リキャプチャ
------------------------------------------------------------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
  pointer-events: none;
}