@charset "utf-8";
/*
■01　フォント設定
■02　全体リセット
■03　個別再設定
■04　header
■04-1　header サイトナビゲーション
■05-1　ページメニュー ページナビゲーション
■05-2　ページメニュー 関連リンク
■06　footer
■07　サイトナビスイッチ ON時
■08　main
*/

/* ■01　フォント設定 ======================================================================= */
html {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

/* ■link
a{
  text-decoration: none;
  color:#ffffff;
}
a:link {
  text-decoration: none;
  color:#ffffff;
}
a:visited{
  text-decoration: none;
  color:#ffffff;

}
a:active{
  text-decoration: none;
  color:#ffffff;
}
   */
   a{
    text-decoration: none;   
    -webkit-appearance: none;
   }
body {
  position: relative;
  margin: 0;
  padding: 0;
}

/* ■00　全体リセット ======================================================================= */
html,
body,
div,
main,
article,
section,
aside,
header,
footer,
nav,
small,
span,
a,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
blockquote,
form,
fieldset,
legend,
input,
select,
textarea,
label,
table,
tr,
th,
td,
img {
  /*リセット除外　p,ol,*/
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

/* ■03　個別再設定 ======================================================================= */
body {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 基本タグ設定 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  font-size: 100%;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
  font-weight: 300;
}

strong {
  font-weight: 700;
}

p {
  /* Pは上方向のマージンのみリセット */
  margin-top: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  margin-bottom: 1.25em;
}

pre,
code {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

img {
  display: inline-block;
  width: 100%;
  width: auto;
  max-width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  text-decoration: none;
}

/* リスト関連 */
li {
  list-style: none;
}

/* フォームタグ関連 */
fieldset {
  border: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=button],
input[type=submit],
button {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=radio],
input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

select {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

textarea {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  resize: vertical;
}

::placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

/* ■04　header ======================================================================= */
header {
  width: 100%;
  min-height: 75px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  transition: background-color .4s .4s, min-height .0s .8s;
}

header:before {
  content: "";
  display: block;
  width: 100%;
  height: 75px;
  position: fixed;
  background-color: #ffffff;
  transition: background-color .4s .4s;
  z-index: 92;
}

h1 {
  display: inline-block;
  position: fixed;
  left: 70px;
  top: 37px;
  z-index: 93;
}

h1 a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

header h2 {
  display: flex;
  align-items: flex-end;
  position: fixed;
  left: 70px;
  top: 2px;
  height: 31px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.2;
  z-index: 93;
}

#site_nav_switch {
  width: 12px;
  height: 12px;
  position: fixed;
  left: 30px;
  top: 40px;
  z-index: 33;
  cursor: pointer;
  z-index: 93;
}

#site_nav_switch:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 12px;
  height: 2px;
}

#site_nav_switch:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 12px;
  height: 2px;
}

#site_nav_switch span {
  display: none;
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  header {
    min-height: 130px;
  }

  header:before {
    height: 130px;
  }

  h1 {
    left: 130px;
    top: 79px;
  }

  h1 a:link {
    font-size: 24px;
  }

  h1 a:link:hover {
    opacity: 0.6;
    transition: opacity .2s 0s linear;
  }

  header h2 {
    left: 130px;
    top: 46px;
    font-size: 11px;
  }

  #site_nav_switch {
    width: 15px;
    height: 15px;
    left: 60px;
    top: 81px;
  }

  #site_nav_switch:hover {
    opacity: 0.6;
    transition: opacity .2s 0s linear;
  }

  #site_nav_switch:before {
    width: 15px;
    height: 2px;
  }

  #site_nav_switch:after {
    bottom: 1px;
    width: 15px;
    height: 2px;
  }
}

/* ■04-1　header サイトナビゲーション ======================================================================= */
#site_nav {
  width: calc(100vw - 40px);
  margin: -9999px auto 0 20px;
  padding: 93px 0px 0 0px;
  z-index: 91;
  opacity: 0;
  transition: margin-top .0s .8s, opacity .4s .0s;
}

/* メインリスト */
.snav_ltit {
  width: 85.384svw;
  width: 100%;
  position: relative;
  color: #181b39;
  font-size: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s .0s;
}

.snav_ltit:before {
  content: "";
  width: 2px;
  height: 12px;
  background: #181b39;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .4s ease;
}

.snav_ltit:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #181b39;
  position: absolute;
  right: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.snav_ltit.mtit_open::before {
  transform: rotate(90deg);
}

.snav_ltit.mtit_open+.sitenav_mtit {
  height: auto;
  opacity: 1;
}

