@charset "UTF-8";
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) { 
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  color: #262626;
  font-size: 1.6rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  width: 100%;
  height: 100%;
  position: relative;
}
.l-wrapper {
  position: relative;
  min-width: 1200px;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width:767px){
  .l-wrapper {
      min-width: inherit;
  }
}
.l-header {
  padding: 0 3.5%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  background: #fff;
  /*
  border-bottom: 1px solid #ddd;
  */
}
.is-home .l-header {
  border-bottom: none;
}
.p-header__logo {
  width: 33.5rem;
}
.p-header__navList {
  display: flex;
  padding-top: 2.3rem;
}
.p-header__navList li {
  margin-left: 3rem;
}
.p-header__navList li:first-of-type {
  margin-left: 0;
}
.p-header__navList a {
  display: inline-block; 
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}
.p-header__navList a:after {
  content: "";
  display: inline-block;
  height: 2px;
  background: #0E78C4;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  width: 0;
  transition: .2s;
}
.p-header__navList a:hover:after {
  width: 100%;
}
.p-header__navList a span {
  display: inline-block;
  position: absolute;
  background: #0E78C4;
  border-radius: .4rem;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: .07em;
  font-weight: 700;
  padding: .5rem .7rem;
  top: -3.2rem;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, 0);
}
.p-header__navList a span:after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #0E78C4 transparent transparent transparent;
  position: absolute;
  left: calc(50% - 2px);
  bottom: -5px;
}
.p-header__spNavTrigger {
  display: none;
}
@media screen and (max-width: 1300px) {
  .p-header__navList li {
    margin-left: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .l-spNav {
    display: none!important;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 0 0 2rem;
    height: 5.6rem;
  }
  .p-header__nav {
    display: none;
  }
  .p-header__logo {
    width: 24rem;
  }
  .p-header__spNavTrigger {
    width: 5.6rem;
    height: 5.6rem;
    background: #0E78C4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .p-header__spNavTriggerIcon {
    position: relative;
    width: 2.4rem;
    height: 1.8rem;
    z-index: 2;
  }
  .p-header__spNavTriggerLine {
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: .3s;
  } 
  .p-header__spNavTriggerLine--top {
    top: 0;
  }
  .p-header__spNavTriggerLine--mid {
    top: .8rem;
  }
  .p-header__spNavTriggerLine--btm {
    bottom: 0;
  }
  .p-header__spNavTrigger.is-active .p-header__spNavTriggerLine--top {transform: rotate(135deg); top: .8rem; width: 2.5rem;}
  .p-header__spNavTrigger.is-active .p-header__spNavTriggerLine--mid {opacity: 0;}
  .p-header__spNavTrigger.is-active .p-header__spNavTriggerLine--btm {transform: rotate(45deg); bottom: .8rem; width: 2.5rem;}
  .l-spNav {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 9;
    background: #fff;
    background: rgba(255, 255, 255, .98);
    border-bottom: 3px solid #0E78C4;
    padding-bottom: 3rem;
    box-shadow: 0px 2px 7px 4px rgba(0, 0, 0, .2);
  }
  .p-spNav__list01 {
    margin-bottom: 2.2rem;
    border-top: 1px solid #ddd;
  }
  /*
  .is-home .p-spNav__list01 {
    border-top: 1px solid #ddd;
  }
  */
  .p-spNav__list01 li {
    border-bottom: 1px solid #ddd;
  }
  .p-spNav__list01 li a {
    display: block;
    padding: 1.8rem 2rem;
    font-weight: 500;
    position: relative;
  }
  .p-spNav__list01 li a:after {
    content: "\f105" !important;
    font-family: FontAwesome !important;
    float: none!important;
    color: #0E78C4;
    position: absolute;
    right: 2rem;
    top: calc(50% - 1rem);
    font-size: 1.8rem;
  }
  .p-spNav__list01 li a span {
    display: inline-block;
    background: #0E78C4;
    border-radius: .3rem;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: .05em;
    font-weight: 500;
    padding: .5rem .7rem;
    white-space: nowrap;
    position: relative;
    margin-right: 1.2rem;
  }
  .p-spNav__list01 li a span:after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #0E78C4;
    position: absolute;
    right: -6px;
    bottom: auto;
    top: calc(50% - 3px);
    vertical-align: 2px;
  }
  .p-spNav__list02 {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .p-spNav__list02 li {
    margin: 0 1.5rem;
    font-size: 1.4rem;
  }
  .p-spNav__list02 li:nth-of-type(1) a:after {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1rem;
    background: url("../images/common/icon_external.svg") no-repeat 0 0 / 1.1rem 1rem;
    margin-left: .5rem;
  }
  .p-spNav__list03 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-spNav__list03 li {
    margin: 0 .6em;
  }
  .p-spNav__list03 li a {
    font-size: 2.4rem;
  }
  .p-spNav__list03 li:nth-child(1) a {
    color: #FF0000;
  }
  .p-spNav__list03 li:nth-child(2) a {
    color: #1877F2;
  }
  .p-spNav__list03 li:nth-child(3) a {
    color: #1DA1F2;
  }
  .p-spNav__list03 li:nth-child(4) a {
    color: #CF2E92;
  }
  
}
.l-main {
  width: 100%;
  position: relative;
  z-index: 0;
}
.l-aside {
  width: 100%;
  background: #E4F5FF;
  display: flex;
  justify-content: center;
	align-items: center;
  height: 10rem;
  transition: .5s .3s cubic-bezier(0.87, 0, 0.13, 1);
  transform-origin: left center;
  transform: scaleX(0%);
  overflow: hidden;
}
.l-aside.is-active {
  transform: scaleX(100%);
}
.l-aside > * {
  opacity: 0;
  transform: translateY(4rem);
  transition: .5s .8s;
}
.l-aside.is-active > * {
  opacity: 1;
  transform: translateY(0);
}
.l-aside h2 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.66;
  padding-left: 5.7rem;
  position: relative;
}
.l-aside h2:before {
  content: "";
  display: inline-block;
  width: 3.6rem;
  height: 4.7rem;
  background: url("../images/common/icon_like.svg") no-repeat 0 0 / 3.6rem 4.7rem;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5rem);
}
.l-aside ul {
  display: flex;
  margin-left: 5rem;
  padding-right: 3rem;
}
.l-aside ul li {
  margin-left: 2rem;
}
.l-aside ul li:first-of-type {
  margin-left: 0rem;
}
.l-aside ul a {
  display: block;
  width: 7rem;
  height: 7rem;
  text-align: center;
  line-height: 7rem;
  background: #fff;
  border-radius: .7rem;
  transition: .2s;
}
.is-pc .l-aside ul a:hover {
  box-shadow: 0 0 .7rem rgba(20, 97, 152, .3);
}
.l-aside ul li:nth-child(1) a {
  color: #FF0000;
  font-size: 3.8rem;
}
.l-aside ul li:nth-child(2) a {
  color: #1877F2;
  font-size: 4.2rem;
  line-height: 7.3rem;
}
.l-aside ul li:nth-child(3) a {
  color: #1DA1F2;
  font-size: 3.9rem;
}
.l-aside ul li:nth-child(4) a {
  color: #CF2E92;
  font-size: 3.9rem;
}
@media screen and (max-width: 767px) {
  .l-aside {
    display: block;
    height: auto;
    padding: 3rem 2rem;
  }
  .l-aside h2 {
    display: flex;
    padding-left: 0;
    position: relative;
    justify-content: center;
	  align-items: center;
    margin-bottom: 2rem;
  }
  .l-aside h2:before {
    position: static;
    margin-right: 1.5rem;
  }
  .l-aside ul {
    display: flex;
    justify-content: center;
    margin: 0 -1rem;
    padding-right: 0;
  }
  .l-aside ul li {
    margin: 0 1rem;
  }
}

