@charset "UTF-8";
/* --------------------------------------------------
 Base
-------------------------------------------------- */

html,
body {
  overflow-x: hidden;
  max-width: 100%
}

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%;
}

body {
  background-color: #f5f6f7;
  min-width: 320px;
  line-height: 1.5;
  font-size: 100%;
  word-break: break-all;
  position: relative;
  animation: pageLoad 2s;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 90%;
  }
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  padding: 12px 15px;
}

textarea {
  padding: 12px 15px;
}

select,
textarea,
option {
  color: #1d1d1f;
}

ol {
  margin: 0px 0px 0px 21px;
}

ol>li {
  list-style: decimal outside;
  margin: 0px 0px 3%;
}

a:link,
a:visited {
  color: #1d1d1f;
  text-decoration: underline;
  outline: 0;
}

a:hover,
a:active {
  color: #1d1d1f;
  text-decoration: none;
}

figure {
  text-align: center;
}

@media screen and (min-width: 1001px) {
  a[href^="tel"] {
    pointer-events: none;
    text-decoration: underline;
  }
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-style: normal;
  font-weight: bold;
}

/* --------------------------------------------------
 font-family
-------------------------------------------------- */

@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;
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* --------------------------------------------------
 drwNavBtn
-------------------------------------------------- */

#drwNavTrigger {
  display: none;
}

#drwNavTrigger:checked~.drwNavBtn {
  box-shadow: none;
  opacity: 1 !important;
}

.drwNavBtn {
  position: fixed;
  top: 15px;
  right: 10px;
  display: none;
  width: 45px;
  height: 45px;
  text-align: center;
  cursor: pointer;
  z-index: 999;
  background-color: #196fdd;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1000px) {
  .drwNavBtn {
    display: block;
  }
}

.drwNavBtnBar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 25px;
  height: 1px;
  transition: all 0.4s;
  transform-origin: left top;
  margin: auto;
}

.drwNavBtnBar {
  background: #fff;
}

.drwNavBtnBar.top {
  top: 13px;
  left: 0;
  right: 0;
}

.drwNavBtnBar.middle {
  top: 22px;
  right: 0;
  opacity: 1;
}

.drwNavBtnBar.bottom {
  top: 31px;
  left: 0;
  right: 0;
  transform-origin: left bottom;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.top {
  top: 13px;
  transform: rotate(45deg);
  background: #fff;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.middle {
  opacity: 0;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.bottom {
  top: 30px;
  transform: rotate(-45deg);
  background: #fff;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.top,
#drwNavTrigger:checked~.drwNavBtn .drwNavBtnBar.bottom {
  left: 7px;
}

#drwNavTrigger:checked~.drwNavBtn .drwNavBtnText {
  visibility: hidden;
  opacity: 0;
}

.drwNavClose {
  position: fixed;
  top: 0;
  right: 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;
  transition-delay: 0.3s;
  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;
}

#drwNavTrigger:checked~#drwNav {
  transition-delay: 0.3s;
  transform: none;
  opacity: 1;
  z-index: 993;
}

.drwNavInner {
  width: 100%;
  min-width: 320px;
  height: 100%;
  padding: 15px 0;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #fff;
  box-sizing: border-box;
}

#drwNav .logo {
  margin: auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

#drwNav .logo a {
  display: inline-block;
  transition: all ease-in 0.3s;
}

#drwNav .logo a:hover {
  opacity: 0.5;
}

#drwNav .logo .logo-txt {
  font-weight: bold;
  font-size: 90%;
  margin-top: 10px;
  display: block;
}

#drwNav .logo figure {
  text-align: left;
  max-width: 150px;
}

#drwNav .logo .txt-desc {
  width: 100%;
  font-size: 90%;
  display: block;
  margin-bottom: 0;
  margin-top: 1rem;
  text-align: center;
}

/* globalNav ---------------------------------- */

#drwNav .globalNav {
  width: 100%;
  box-sizing: border-box;
  margin-top: 1rem;
}

