@charset "UTF-8";

/* Scss Document */
/*--------------------------------------------------
設定
--------------------------------------------------*/
/* Scss Document */
/* Scss Document */
.l_base {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .l_base {
    padding: 0 16px;
  }
}

/* Scss Document */
/* Scss Document */
.m_btn1 {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  min-width: 400px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px;
  transition: all 0.3s;
}

.m_btn1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  background: url(/assets/images/ico_arrow1.svg) no-repeat;
  background-size: contain;
  width: 18px;
  height: 10px;
}

@media screen and (min-width: 768px) {
  .m_btn1:hover {
    background: #313636;
    color: #fff;
    border: 1px solid #313636;
  }
}

.m_txtLink:hover {
  text-decoration: underline;
}

.m_sectionTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a3068;
}

@media screen and (max-width: 767px) {
  .m_sectionTtl {
    font-size: 3.8rem;
  }
}

.m_subTtl {
  width: 140px;
  position: relative;
  color: #268dd9;
  font-size: 2.4rem;
  font-family: "Chivo", sans-serif;
}

@media screen and (max-width: 767px) {
  .m_subTtl {
    font-size: 2rem;
  }
}

.m_subTtl::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 20px;
  width: 23px;
  height: 23px;
  background: url(/assets/images/ico_ttl.svg) no-repeat;
}

.m_subTtl.v-ico1 {
  width: 160px;
}

.m_subTtl.v-ico1::after {
  right: 20px;
}

.m_subTtl.v-ico2 {
  width: 115px;
}

/* clearfix */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  content: ".";
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

/* base style
--------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  color: #000;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* header */
.gHead {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  transition: 0.4s;
}

@media screen and (max-width: 767px) {
  .gHead {
    border-top: none;
    height: 50px;
  }
}

.gHead.is_active {
  background: transparent;
}

@media screen and (max-width: 767px) {
  .gHead.is_active {
    background: #fff;
    border-bottom: 1px solid #d4d4d4;
  }
}

.gHead.is_active .gHeadNav {
  display: none;
}

.gHead__inner {
  width: 100%;
  max-width: 1366px;
  margin: auto;
  padding: 0;
  position: relative;
  height: 100%;
}

.gHead .v-navBtn {
  position: relative;
  padding: 10px 20px 10px 45px;
  color: #fff;
  background: #1a3068;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .gHead .v-navBtn:hover {
    opacity: 0.6;
  }
}

.gHead .v-navBtn::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 18px;
  width: 15px;
  height: 12px;
  background: url(/assets/images/ico_mail.svg) no-repeat;
}

.gHead .v-navBtn:hover {
  color: #fff;
}

.gHead.is-animation {
  height: 70px;
  margin-top: -15px;
  padding-top: 10px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .gHead.is-animation {
    padding-top: 15px;
  }
}

@media screen and (min-width: 768px) {
  .gHead.is-animation .gLogo .gLogo__logoArea {
    left: 30px;
  }
}

.gHead.is-animation .gLogo .gLogo__logoArea img {
  width: 113px;
}

.gHead.is-animation .v-navBtn {
  padding: 5px 20px 10px 45px;
}

.gHead.is-animation .v-navBtn::before {
  top: 13px;
}

.gLogo {
  background: #fff;
  position: relative;
  top: 10px;
  margin: 0 10px;
}

.gLogo__logoArea {
  position: absolute;
  top: 18px;
  left: 15px;
  display: flex;
  align-items: center;
  margin-top: -10px;
}

@media screen and (max-width: 767px) {
  .gLogo__logoArea {
    top: 12px;
  }
}

.gLogo__logoArea--txt {
  position: relative;
  top: 2px;
  margin-left: 60px;
  font-weight: 700;
  color: #1a3068;
}

