@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&family=Gemunu+Libre:wght@200..800&display=swap');

:root {
  --main-color: #11238C;
  --sub-color: #B9F1FF;
  --orange: #FF9800;

  --font-en: 'Gemunu Libre';
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  position: relative;
  padding-top: 88px;
  font-family: 'NotoSansJP','游ゴシック', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  line-height: 1.7;
}
:where(.spNav_btn,.spNav_panel) {display: none;}
:where(.sp_block) {display: none;}
:where(a) {
  color: #000;
  &:hover {
    opacity: 0.8;
  }
}

section {
  position: relative;
}
.main {
  margin-top: -88px;
  @media screen and (max-width: 767px) {
    margin-top: -56px;
  }
}
p {font-weight: 500;}
p.fs14 {font-size: 1.4rem;letter-spacing: 0.7px;}

.container {
  position: relative;
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
}

.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mt60 {margin-top: 60px;}
.mt70 {margin-top: 70px;}
.mt80 {margin-top: 80px;}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb70 {margin-bottom: 70px;}
.mb80 {margin-bottom: 80px;}

.ml10 {margin-left: 1em;}
.ml20 {margin-left: 2em;}
.ml30 {margin-left: 3em;}

mark {color: inherit;}
mark.yellow {
  background: linear-gradient(transparent 60%, #F9FF40 0%);
}

.bold_txt {font-weight: bold;}
.center_txt {
  text-align: center;
  img {
    margin: auto;
  }
}
.red_txt {color: red;}

h3.blue,
p.blue {color: var(--main-color);}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.check_list {
  li {
    position: relative;
    padding-left: 2em;
    font-weight: 500;
  }
  li::before {
    content: '';
    position: absolute;
    background: url(../img/check_icon.svg)no-repeat center;
    background-size: contain;
    width: 23px;
    height: 17px;
    top: 5px;
    left: 0;
    margin: auto;
  }
}

/* テーブル */


/* header */
.header {
	width: 100%;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
  &.rev {
    background: rgba(255, 255, 255, 1);
  }
}
.hd_logo {
  position: relative;
  width: 392px;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  &::before {
    content: '';
    position: absolute;
    background: #c9c9c9;
    width: 1px;
    height: 36px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 5.2em;
    margin: auto;
  }
  a:nth-child(2) {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
  }
  @media screen and (max-width: 767px) {
    &::before {
      right: auto;
      left: 173px;
    }
    a:nth-child(2) {
      font-size: 1.1rem;
      letter-spacing: 0;
    }
  }
}
.pc_nav {
	height: 100%;
}
.pc_nav--list {
	height: 100%;
	display: flex;
  justify-content: flex-end;
	align-items: center;
  gap: 24px;
  li {
    height: 100%;
    display: flex;
    align-items: center;
  }
  li.pc_nav--cont {
    width: 160px;
    height: 88px;
    a {
      position: relative;
      width: 100%;
      height: 100%;
      background: var(--main-color);
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      padding-left: 2em;
    }
    a::before {
      content: '';
      position: absolute;
      background: url(../img/hd_cont.svg)no-repeat center;
      background-size: contain;
      width: 20px;
      height: 16px;
      top: 0;
      bottom: 0;
      left: 16px;
      margin: auto;
    }
  }
	a {
    font-weight: 700;
	}
  @media screen and (max-width: 1366px) {
    gap: 16px;
  }
}

/* メガメニュー */
.mega_outer {
  position: absolute;
  width: 100%;
  background: #E5FAFF;
  top: 0%;
  right: 0;
  left: 0;
  margin: auto;
  visibility: hidden;
  z-index: -1;
}
.mega_list {
  a.mega_list--border {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  &:hover {opacity: 1;}
  &:hover a.mega_list--border::before {
    content: '';
    position: absolute;
    background: var(--main-color);
    width: 100%;
    height: 3px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.mega_list:hover .mega_outer {
  visibility: visible;
  top: 100%;
  opacity: 1;
}
.mega_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}
.mega_inner--left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  figure {
    margin-bottom: 32px;
  }
  p.bold_txt {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  a {
    position: relative;
    width: 100%;
    max-width: 186px;
    margin: 20px auto 0;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    background: rgba(22, 81, 160, 0.95);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 24px;
    &::after {
      content: '';
      position: absolute;
      background: url(/security/common/img/arrow_wht.svg) no-repeat center;
      background-size: contain;
      width: 10px;
      height: 16px;
      top: 0;
      bottom: 0;
      right: 20px;
      margin: auto;
    }
  }
}
.mega_inner-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  figure {
    min-width: 57px;
    height: 57px;
  }
  li {
    width: calc(50% - 10px);
  }
  a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    color: var(--main-color);
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
}


/* 共通箇所 */
.cmn_heading {
  font-weight: 700;
  h2 {
    color: #000;
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    margin-top: -2em;
  }
  p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Gemunu Libre';
    font-size: 12.8rem;
    text-transform: uppercase;
    letter-spacing: 6.4px;
  }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 2.4rem;
      letter-spacing: 1.2px;
    }
    p {
      font-size: 6.4rem;
      letter-spacing: 3.2px;
    }
  }
}

