@charset "UTF-8";
/* --------------------------------------------------
 Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

@font-face {
  font-family: 'FuturaMedium';
  src: url('../webfonts/FuturaMedium.woff2') format('woff2'), url('../webfonts/FuturaMedium.woff') format('woff');
}

.futura-txt {
  font-family: 'FuturaMedium', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', sans-serif !important;
}

body,
ol,
ul,
dl,
li,
dt,
dd,
table,
th,
td,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1d1d1f;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  min-width: 320px;
  line-height: 1.8;
  font-size: 100%;
  word-break: break-all;
  position: relative;
  overflow-x: hidden;
  animation: pageLoad 2s;
  overflow-y: scroll;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 90%;
    line-height: 1.6;
  }
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  padding: 12px 15px;
}

textarea {
  padding: 12px 15px;
}

select {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif !important;
  padding: 12px 15px;
}

ol {
  margin: 0px 0px 0px 21px;
}

ol>li {
  list-style: decimal outside;
  margin: 0px 0px 3%;
}

a:link,
a:visited {
  color: #231f16;
  text-decoration: underline;
  outline: 0;
}

a:hover,
a:active {
  color: #231f16;
  text-decoration: none;
}

@media screen and (min-width: 1201px) {
  a[href^="tel"] {
    pointer-events: none;
  }
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-style: normal;
  font-weight: bold;
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* --------------------------------------------------
 drwNavBtn
-------------------------------------------------- */

#drwNavTrigger {
  display: none;
}

.drwNavBtn {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  width: 65px;
  height: 76px;
  text-align: center;
  cursor: pointer;
  z-index: 999;
  background-color: #2e69c8;
}

@media screen and (max-width: 1200px) {
  .drwNavBtn {
    display: block;
  }
}

.drwNavBtnBar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 29px;
  height: 2px;
  transition: all 0.4s;
  transform-origin: left top;
}

.drwNavBtnBar {
  background: #fff;
}

.drwNavBtnBar.top {
  top: 14px;
  left: 18px;
}

.drwNavBtnBar.middle {
  top: 21px;
  left: 18px;
  opacity: 1;
}

.drwNavBtnBar.bottom {
  top: 28px;
  left: 18px;
  transform-origin: left bottom;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.top {
  width: 27px;
  left: 23px;
  top: 12px;
  transform: rotate(45deg);
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.middle {
  opacity: 0;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.bottom {
  width: 27px;
  left: 23px;
  top: 31px;
  transform: rotate(-45deg);
}

.drwNavBtnText {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
  display: block;
  visibility: visible;
  opacity: 1;
  letter-spacing: 0;
  color: #fff;
  font-size: 10px;
}

.drwNavClose {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(../img/common/close_cross.png), auto;
  visibility: hidden;
  opacity: 0;
}

#drwNavTrigger:checked~.drwNavClose {
  transition: all 0.4s;
  background: rgba(38, 38, 38, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 993;
}

#drwNav {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  transition: all 0.4s;
  opacity: 0;
  overflow: hidden;
  transform-origin: left center;
  transform: translateX(320px);
  z-index: 992;
  background-color: #fff;
}

#drwNavTrigger:checked~#drwNav {
  transition-delay: 0.3s;
  transform: none;
  opacity: 1;
  z-index: 993;
}

.drwNavInner {
  box-sizing: border-box;
  width: 100%;
  min-width: 320px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #ffffff;
}

#drwNav .logo-blc .logo-img {
  max-width: 200px;
  margin: auto;
}

#drwNav .logo-blc {
  padding: 75px 10px 10px 10px;
}

#drwNav .logo-blc .txt-desc {
  text-align: center;
  color: #86868b;
  font-size: 80%;
  width: 100%;
  margin-top: 10px;
  line-height: 1.8;
}

#drwNav .globalNav {
  width: 100%;
  box-sizing: border-box;
}

#drwNav .globalNav li a,
#drwNav .globalNav li .accordionTrigger {
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding: 10px 40px 10px 10px;
  position: relative;
  text-align: left;
  font-size: 100%;
  border-bottom: 1px solid rgba(21, 93, 172, 0.2);
}

#drwNav .globalNav li a::before,
#drwNav .globalNav li .accordionTrigger::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 13px;
  font-size: 14px;
  color: #2e69c8;
}

#drwNav .globalNav li .accordionTrigger {
  cursor: context-menu;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

#drwNav .globalNav li .accordionTrigger::before {
  content: '\f067';
  font-size: 12px;
  top: 19px;
  right: 9px;
}

#drwNav .globalNav li .accordionTrigger.onclick::before {
  content: '\f068';
  font-size: 13px;
  top: 18px;
  right: 9px;
}

#drwNav .globalNav li .accordionTrigger.onclick {
  background-color: #2e69c8;
  color: #f4f4f4;
}

#drwNav .globalNav li .accordionTrigger.onclick:before {
  color: #ffffff;
}

#drwNav .globalNav .accordionContent li a {
  padding-left: 2rem;
  background: #f0f6fb;
  color: #006ab5;
  font-size: 90%;
}

#drwNav .globalNav .accordionContent li a::after {
  content: none;
}

#drwNav .globalNav li .accordionContent li a::before {
  top: 13px;
}

@media screen and (max-width:1200px) {
  .drwNavBtn {
    height: 60px;
  }
}