#drwNav .globalNav>li>a,
#drwNav .globalNav li.accordionWrap>.accordionTrigger {
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding: 15px 2rem 15px 15px;
  position: relative;
  line-height: 1.5;
  font-weight: bold;
  border-bottom: 1px solid #b3b3b3;
  transition: all ease-in 0.3s;
}

#drwNav .globalNav li.accordionWrap>.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.accordionWrap>.accordionTrigger.onclick {
  background-color: #196fdd;
  color: #fff;
}

#drwNav .globalNav li.accordionWrap>.accordionTrigger:after {
  font-family: "Font Awesome 5 Free";
  content: '\f107';
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 15px;
  right: 10px;
}

#drwNav .globalNav li.accordionWrap>.accordionTrigger.onclick:after {
  content: '\f106';
}

#drwNav .globalNav li.accordionWrap>.accordionContent li a::after {
  content: none;
}

#drwNav .globalNav li.accordionWrap>.accordionContent li a {
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding: 10px 2rem;
  line-height: 1.5;
  border-bottom: 1px solid #d1d1d1;
  background: rgba(25, 111, 221, 0.8);
  color: #fff;
}

#drwNav .globalNav>li>a::after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: auto;
  bottom: auto;
  margin: auto;
  transition: all ease-in 0.3s;
}

#drwNav .globalNav>li.active>a {
  background-color: #c30d23;
  color: #fff;
}

/* drw-logo ---------------------------------- */

#drwNav .logo .logo-txt .txt {
  width: 100%;
  display: block;
}

#drwNav .logo .logo-txt .txt.txt02 {
  font-size: 130%;
  font-weight: bold;
  line-height: 1;
}

/* drw-contact ---------------------------------- */

#drwNav .drw-contact {
  padding: 2rem 15px;
  box-sizing: border-box;
}

#drwNav .drw-contact .ttl {
  font-size: 120%;
  text-align: center;
  display: block;
  font-weight: bold;
}

#drwNav .drw-contact .contact-flex {
  margin-top: 1rem;
}

#drwNav .drw-contact .contact-flex .btn01 {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 200%;
  font-weight: 900;
  line-height: 1;
}

#drwNav .drw-contact .contact-flex .btn01 span {
  display: inline-block;
  padding-left: 30px;
  box-sizing: border-box;
  position: relative;
}

#drwNav .drw-contact .contact-flex .btn01 span::before {
  content: "";
  background-image: url(../img/common/tel_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: -3px;
  width: 27px;
  height: 43px;
}

#drwNav .drw-contact .contact-flex .btn02 {
  background: rgb(34, 108, 199);
  background: linear-gradient(180deg, rgba(34, 108, 199, 1) 0%, rgba(36, 66, 197, 1) 100%);
  padding: 15px 30px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 120%;
  text-decoration: none;
  color: #fff;
  max-width: 300px;
  width: 100%;
  transition: all ease-in 0.3s;
  margin-top: 1rem;
  text-align: center;
}

#drwNav .drw-contact .contact-flex .txt {
  margin-top: 1rem;
  text-align: center;
}

#drwNav .drw-contact .contact-flex .btn02 span {
  padding-left: 40px;
  position: relative;
  box-sizing: border-box;
}

#drwNav .drw-contact .contact-flex .btn02 span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(../img/common/email_icon_contact.png);
  width: 29px;
  height: 20px;
}

@media screen and (max-width:767px) {
  #drwNav .drw-contact .contact-flex .btn01 span::before {
    top: -6px;
  }
}

/* --------------------------------------------------
 header
-------------------------------------------------- */

@media screen and (min-width:1001px) {
  #header .header-flex .header-logo .logo-img:hover {
    opacity: 0.5;
  }

  #header .header-contact a:hover::before {
    opacity: 1;
  }
}

#header {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 1200px;
  margin: auto;
  padding: 0 4%;
  margin-top: 30px;
  z-index: 1;
}

#header .inner {
  display: flex;
  background-color: #fff;
}

/* header-flex ----------------------------------- */

#header .header-flex {
  display: flex;
  width: calc(100% - 130px);
  align-items: center;
  padding: 30px 20px;
  box-sizing: border-box;
}

#header .header-flex .header-logo {
  width: 55%;
  display: flex;
}