.more_btn {
  position: relative;
  width: 100%;
  max-width: 168px;
  background: #fff;
  border-radius: 5px;
  color: var(--main-color);
  padding: 8px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  padding-left: 1.5em;
  &::after {
    content: '';
    position: absolute;
    background: url(/security/common/img/arrow_lbl.svg)no-repeat center;
    background-size: contain;
    width: 9px;
    height: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1em;
  }
}
.more_btn.bg_blue {
  background: #1C87C7;
  color: #fff;
  &::after {
    background: url(/security/common/img/arrow_wht.svg)no-repeat center;
    background-size: contain;
  }
}
.more_btn.bg_mainblue {
  background: var(--main-color);
  color: #fff;
  /* &::after {
    background: url(/security/common/img/arrow_wht.svg)no-repeat center;
    background-size: contain;
  } */
}

.page_title {
  position: relative;
  padding: calc(88px + 72px) 0 72px;
  h1 {
    color: var(--main-color);
    font-size: 4.4rem;
    letter-spacing: 2.2px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
    span {
      display: block;
      font-size: 2.4rem;
      letter-spacing: 1.2px;
    }
  }
  & + nav {
    overflow: auto;
  }
  @media screen and (max-width: 767px) {
    padding: calc(56px + 40px) 5% 40px;
    h1 {
      font-size: 2.8rem;
      letter-spacing: 1.4px;
      span {
        font-size: 1.8rem;
        letter-spacing: 0.9px;
      }
    }
  }
}
.page_title--link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.page_title--link .more_btn.bg_blue {
  max-width: 220px;
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 5px);
    font-size: min(1.6rem, 3.5vw);
    padding-right: 2em;
  }
}

.breadcrumb {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 1em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  @media screen and (max-width: 767px) {
    max-width: initial;
  }
}
.breadcrumb_item {
  color: var(--main-color);
  a {
    color: var(--main-color);
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 10px;
    &::after {
      content: '-';
      display: inline-block;
      font-size: 1.4rem;
    }
  }
}


.intro_arrow {
  padding: 80px 0 56px;
  p {
    position: relative;
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
    color: var(--main-color);
    font-size: 2.4rem;
    letter-spacing: 2.4px;
    border: 2px solid var(--main-color);
    padding: 10px;
    &::after {
      content: '';
      position: absolute;
      background: url(../img/intro_arrow.svg)no-repeat center;
      background-size: contain;
      width: 47px;
      height: 47px;
      right: 0;
      left: 0;
      margin: auto;
      bottom: -33px;
    }
  }
  @media screen and (max-width: 767px) {
    p {
      font-size: 2rem;
      letter-spacing: 1px;
    }
  }
}