@media screen and (max-width:767px) {
  #drwNav .globalNav li .accordionContent li a::before {
    top: 6px;
  }

  #drwNav .globalNav .accordionContent li a {
    padding-left: 1.7rem;
  }

  #drwNav .globalNav li .accordionTrigger::before {
    top: 17px !important;
  }

  #drwNav .globalNav li .accordionTrigger.onclick::before {
    top: 15px !important;
  }

  #drwNav .globalNav li a::before,
  #drwNav .globalNav li .accordionTrigger::before {
    top: 11px;
  }
}

/* --------------------------------------------------
 header
-------------------------------------------------- */

@media screen and (min-width:1201px) {

  #header .menu-blc #gnav>ul>li>a:hover,
  #header .menu-blc #gnav ul li .trigger:hover {
    color: #fff;
    background-position: 0 0;
  }

  #header .menu-blc #gnav ul li .trigger:hover::after {
    bottom: 0;
  }
}

#header {
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
  box-shadow: 0 -2px 10px #86868b;
}

#header .logo-blc {
  width: 58%;
  display: flex;
  align-items: center;
  align-content: center;
  padding: 5px 20px;
  box-sizing: border-box;
}

#header .logo-blc .logo-img {
  max-width: 200px;
}

#header .logo-blc .txt-desc {
  width: calc(100% - 200px);
  color: #86868b;
  font-size: 80%;
  padding-left: 20px;
  box-sizing: border-box;
}

#header .menu-blc {
  flex: 1;
}

#header .menu-blc #gnav ul {
  display: flex;
  justify-content: flex-end;
}

#header .menu-blc #gnav>ul>li>a,
#header .menu-blc #gnav ul li .trigger {
  font-weight: 500;
  text-decoration: none;
  padding: 25.61px 30px;
  text-align: center;
  display: inline-block;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-sizing: border-box;
  background-position: 100% 0;
  background-size: 300% 100%;
  z-index: 1;
  background-image: -webkit-linear-gradient(45deg, #2e69c8 50%, rgba(0, 0, 0, 0) 50%);
  background-image: -moz-linear-gradient(45deg, #2e69c8 50%, rgba(0, 0, 0, 0) 50%);
  background-image: -o-linear-gradient(45deg, #2e69c8 50%, rgba(0, 0, 0, 0) 50%);
  background-image: linear-gradient(45deg, #2e69c8 50%, rgba(0, 0, 0, 0) 50%);
  cursor: pointer;
}

#header .menu-blc #gnav ul li>.child {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  min-width: 140px;
  margin: auto;
  transition: 0.3s;
  display: block;
}

#header .menu-blc #gnav ul li {
  position: relative;
}

#header .menu-blc #gnav ul li.active .child {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

#header .menu-blc #gnav ul li>.child li a {
  padding: 10px 20px;
  background-color: #6c95d8;
  color: #fff;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
}

#header .menu-blc #gnav ul li>.child li a:hover {
  opacity: 0.7;
}

#header .menu-blc #gnav ul li.active .trigger {
  background-color: #2e69c8;
  color: #fff;
}

#header .menu-blc #gnav ul li.active .trigger::after {
  color: #fff;
  bottom: 0;
}

#header .menu-blc #gnav ul li .trigger::after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  color: #2e69c8;
  transition: 0.3s;
}

@media screen and (max-width:1660px) {
  #header .logo-blc .txt-desc {
    font-size: 0.8vw;
  }

  #header .menu-blc #gnav>ul>li>a,
  #header .menu-blc #gnav ul li .trigger {
    padding: 25.61px 1vw;
    background-size: 340% 110%;
  }
}

@media screen and (max-width:1280px) {
  #header .logo-blc .txt-desc {
    width: 100%;
    font-size: 1vw;
    padding-left: 0;
    margin-top: 5px;
  }

  #header .logo-blc {
    width: 45%;
    flex-wrap: wrap;
  }

  #header .menu-blc {
    width: 55%;
  }
}

@media screen and (max-width:1200px) {
  #header {
    padding: 6px 80px 6px 10px;
    height: 60px;
    box-sizing: border-box;
  }

  #header .logo-blc {
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  #header .logo-blc .logo-img {
    margin-left: 0;
  }

  #header .logo-blc .txt-desc {
    display: none;
  }

  #header .menu-blc {
    display: none;
  }
}

/* --------------------------------------------------
 contents
-------------------------------------------------- */



/* --------------------------------------------------
 footer
-------------------------------------------------- */

@media screen and (min-width:1201px) {
  #footer .f-nav li a:hover {
    opacity: 0.7;
  }
}

#footer {
  background-color: #fafafa;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 98;
}

#footer>.comm-blc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 90%;
}

#footer .f-nav {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 50%;
  padding-right: 20px;
}

#footer .f-nav li {
  margin-right: 30px;
}

#footer .f-nav li a {
  text-decoration: none;
  transition: all 0.3s;
}

#footer .copyright {
  text-align: right;
  padding: 10px 0;
  box-sizing: border-box;
  width: 50%;
}

@media screen and (max-width:1200px) {
  #footer .f-nav li {
    margin-right: 20px;
  }
}

@media screen and (max-width:1000px) {
  #footer .f-nav li {
    margin-right: 10px;
    margin-left: 10px;
  }

  #footer>.comm-blc {
    justify-content: center;
  }

  #footer .copyright {
    padding-top: 10px;
    padding-bottom: 0;
    width: 100%;
    text-align: center;
  }

  #footer .f-nav {
    padding: 0;
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width:480px) {
  #footer .f-nav {
    justify-content: center;
  }
}