.l-footer {
  position: relative;
  z-index: 0;
  max-width: calc(1200px + 7%);
  padding: 5rem 3.3% 12.8rem;
  margin: 0 auto;
}
.p-footer__row01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.p-footer__row01 h2 {
  margin-bottom: 2rem;
}
.p-footer__row01 address {
  font-size: 1.4rem;
  line-height: 2;
}
.p-footer__nav01 {
  width: 58rem;
}
.p-footer__nav01List {
  display: flex;
  flex-wrap: wrap;
}
.p-footer__nav01List li {
  width: 22.5rem;
  flex-shrink: 0;
  margin-bottom: 2rem;
}
.p-footer__nav01List li:nth-of-type(3) {
  width: auto;
}
.p-footer__nav01List li a {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}
.p-footer__nav01List li a:after {
  content: "";
  display: inline-block;
  height: 1px;
  background: #0E78C4;
  position: absolute;
  bottom: 0;
  left: 2.4rem;
  border-radius: 2px;
  width: 0;
  transition: .2s;
}
.is-pc .p-footer__nav01List li a:hover:after {
  width: calc(100% - 2.4rem);
}
.p-footer__nav01List li a:before {
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;;
  background: url("../images/common/icon_chevron-circle-right_blue.svg") no-repeat 0 0 / 1.9rem 1.9rem;
  vertical-align: -.4rem;
  margin-right: .5rem;
}
.p-footer__row02 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-footer__nav02List {
  display: flex;
}
.p-footer__nav02List li {
  margin-left: 3rem;
  font-size: 1.4rem;
}