/* お問い合わせ */
.cmn_cont {
  background: linear-gradient(133deg, #DCF8FF 7.5%, #D5FFFA 51.68%, #84C3FF 95.87%);
  padding: 16px 0 64px;
  overflow: hidden;
  &::after {
    content: '';
    position: absolute;
    background: url(../img/cont_bg.png)no-repeat center;
    background-size: cover;
    width: 502px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
  }
  @media screen and (max-width: 767px) {
    padding-bottom: 120px;
    &::after {
      background: url(../img/cont_bg_sp.png)no-repeat center right;
      background-size: contain;
      top: auto;
      width: 100%;
      height: 355px;
    }
  }
}
.cmn_cont .container {
  &::before, &::after {
    content: '';
    position: absolute;
    bottom: -64px;
    margin: auto;
    z-index: 2;
  }
  &::before {
    background: url(../img/cont_person01.svg)no-repeat center;
    background-size: contain;
    width: 120px;
    height: 211px;
    left: 0;
  }
  &::after {
    background: url(../img/cont_person02.svg)no-repeat center;
    background-size: contain;
    width: 126px;
    height: 198px;
    right: 0;
  }
  @media screen and (max-width: 767px) {
    &::before, &::after {
      bottom: -120px;
      height: 140px;
    }
  }
}
.cmn_cont--list {
  position: relative;
  width: 100%;
  margin: 40px auto 28px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1;
  a {
    position: relative;
    width: 100%;
    max-width: 435px;
    padding: 32px 10px;
    padding-right: 2.5em;
    background: #fff;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    &::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 2.5em;
      margin: auto;
    }
  }
  a:first-child {
    &::before {
      background: url(../img/cont_icon01.svg)no-repeat center;
      background-size: contain;
      width: 42px;
      height: 41px;
    }
  }
  a:last-child {
    padding-right: 2em;
    &::before {
      background: url(../img/cont_icon02.svg)no-repeat center;
      background-size: contain;
      width: 33px;
      height: 26px;
      left: 2em;
    }
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    a {
      justify-content: center;
      padding: 20px 10px;
      padding-left: 4em;
      font-size: 1.8rem;
      letter-spacing: 0.9px;
    }
    a:first-child::before {
      left: 1.5em;
    }
    a:last-child {
      padding-right: 10px;
    }
    a:last-child::before {
      left: 1.5em;
    }
  }
}
.cmn_cont--note {
  text-align: center;
  font-weight: bold;
  @media screen and (max-width: 767px) {
    position: relative;
    z-index: 1;
  }
}

/* download */
#download {
  padding: 40px 0;
  background: rgba(233, 233, 233, 0.5);
}
#download .more_btn.bg_blue {
  background: #1C87C7;
  padding: 32px 20px;
  width: 90%;
  max-width: 440px;
  margin: 0 auto;
}