@media screen and (max-width: 910px) {
  .gLogo__logoArea--txt {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .gLogo__logoArea--txt {
    font-size: 1.4rem;
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .gLogo__logoArea .commonHumb {
    display: none;
  }
}

.gLogo img {
  width: 154px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .gLogo img {
    width: 113px;
  }
}

.gLogo.is_active {
  background: #fff;
  z-index: 99999;
  border-radius: 2px;
}

.gLogo.is_active .commonHumb {
  display: none;
}

.gLogo.is_active .gLogo__logoArea--txt {
  margin-left: 56px;
}

.commonHumb {
  position: relative;
  top: 2px;
  left: 10px;
  width: 14px;
  height: 17px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .commonHumb {
    left: auto;
    right: 20px;
    top: 17px;
  }
}

.commonHumb span {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 3px;
  background: #1a3068;
}

@media screen and (max-width: 767px) {
  .commonHumb span {
    left: auto;
    right: 0;
    background: #000;
    transition: all 0.2s;
  }
}

.commonHumb span::before,
.commonHumb span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 3px;
  background: #1a3068;
}

@media screen and (max-width: 767px) {

  .commonHumb span::before,
  .commonHumb span::after {
    height: 2px;
    background: #000;
  }
}

.commonHumb span::after {
  top: 14px;
}

@media screen and (max-width: 767px) {
  .commonHumb.is_active span {
    top: 5px;
    transform: rotate(45deg);
  }

  .commonHumb.is_active span::after {
    opacity: 0;
  }

  .commonHumb.is_active span::before {
    transform: rotate(-90deg);
    top: 0;
  }
}

.navClose {
  display: none;
  position: relative;
  top: -8px;
  left: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.navClose img {
  width: 100%;
}

.commonNav {
  display: none;
  justify-content: space-between;
  padding-top: 100px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
  max-width: 1240px;
  padding: 100px 20px 50px;
}

.commonNav>div {
  width: 270px;
}

.commonNav .commonNav__head {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a3068;
}

.commonNav ul {
  margin-bottom: 30px;
}

.commonNav ul li {
  position: relative;
  margin: 7px 0 7px 10px;
}

.commonNav ul li a {
  color: #313636;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .commonNav ul li a:hover {
    color: #268dd9;
  }
}

.gNavBg {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  width: 100vw;
  z-index: 10000;
}

.gNavBg.is_active {
  display: block;
  animation-name: opa;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.67, 0.88, 1.02);
}

.gHeadNav {
  position: absolute;
  top: 20px;
  right: -17px;
  display: flex;
}

@media screen and (max-width: 910px) {
  .gHeadNav {
    right: -10px;
  }
}

@media screen and (max-width: 767px) {
  .gHeadNav {
    display: none;
  }
}

.gHeadNav__list {
  display: flex;
}

.gHeadNav__list--item {
  margin-right: 25px;
  font-weight: 500;
}

@media screen and (max-width: 910px) {
  .gHeadNav__list--item {
    margin-right: 10px;
    font-size: 1.4rem;
  }
}

.gHeadNav__list--item.v-blank {
  position: relative;
}