.snav_mtit {
  width: 100%;
  margin: 6px 0 17px 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s .2s, height .2s .0s;
}

.snav_mtit li h4 a {
  font-size: 18px;
  font-size: 14px;
  line-height: 32px;
  color: #555555;
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  #site_nav {
    width: calc(100vw - 60px);
    margin: -9999px 0 0 0;
    padding: 230px 0 0 60px;
  }

  .snav_ltit {
    width: 100%;
  }
}

/* サブリスト */
.snav_aside_tit {
  font-size: 12px;
  line-height: 2em;
  color: #181b39;
  opacity: 0;
  transition: opacity .3s .0s;
}

.snav_aside_tit .consul_inq_num {
  font-size: 15px;
  font-weight: 700;
}

.snav_aside {
  width: 100%;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity .3s .0s;
}

.snav_aside li {
  width: 100%;
  position: relative;
  margin: 16px 0 0 0;
  background-color: #181b39;
  border-radius: 5px;
}

.snav_aside li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 0 0 12px;
  position: relative;
  font-size: 14px;
  color: #ffffff;
  transition: color .2s 0s;
}

.snav_aside li a:before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: -2px;
  width: 20px;
  height: 20px;
  background-color: #181b39;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.0, 1.0);
}

.snav_aside li a:after {
  content: "";
  visibility: visible;
  display: block;

  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 45%;
  opacity: 1;
  z-index: 35;
  transition: opacity 0.1s 0.1s linear;
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  .snav_aside_tit {
    margin-top: 120px;
  }

  .snav_aside {
    display: flex;
  }

  .snav_aside li {
    width: calc((100% - 20px) / 2);
  }

  .snav_aside li:nth-child(2n) {
    margin-left: 20px;
  }

  .snav_aside li:before {
    content: "";
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: auto;
    border-radius: 50%;
    background-color: #ffffff;
  }

  .snav_aside li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 68px;
    padding: 0 0 0 29px;
    position: relative;
    font-size: 14px;
    color: #ffffff;
    transition: color .2s 0s;
  }

  .snav_aside li a:before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 26px;
    height: 26px;
    background-color: #181b39;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.2, 0.2);
    transition: transform ease 0.4s;
  }

  .snav_aside li a:after {
    content: "";
    visibility: hidden;
    z-index: 35;
    opacity: 0;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;

    width: 5px;
    height: 5px;
    top: 44%;
    right: 35px;
  }

  .snav_aside li a:hover:before {
    transform: translate(-50%, -50%) scale(1.0, 1.0);
  }

  .snav_aside li a:hover:after {
    visibility: visible;
    display: block;
    opacity: 1;
    transition: opacity 0.1s 0.1s linear;
  }
}

/* ■05-1　ページメニュー ページナビゲーション ======================================================================= */
#contents_nav {
  display: none;
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  #contents_nav {
    display: block;
    width: 310px;
    position: fixed;
    left: 60px;
    bottom: 63px;
    margin: 0;
    z-index: 2;
  }

  #contents_nav li>a {
    font-size: 18px;
    font-weight: 700;
    line-height: 180%;
    transition: color .15s .0s linear;
  }

  #contents_nav li ul {
    margin: 0 0 15px 0;
  }

  #contents_nav li ul li a {
    font-size: 14px;
    line-height: 225%;
    font-weight: 300;
  }
}

/* ■05-2　ページメニュー 関連リンク ======================================================================= */
#page_menu {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 7px 20px;
}

#page_menu h2 {
  font-size: 12px;
  line-height: 1.6em;
}

#page_menu h2>span {
  display: inline-block;
}

#page_menu h2 .consul_inq_num {
  font-size: 15px;
  font-weight: 700;
}

#related_link {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#related_link li {
  width: calc((100% - 12px) / 2);
  position: relative;
  margin: 8px 0 0 0;
  border-radius: 5px;
}

#related_link li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 0 0 12px;
  position: relative;
  font-size: 14px;
  transition: color .15s .0s linear;
}

#related_link li a:before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.0, 1.0);
  transition: transform ease 0.4s;
}

#related_link li a:after {
  content: "";
  visibility: visible;
  display: block;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 45%;
  margin: auto 0;
  opacity: 1;
  z-index: 35;
  transition: opacity 0.1s 0.1s linear;
}