.p-footer__nav02List li a {
  display: inline-block;
  position: relative;
}
.p-footer__nav02List li a:before {
  content: "";
  display: inline-block;
  height: 1px;
  background: #262626;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  transition: .2s;
}
.is-pc .p-footer__nav02List li a:hover:before {
  width: 100%;
}


.p-footer__nav02List li:nth-of-type(1) a:after {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1rem;
  background: url("../images/common/icon_external.svg") no-repeat 0 0 / 1.1rem 1rem;
  margin-left: .5rem;
}
.p-footer__copy {
  font-family: 'Montserrat', sans-serif;
  color: #7E7E7E;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 4.5rem 2rem 9rem;
  }
  .p-footer__row01 {
    display: block;
    margin-bottom: 2.5rem;
  }
  .p-footer__row01 h2 {
    width: 28rem;
    margin-bottom: 1rem;
  }
  .p-footer__row01 address {
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .p-footer__nav01 {
    width: auto;
  }
  .p-footer__nav01List {
    display: block;
  }
  .p-footer__nav01List li {
    width: 100%;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
  }
  .p-footer__row02 {
    display: block;
  }
  .p-footer__nav02List {
    display: block;
    margin-bottom: 2.5rem;
  }
  .p-footer__nav02List li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
}
.l-fixedNav {
  width: 0;
  height: 7.8rem;
  position: fixed;
  bottom: 0;
  background: #0E78C4;
  transition: .7s cubic-bezier(0.87, 0, 0.13, 1);
}
.is-loaded .l-fixedNav {
  width: 100%;
}
.p-fixedNav__list{
  max-width: calc(1200px + 7%);
  height: 100%;
  padding: 0 3.5%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
	align-items: center;
  opacity: 0;
  transform: translateY(4rem);
  transition: .6s .6s;
}
.is-loaded .p-fixedNav__list {
  opacity: 1;
  transform: translateY(0);
}
.p-fixedNav__tel {
  position: relative;
  padding-left: 10rem;
  display: flex;
  align-items: center;
}
.p-fixedNav__tel:before {
  content: "";
  display: inline-block;
  width: 8.8rem;
  height: 5.3rem;
  position: absolute;
  left: 0;
  top: calc(50% - 2.7rem);
  background: url("../images/common/footer_tel_txt.svg") no-repeat 0 0 / 8.8rem 5.3rem;;
}
.p-fixedNav__tel a {
  display: inline-block;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0em;
  position: relative;
  padding-left: 4.4rem;
}
.p-fixedNav__tel a:before {
  content: "";
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  left: 0;
  top: calc(50% - 1.8rem);
  background: url("../images/common/icon_tel_white.svg") no-repeat 0 0 / 3.6rem 3.6rem;
}
.p-fixedNav__tel p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 1.7rem;
}
.p-fixedNav__mail {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.p-fixedNav__mail a {
  width: 48.5rem;
  height: 4.2rem;
  text-align: center;
  display: flex;
  justify-content: center;
	align-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: .1em;
  transition: .2s;
}
.p-fixedNav__mail a:hover {
  opacity: .7;
}
.p-fixedNav__mail a small {
  font-weight: 700;
  font-size: 100%;
  letter-spacing: .1em;
}
.p-fixedNav__mail a:before {
  content: "";
  display: inline-block;
  width: 3.9rem;
  height: 3.9rem;
  background: url("../images/common/icon_mail_white.svg") no-repeat 0 0 / 3.9rem 3.9rem;
  margin-right: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-fixedNav {
    height: 5rem;
  }
  .p-fixedNav__list {
    padding: 0;
  }
  .p-fixedNav__tel {
    padding-left: 1rem;
    padding-top: .5rem;
    display: block;
  }
  .p-fixedNav__tel:before {
    display: none;
  }
  .p-fixedNav__tel a {
    font-size: 2.2rem;
    padding-left: 2.8rem;
  }
  .p-fixedNav__tel a:before {
    width: 2.2rem;
    height: 2.2rem;
    top: calc(50% - 1.4rem);
    background-size: 2.2rem 2.2rem;
  }
  .p-fixedNav__tel p {
    font-size: 1.1rem;
    letter-spacing: 0em;
    margin-left: 0;
    line-height: 1.4;
  }
  .p-fixedNav__tel p br {
    display: none;
  }
  .p-fixedNav__mail {
    border-right: none
  }
  .p-fixedNav__mail a {
    width: 15.5rem;
    height: 2.6rem;
    letter-spacing: .05em;
  }
  .p-fixedNav__mail a small {
    display: none;
  }
  .p-fixedNav__mail a:before {
    width: 2.2rem;
    height: 2.2rem;
    background-size: 2.2rem 2.2rem;
    margin-right: .6rem;
  }
}