.gHeadNav__list--item.v-blank::after {
  content: "";
  position: relative;
  top: 1px;
  margin-left: 10px;
  display: inline-block;
  background: url(/assets/images/ico_blank.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.gHeadNav__list--item.v-hasChild {
  cursor: pointer;
}

.gHeadNav__list--item.v-hasChild span {
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .gHeadNav__list--item.v-hasChild span:hover {
    color: #268dd9;
  }
}

.gHeadNav__list--item a {
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .gHeadNav__list--item a:hover {
    color: #268dd9;
  }
}

.gHeadNavChild {
  display: none;
  position: absolute;
  left: -50%;
  top: 50px;
  background: #fff;
  padding: 30px;
}

.gHeadNavChild.is_active {
  display: flex !important;
  z-index: 100000;
}

.gHeadNavChild__item {
  margin: 0 20px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {

  .commonHumb.v-sp,
  .commonNavSP {
    display: none !important;
  }

  .spFoot {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .commonNavSP {
    display: none;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 50px);
    overflow: auto;
    line-height: 1.8;
    padding-bottom: 200px;
  }

  .navList {
    margin: 10px 15px 0;
    font-size: 16px;
  }

  .navList .navList__item {
    border-bottom: 1px solid #d4d4d4;
    font-weight: bold;
  }

  .navList .navList__item .navList__item--txt {
    position: relative;
  }

  .navList .navList__item .navList__item--txt::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 15px;
    background: url(/assets/images/ico_arrow2.svg) no-repeat;
    background-size: contain;
    width: 17px;
    height: 17px;
  }

  .navList .navList__item .navList__item--txt.v-hasChild {
    padding: 10px 0;
  }

  .navList .navList__item .navList__item--txt.v-hasChild::after,
  .navList .navList__item .navList__item--txt.v-hasChild::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 22px;
    width: 15px;
    height: 2px;
    background: #262947;
  }

  .navList .navList__item .navList__item--txt.v-hasChild::after {
    transform: rotate(90deg);
  }

  .navList .navList__item .navList__item--txt.v-hasChild.is_active::after {
    opacity: 0;
  }

  .navList .navList__item .navList__item--txt a {
    padding: 10px 0;
    display: block;
  }

  .childNavList {
    display: none;
    font-weight: normal;
    margin-left: 5px;
  }

  .childNavList .childNavList__item {
    position: relative;
    border-bottom: 1px dashed #d4d4d4;
  }

  .childNavList .childNavList__item:last-child {
    border-bottom: none;
  }

  .childNavList .childNavList__item .childNavList__item--txt a {
    display: block;
    padding: 10px 0;
  }

  .childNavList .childNavList__item .childNavList__item--txt::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 18px;
    background: url(/assets/images/ico_arrow2.svg) no-repeat;
    background-size: contain;
    width: 11px;
    height: 11px;
  }

  .childNavList .childNavList__item .childNavList__item--txt.v-hasChild {
    padding: 10px 0;
  }

  .childNavList .childNavList__item .childNavList__item--txt.v-hasChild::after,
  .childNavList .childNavList__item .childNavList__item--txt.v-hasChild::before {
    content: "";
    position: absolute;
    right: 14px;
    top: 24px;
    width: 9px;
    height: 1px;
    background: #262947;
  }

  .childNavList .childNavList__item .childNavList__item--txt.v-hasChild::after {
    transform: rotate(90deg);
  }

  .childNavList .childNavList__item .childNavList__item--txt.is_active::after {
    opacity: 0;
  }

  .grandchildList {
    display: none;
    margin-top: 5px;
    margin-left: 0;
  }

  .grandchildList .grandchildList__item {
    position: relative;
    margin: 3px 0;
  }

  .grandchildList .grandchildList__item::before {
    content: "";
    position: relative;
    display: inline-block;
    left: 0x;
    top: -1px;
    padding-right: 20px;
    background: url(/assets/images/ico_arrow2.svg) no-repeat;
    background-size: contain;
    width: 11px;
    height: 11px;
  }
}

.gFoot {
  border-top: 2px solid #f3f4f7;
  margin-top: 100px;
}

.gFoot .commonNav {
  display: flex;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .gFoot .commonNav {
    display: none;
  }
}

.gFoot .commonNav>div {
  width: 25%;
  border-right: 2px solid #f7f7f7;
  padding-right: 20px;
  padding-left: 20px;
}

.gFoot .commonNav>div:last-child {
  border-right: none;
}

.gFoot .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  padding: 40px;
}

.gFoot .sns__item {
  margin: 0 20px;
}

.gFoot .sns a {
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .gFoot .sns a:hover {
    opacity: 0.6;
  }
}

.gFoot .copy {
  background: #1a3068;
  color: #fff;
  padding: 5px 0 8px;
  font-size: 1.4rem;
  text-align: center;
}