/* TAB用744px～ */
@media screen and (min-width:744px) {
  #page_menu {
    width: 100%;
  }

  #related_link li {
    margin: 4px 0 0 0;
  }
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  #page_menu {
    width: 567px;
    padding: 0;
    right: 60px;
    bottom: 70px;
    margin-left: auto;
  }

  #related_link {
    display: flex;
    justify-content: space-between;
  }

  #related_link li {
    display: inline-block;
    width: 47.705%;
    margin-top: 0px;
  }

  #related_link li:before {
    content: "";
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
  }

  #related_link li a {
    height: 68px;
    padding: 0 0 0 29px;
  }

  #related_link li a:before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.2, 0.2);
    transition: transform ease 0.4s;
  }

  #related_link li a:after {
    content: "";
    visibility: hidden;

    width: 5px;
    height: 5px;
    z-index: 35;
    opacity: 0;
  }

  ul#related_link li a:hover:before {
    transform: translate(-50%, -50%) scale(1.0, 1.0);
  }

  ul#related_link li a:hover:after {
    visibility: visible;
    right: 36px;
    top: 44%;
    display: block;
    opacity: 1;
    transition: opacity 0.1s 0.1s linear;
  }
}

/* ■06　footer ======================================================================= */
footer {
  width: 100%;
  padding: 0 20px;
}

#footer_nav {
  display: none;
}

#footer_copyright {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0 7px 0;
  display: block;
  font-size: 11px;
}

/* ■07　サイトナビスイッチ ON時 ======================================================================= */
/* header */
body.menu_opened header {
  overflow-y: auto;
  min-height: 100dvh !important;
  min-height: -webkit-fill-available;
  height: 100dvh !important;
  height: -webkit-fill-available;
  overscroll-behavior-y: contain;
  background-color: #ffffff;
  transition: background-color .4s .0s;
}

body.menu_opened header:before {
  width: calc(100% - 17px);
  position: fixed;
  background-color: #ffffff;
  transition: background-color .4s .0s;
}

body.menu_opened header h1 a {
  color: #181b39;
}

body.menu_opened header h2 {
  color: #181b39;
}

/* スイッチ */
body.menu_opened #site_nav_switch:before {
  width: 13px;
  top: 5px;
  transform-origin: center center 0;
  transform: rotate(45deg);
  background-color: #181b39;
  transition: .2s .0s ease-out, background-color .2s .4s;
}

body.menu_opened #site_nav_switch:after {
  width: 13px;
  bottom: 5px;
  transform-origin: center center 0;
  transform: rotate(-45deg);
  background-color: #181b39;
  transition: .2s .0s ease-out, background-color .2s .4s;
}

/* サイトナビゲーション */
body.menu_opened #site_nav {
  display: block;
  position: relative;
  top: 0;
  margin: 0px auto 0 20px;
  padding-top: 93px;
  opacity: 1;
  transition: margin-top .0s .0s, opacity .4s .4s;
}

body.menu_opened #site_nav .snav_ltit {
  opacity: 1;
  transition: opacity .5s .3s ease-out, color .2s 0s linear;
}

body.menu_opened #site_nav .snav_mtit {
  opacity: 1;
  transition: opacity .5s .3s ease-out, height .4s .0s;
}

body.menu_opened .snav_aside_tit {
  opacity: 1;
  transition: opacity .5s .3s ease-out;
}

body.menu_opened .snav_aside {
  opacity: 1;
  transition: opacity .5s .3s ease-out;
}

/* ページナビゲーション */
body.menu_opened #page_menu {
  display: none;
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  /* スイッチ */
  body.menu_opened #site_nav_switch:before {
    width: 16px;
    top: 7px;
    left: 1px;
  }

  body.menu_opened #site_nav_switch:after {
    width: 16px;
    bottom: 6px;
    left: 1px;
  }

  /* サイトナビゲーション */
  body.menu_opened #site_nav {
    width: calc(100vw - 60px);
    margin: 0;
    padding: 230px 0 0 60px;
  }

  body.menu_opened .snav_ltit:hover {
    color: #99a8c5;
  }

  body.menu_opened #site_nav h4 a:hover {
    color: #99a8c5;
  }

  body.menu_opened .snav_aside_tit {
    margin-top: 120px;
  }

  body.menu_opened ul.snav_aside li a:hover {
    color: #99a8c5 !important;
  }

}

/* ■08　main ======================================================================= */
main {
  position: relative;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  margin: 0;
  padding: 75px 20px 0 20px;
}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {
  main {
    padding: 130px 0 0 0;
  }
}

/* ■ ブレイクポイント ======================================================================= */
/* TAB用744px～ */
@media screen and (min-width:744px) {}

/* PC用 1291px～ */
@media screen and (min-width:1291px) {}

/* PC用 1934px～ */
@media screen and (min-width:1939px) {}