/* footer */
.footer {
  background: #F0F3F6;
}
.footer .container {
  max-width: 1200px;
  padding: 72px 0 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 767px) {
    padding: 64px 0;
  }
}
.ft_address {
  p.bold_txt {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  a {
    display: inline-flex;
  }
}
.ft_nav {
  display: flex;
  li {
    padding: 10px 30px;
    border-left: 1px solid var(--sub-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  li:last-child {
    border-right: 1px solid var(--sub-color);
  }
  a {
    display: inline-block;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  a:last-child {margin-bottom: 0;}
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.copyright {
  background: #000;
  p {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  small {
    display: inline-block;
    line-height: 1.3;
    color: #fff;
    padding: 4px 0;
  }
}

/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: #999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
#backtop.active {
  opacity: 0.8;
  visibility: visible;
  z-index: 50;
}
#backtop.active:hover {
	opacity: 0.6;
}

/* アニメーション
======================================================= */
.fade{
  opacity: 0;
  transition:ease-out 0.5s;
}
.fade.fade--left{
  transform: translate(-100px,0)
}
.fade.fade--right{
  transform: translate(100px,0)
}
.fade.fade--bot{
  transform: translate(0,100px)
}
.fade.scrollin{
  opacity: 1;
  transform: translate(0,0);
}
.fade.fade--list{
  opacity: 1;
}
.fade.fade--list .fade_child{
  opacity: 0;
  transition:ease-out 0.5s;
  transform: translate(0,100px);
}
.fade.fade--list.scrollin .fade_child{
  opacity: 1;
  transform: translate(0,0);
}
.fade.fade--list .fade_child:nth-child(1){
  transition-delay: 0.0s;
}
.fade.fade--list .fade_child:nth-child(2){
  transition-delay: 0.15s;
}
.fade.fade--list .fade_child:nth-child(3){
  transition-delay: 0.3s;
}
.fade.fade--list .fade_child:nth-child(4){
  transition-delay: 0.45s;
}
.fade.fade--list .fade_child:nth-child(5){
  transition-delay: 0.6s;
}
.fade.fade--list .fade_child:nth-child(6){
  transition-delay: 0.75s;
}
.fade.fade--list .fade_child:nth-child(7){
  transition-delay: 0.9s;
}
.fade.fade--list .fade_child:nth-child(8){
  transition-delay: 1.05s;
}
.fade.fade--list .fade_child:nth-child(9){
  transition-delay: 1.2s;
}
.fade.fade--list .fade_child:nth-child(10){
  transition-delay: 1.35s;
}
.fade.fade--list .fade_child:nth-child(11){
  transition-delay: 1.5s;
}
.fade.fade--list .fade_child:nth-child(12){
  transition-delay: 1.65s;
}

@media screen and (max-width: 1279px) {
  body {width: 1280px;}
}


@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* iPad調整用 */
@media screen and (orientation: portrait) and (min-width: 768px){}

@media screen and (max-width: 767px) {
  /* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
  /* スマホのみ表示する要素を表示、PCのみ表示する要素を非表示 */
	:where(.sp_block) {display: block;}
	:where(.pc_block) {display: none;}

  /* ------------------
  スマホメニュー
  ------------------ */
  /* ボタン */
  .spNav_btn {
    display: block;position: absolute; width: 56px;height: 56px;background: var(--main-color);top:0;right: 0;transition: all 0.5s;z-index: 100;
    span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}

    /* 閉じた状態 */
    &[aria-pressed="false"] span {width: 30px;transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {top: 18px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
    &[aria-pressed="false"] span:nth-child(3) {bottom: 18px;left: 0;right: 0;}

    /* 開いた状態 */
		&[aria-pressed="true"] {background: none;}
    &[aria-pressed="true"] span {width: 30px;transition: all 0.5s;background: #fff;}
    &[aria-pressed="true"] span:nth-child(1) {top: 50%;transform: translateY(-1.5px) rotate(45deg);left: 13px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {bottom: 50%;transform: translateY(1.5px) rotate(-45deg);left: 13px;}
  }
  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 290px;
		padding-bottom: 120px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--main-color);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		overflow: auto;
    z-index: 99;

    /* パネルが閉じている状態 */
    &[aria-hidden="true"] {
      visibility: hidden;
      pointer-events: none;
      transform: translateX(100%);
    }

    /* パネルが開いている状態 */
    &[aria-hidden="false"] {
      visibility: visible;
      transform: translateX(0);
    }
  }
  .spNav_list {
    width: 100%;
    padding: 20px 0 0;
    font-size: 1.5rem;
  }
  .spNav_list--item {
    border-bottom: 1px solid #fff;
    a {
      display: block;
      padding: 12px 15px;
      color: #fff;
    }
  }

  .spNav_accordion--title {
    width: 100%;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-align: left;
    &::after {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }

    /* アコーディオン開閉時の状態表示 */
    &[aria-expanded="false"]::after {content: "+";}
    &[aria-expanded="true"]::after {content: "-";}

    /* アコーディオン内の項目 */
    &[aria-expanded="false"] + .spNav_accordion {
      max-height: 0;
      height: auto;
    }
    &[aria-expanded="true"] + .spNav_accordion {
      max-height: 1000px;
    }
  }
  .spNav_accordion {
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;
    a {
      padding-left: 10%;
      color: #000;
      border-bottom: 1px dashed #ccc;
    }
    li:last-child a {
      border-bottom: none;
    }
  }

  /* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 0;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 9;overflow: hidden;pointer-events: none;}
	body:has(#onbody[aria-hidden="true"]) {height: 100%; overflow: hidden;}

  body {padding-top: 56px;}
  .header {
    height: 56px;
  }
  .hd_logo {
		max-width: calc(100% - 56px);
    justify-content: flex-start;
    gap: 10px;
    padding-left: 8px;
    img {
      width: 160px;
      height: 50%;
      object-fit: contain;
    }
	}
}

@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .header {
		position: absolute;
	}
}
@page {
  size: A4;margin: 5px;
}