@charset "UTF-8";


/* base
------------------------------------------------------------------------------------*/
:root {
  --maxWidth: 960px;
  --maxWidthMargin: 0 auto;
  --maxWidthPadding: 0;
  --ja_gothic: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "MS Pゴシック", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: var(--ja_gothic);
  line-height: 1;
  overflow-wrap: break-word;
  word-break: break-all;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1280px;
  background: #fff;
  color: #3c3c3c;
  font-size: 1.6rem;
  font-display: optional;
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;  
}

a {
  color: #29598f;
  text-decoration: none;
  transition: opacity 300ms;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.5;
}

select { line-height: revert; }
label { cursor: pointer; }


/* ヘッダー
------------------------------------------------------------------------------------*/
.header_wrap {
  width: 100%;
  border-bottom: #ccc solid 1px;
}

.header_inner {
  width: 1280px;
  height: 84px;
  margin: 0 auto;
  padding: 24px 100px 0;
}

.header_logo_link {
  width: 168px;
  display: block;
}


/* パンくず
------------------------------------------------------------------------------------*/
.breadcrumb_wrap {
  width: 100%;
  max-width: 800px;
  font-size: 1.1rem;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 auto;
  padding: 24px 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;
}


/* フッター
------------------------------------------------------------------------------------*/
.footer_wrap {
  background: #eee;
  border-top: #ccc solid 1px;
  margin-top: 120px;
  padding: 80px 0;
}

.footer_List_wrap {
  font-size: 1.2rem;
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer_List_li {
  border-left: #ccc solid 1px;
  padding: 0 16px;
}
.footer_List_li:first-of-type { border-left: none; }

.footer_List_link { color: #3c3c3c; }

.copyRight {
  font-size: 1rem;
  text-align: center;
  margin-top: 40px;
}


/* ページ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: 0;
  background: rgba(253, 213, 228, 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;
  transition: opacity 250ms, top 250ms;

  display: none;
}
#js_alert_headerModal.js_alert_headerModal_open {
  height: auto;
  min-height: 64px;
  top: 16px;
  opacity: 1;
  pointer-events: auto;
  padding: 8px 16px;
}

#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;
}