#header .header-flex .header-contact {
  max-width: 115px;
  width: 100%;
}

#header .header-flex .header-menu {
  width: 45%;
}

#header .header-flex .header-logo .logo-txt {
  width: calc(100% - 105px);
  padding-left: 15px;
  box-sizing: border-box;
}

#header .header-flex .header-logo .logo-txt .txt {
  width: 100%;
  display: block;
  font-weight: 900;
  line-height: 1;
}

#header .header-flex .header-logo .logo-txt .txt.txt01 {
  font-size: 100%;
}

#header .header-flex .header-logo .logo-txt .txt.txt02 {
  font-size: 150%;
  margin-top: 5px;

}

#header .header-flex .header-logo .logo-img {
  max-width: 105px;
  width: 100%;
  display: block;
  transition: all ease-in 0.3s;
}

#header .header-flex .header-menu .global-nav>ul {
  display: flex;
  justify-content: flex-end;
}

#header .header-flex .header-menu .global-nav>ul>li {
  position: relative;
}

#header .header-flex .header-menu .global-nav>ul>li>a,
#header .header-flex .header-menu .global-nav>ul>li>.trigger {
  text-decoration: none;
  font-weight: bold;
  font-size: 120%;
  padding: 0 20px;
  box-sizing: border-box;
  border-left: 1px solid #b3b3b3;
  cursor: pointer;
  display: block;
}

#header .header-flex .header-menu .global-nav>ul>li>a>span,
#header .header-flex .header-menu .global-nav>ul>li>.trigger>span {
  padding: 8px 0;
  box-sizing: border-box;
  display: inline-block;
  --qodef-underline-position-y: calc(100% - 1px);
  --qodef-underline-height: 3px;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, #196fdd 0, #196fdd 100%);
  transition: background-size .4s cubic-bezier(.51, .5, .07, .99), color .27s ease-out;
  background-position: 100% var(--qodef-underline-position-y);
  background-size: 0 var(--qodef-underline-height);
}

#header .header-flex .header-menu .global-nav>ul>li>a:hover>span,
#header .header-flex .header-menu .global-nav>ul>li>.trigger:hover>span {
  background-size: 100% var(--qodef-underline-height);
  background-position: 0 var(--qodef-underline-position-y);
  text-decoration: none;
}

#header .header-flex .header-menu .global-nav>ul>li.active>a>span,
#header .header-flex .header-menu .global-nav>ul>li.active>.trigger>span {
  background-size: 100% var(--qodef-underline-height);
  background-position: 0 var(--qodef-underline-position-y);
  text-decoration: none;
}

#header .header-flex .header-menu .global-nav>ul>li:last-child>a,
#header .header-flex .header-menu .global-nav>ul>li:last-child>.trigger {
  border-right: 1px solid #b3b3b3;
}

#header:not(.view) .child {
  visibility: hidden;
}

#header .header-flex .header-menu .global-nav>ul>li .child {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  min-width: 220px;
  transition: all 400ms cubic-bezier(.25, .46, .45, .94);
  background-color: #fff;
  padding: 20px 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#header .header-flex .header-menu .global-nav>ul>li:hover>.child {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

#header .header-flex .header-menu .global-nav>ul>li .child>ul>li>a {
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: all ease-in 0.3s;
}

#header .header-flex .header-menu .global-nav>ul>li .child>ul>li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #b3b3b3;
  box-sizing: border-box;
}

#header .header-flex .header-menu .global-nav>ul>li .child>ul>li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

#header .header-flex .header-menu .global-nav>ul>li .child>ul>li>a:hover {
  opacity: 0.5;
}

/* header-contact ----------------------------------- */

#header .header-contact {
  max-width: 130px;
  width: 100%;
}

#header .header-contact a {
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: all ease-in 0.3s;
  background: rgb(34, 108, 199);
  background: linear-gradient(90deg, rgba(34, 108, 199, 1) 0%, rgba(36, 66, 197, 1) 100%);
}

#header .header-contact a::before {
  opacity: 0;
  content: '\f077';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  margin: auto;
  transition: all ease-in 0.3s;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

#header .header-contact a span {
  position: relative;
  padding-top: 35px;
  box-sizing: border-box;
}

#header .header-contact a span::before {
  content: "";
  background-image: url(../img/common/email_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 44px;
  height: 32px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width:1200px) {
  #header .header-flex .header-logo {
    font-size: 1.3vw;
  }

  #header .header-flex .header-menu .global-nav>ul>li>a,
  #header .header-flex .header-menu .global-nav>ul>li>.trigger {
    font-size: 1.3vw;
  }

  #header .header-contact a span {
    font-size: 1.3vw;
    padding-top: 30px;
  }

  #header .header-contact a span::before {
    width: 37px;
    height: 25px;
  }

}

@media screen and (max-width:1000px) {
  #header {
    display: none;
  }
}

/* --------------------------------------------------
 contents
-------------------------------------------------- */

#contents {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

/* --------------------------------------------------
 footer
-------------------------------------------------- */

@media screen and (min-width:1001px) {
  #footer .footer-flex .footer-menu #fNav>ul li a:hover {
    opacity: 0.5;
  }

  #footer .footer-flex .footer-logo .logo-flex .logo-img:hover {
    opacity: 0.5;
  }
}

#footer {
  background-color: #ffffff;
  padding: 2rem 0;
  box-sizing: border-box;
}

#footer .footer-flex {
  display: flex;
}

/* footer-logo ------------------------ */

#footer .footer-flex .footer-logo {
  width: 45%;
}

#footer .footer-flex .footer-logo .logo-flex {
  display: flex;
  align-items: center;
}

#footer .footer-flex .footer-logo .logo-flex .logo-img {
  max-width: 85px;
  width: 100%;
  display: block;
  transition: all ease-in 0.3s;
}

#footer .footer-flex .footer-logo .logo-flex .logo-txt {
  width: calc(100% - 85px);
  padding-left: 15px;
  box-sizing: border-box;
}

#footer .footer-flex .footer-logo .logo-flex .logo-txt .txt {
  width: 100%;
  display: block;
  font-weight: bold;
  line-height: 1;
}

#footer .footer-flex .footer-logo .logo-flex .logo-txt .txt.txt02 {
  font-size: 130%;
  margin-top: 5px;
}

#footer .footer-flex .footer-logo .logo-flex .logo-txt .txt.txt01 {
  font-size: 90%;
}

#footer .footer-flex .footer-logo .copy {
  margin-top: 10px;
  font-weight: bold;
  font-size: 12px;
  display: block;
}

/* footer-menu ------------------------ */

#footer .footer-flex .footer-menu {
  width: 55%;
}

#footer .footer-flex .footer-menu #fNav>ul {
  display: flex;
  justify-content: flex-end;
}

#footer .footer-flex .footer-menu #fNav>ul>li>a {
  text-decoration: none;
  padding: 5px 0;
  font-weight: bold;
  transition: all ease-in 0.3s;
  display: inline-block;
  box-sizing: border-box;
}

#footer .footer-flex .footer-menu #fNav>ul>li {
  margin: 0 10px;
  display: block;
}

@media screen and (max-width:1000px) {
  #footer .footer-flex {
    flex-wrap: wrap;
  }

  #footer .footer-flex .footer-logo {
    width: 100%;
  }

  #footer .footer-flex .footer-menu {
    width: 100%;
    margin-top: 2rem;
  }

  #footer .footer-flex .footer-logo .ttl {
    text-align: center;
  }

  #footer .footer-flex .footer-logo .img>figure {
    text-align: center;
  }

  #footer .footer-flex .footer-logo .copy {
    text-align: center;
    margin-top: 1rem;
  }

  #footer .footer-flex .footer-menu #fNav>ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  #footer {
    padding: 4rem 0;
  }

  #footer .footer-flex .footer-logo .logo-flex {
    justify-content: center;
    flex-wrap: wrap;
  }

  #footer .footer-flex .footer-logo .logo-flex .logo-img {
    max-width: 100%;
  }

  #footer .footer-flex .footer-logo .logo-flex .logo-txt {
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin-top: 1rem;
  }

}