@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  common

---------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
#globalContainer {
  position: relative;
}
:root {
  --col-main: #394f6d;
  --col-sub01: #e8eef7;
  --col-sub02: #93b3ab;
  --col-hover: #c1272d;
  --col-bg01: linear-gradient(45deg, rgba(34, 99, 191, 1) 0%, rgba(117, 178, 114, 1) 100%);
  --col-bg02: linear-gradient(45deg, rgba(245, 246, 220, 1) 0%, rgba(195, 216, 237, 1) 100%);
  --en: "Outfit", sans-serif;
}
/*---------------------------------

  header

---------------------------------*/
header {
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem 0;
  width: 100%;
  z-index: 999;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin: auto;
  width: 92%;
}
header #logo {
  /*flex-basis: 45rem;*/
}
header #logo, header #logo * {
  transition: all .3s;
}
header #logo p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
header #logo p span {
  display: inline;
}
header #logo a {
  display: block;
  max-width: 50rem;
  width: 100%;
}
header #logo a svg {
  fill: var(--col-main);
  vertical-align: bottom;
  width: 100%;
}
header #logo a img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1377px) {
  header #logo {
    flex-basis: 35rem;
  }
}
@media screen and (max-width: 1180px) {
  header #logo {
    flex-basis: 30rem;
  }
}
@media screen and (max-width: 1024px) {
  header {
    padding: 2rem 0;
  }
  header .wrap {
    gap: 3rem;
  }
  header #logo {
    flex-basis: 30rem;
  }
  header #logo p {
    margin-bottom: 0.5rem;
  }
  header #logo a {}
  header #logo p span {
    display: inline-block;
  }
}
@media screen and (max-width: 974px) {
  header #logo {
    flex-basis: 23rem;
  }
}
@media screen and (max-width: 900px) {
  header {
    padding: 1.5rem 0;
  }
  header #logo {
    flex-basis: 30rem;
  }
}
@media screen and (max-width: 480px) {
  header {}
  header #logo a {
    max-width: 27rem;
  }
}
/*---------------------------------
  グローバルナビゲーション
---------------------------------*/
header #gnav {}
header #gnav .sub {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1rem;
}
header #gnav .sub ._tel p {
  display: flex;
  align-items: flex-end;
}
header #gnav .sub ._tel p:first-child {
  font-weight: 500;
  margin-bottom: .5rem;
}
header #gnav .sub ._tel a {
  display: block;
  pointer-events: none; /* PCでは電話をかけられないようにする */
  width: 22rem;
}
header #gnav .sub ._tel a svg {
  fill: var(--col-main);
  vertical-align: bottom;
  width: 100%;
}
header #gnav .sub ._tel a img {
  width: 100%;
  vertical-align: bottom;
}
header #gnav .sub ._tel span {
  line-height: 1;
  font-size: .9em;
}
header #gnav .sub ._mail {
  max-width: fit-content;
  width: 100%;
  text-align: center;
}
header #gnav .sub ._mail a {
  background: #474487;
  background: linear-gradient(45deg, #474487 0%, #c1272d 50%, #474487 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  border-radius: 5rem;
  color: #fff;
  display: block;
  padding: 1.5rem 3rem;
  position: relative;
}
header #gnav .sub ._mail a span {
  background: url("../images/i_mail_w.svg") no-repeat center left/1.8rem;
  padding-left: 3rem;
}
header #gnav .sub ._mail a:hover {
  background-position: 99% 50%;
  box-shadow: 0 .3rem .1rem rgba(110, 118, 160, 0.40);
  transform: translateY(-.3rem);
}
header #gnav .main {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
}
header #gnav .main li.PCnone {
  display: none;
}
header #gnav .main li {}
header #gnav .main li a {
  color: var(--col-main);
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem 0;
  position: relative;
}
header #gnav .main li a::after {
  background: var(--col-main);
  content: '';
  position: absolute;
  bottom: -.5px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
header #gnav .main li a:hover::after, header #gnav .main li a.currnt::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
header #gnav .main li a[target="_blank"] {
  background: url("../images/i_blank.svg") no-repeat center right/1em;
  padding-right: 2em;
}
@media screen and (max-width: 1440px) {
  header #gnav .main {
    gap: 3rem;
  }
}
@media screen and (max-width: 1270px) {
  header #gnav .main {
    gap: 2rem;
  }
  header #gnav .main li a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1123px) {
  header #gnav .main li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1110px) {
  header #gnav .main {
    gap: 1.7rem;
  }
  header #gnav .main li a {
    font-size: 1.4rem;
  }
  header #gnav .sub ._tel a {
    width: 18rem;
  }
  header #gnav .sub ._tel span {
    font-size: .8em;
  }
  header #gnav .sub ._mail a {
    font-size: 1em;
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 920px) {
  header #gnav .main {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  header #gnav .sub ._tel p {
    display: block;
  }
}
/*---------------------------------
  メガメニュー
---------------------------------*/
header .menu > ul {}
header .menu > ul > li {}
header .menu > ul > li a {}
header .menu > ul > li:hover {}
header .menu > ul > li > div._imgMenu, header .menu > ul > li > ul.normal-sub, header .menu > ul > li > div.tabmenu {
  display: none;
  width: 100%;
  background: #fff;
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.2);
  padding: 5rem 0;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
header .menu > ul > li > div._imgMenu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: auto;
  max-width: 140rem;
  width: 90%;
}
header .menu > ul > li > div._imgMenu ul li {
  flex-basis: calc(100%/4 - 3rem);
}
header .menu > ul > li > div._imgMenu ul li a {
  display: block;
}
header .menu > ul > li > div._imgMenu ul li a figure {
  aspect-ratio: 4 / 3;
  border: 1px solid #eee;
  overflow: hidden;
  position: relative;
}
header .menu > ul > li > div._imgMenu ul li a figure figcaption {
  background: var(--col-main);
  color: #fff;
  display: grid;
  font-family: var(--en);
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
}
header .menu > ul > li > div._imgMenu ul li a figure img {
  width: 100%;
  vertical-align: bottom;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .3s;
  transition: all .3s;
}
header .menu > ul > li > div._imgMenu ul li a:hover figure img {
  transform: scale(1.1);
}
header .menu > ul > li > div._imgMenu ul li a p.__ttl {
  font-size: 1.6rem !important;
  line-height: 1.3;
  margin-top: 1rem;
}
header .menu > ul > li > div._service ul {
  flex-wrap: nowrap;
  column-gap: 3rem;
}
header .menu > ul > li > div._service ul li {}
header .menu > ul > li > div._service ul li a[target="_blank"] {
  background: none !important;
  padding-right: 0 !important;
}
header .menu > ul > li > div._service ul li a[target="_blank"] p {
  background: url(../images/i_blank.svg) no-repeat center right / .6em;
  padding-right: 1.5em;
}
header .menu > ul > li > ul.normal-sub {
  border-radius: 1rem;
  width: 25rem;
  left: auto;
  padding: 10px 20px;
}
header .menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
header .menu > ul > li > ul.normal-sub > li a {
  font-size: 1.6rem !important;
  border: 0;
  padding: 1em 0;
}
header .tabmenu {
  min-height: 55rem;
}
header .tabmenu .wrap {
  align-items: normal;
  column-gap: 7rem;
  margin: auto;
  max-width: 140rem;
  width: 90%;
}
header .tab {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-basis: 30%;
}
header .tab li {
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  display: grid;
  align-items: center;
  height: 8rem;
  font-size: 1.2em;
  font-weight: bold;
}
header .tab li.select {
  border-color: var(--col-main);
}
header .content {
  display: grid;
  align-items: center;
  flex-basis: 70%;
}
header .content div {}
header .content div ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 5rem;
}
header .content div ul li a {}
header .content div ul.__imgMenu {
  gap: 1rem 3rem;
}
header .content div ul.__imgMenu li {
  flex-basis: calc(100% / 4 - 3rem);
}
header .content div ul.__imgMenu li a figure {
  aspect-ratio: 4 / 3;
  border: 1px solid #eee;
  overflow: hidden;
  position: relative;
}
header .content div ul.__imgMenu li a figure img {
  width: 100%;
  vertical-align: bottom;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .3s;
  transition: all .3s;
}
header .content div ul.__imgMenu li a:hover figure img {
  transform: scale(1.1);
}
header .content div ul.__imgMenu li.__other {
  display: grid;
  align-content: center;
}
header .hide {
  display: none;
}
@media (max-width: 1440px) and (max-height: 700px), (max-width: 1280px) and (max-height: 800px), (max-height: 840px) {
  header .menu > ul > li > div._imgMenu {
    padding: 3rem 0;
  }
  header .menu > ul > li:nth-child(2) > div._imgMenu ul li a figure {
    aspect-ratio: 4 / 2;
  }
}
@media screen and (max-width: 1440px) {
  header .tabmenu {
    min-height: 52.3rem;
  }
  header .menu > ul > li > div._service ul li:nth-child(4) a p br , header .menu > ul > li > div._service ul li:nth-child(5) a p br {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  header .tabmenu {
    min-height: 48.6rem;
  }
}
@media screen and (max-width: 1024px) {
  header .tabmenu {
    min-height: 42.1rem;
  }
}
/*---------------------------------
  追従
---------------------------------*/
#fixed-header {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 1000;
  padding: 0;
}
#fixed-header > .wrap {
  align-items: center;
}
#fixed-header #logo {}
#fixed-header #gnav {
  padding-top: 1.5rem;
}
#fixed-header #gnav .main li a {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 1440px) {
  #fixed-header #logo {}
}
@media screen and (max-width: 1024px) {
  #fixed-header #logo {}
  #fixed-header #gnav .sub {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 900px) {
  #fixed-header {
    display: none;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------
  896px〜トグルメニュー（ipad proサイズから）
---------------------------------*/
@media screen and (max-width: 900px) {
  .navToggle {
    background: var(--col-bg01);
    color: #fff;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
    width: 6rem;
    height: 6rem;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    background: #fff;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 20px;
    right: 0;
  }
  header .wrap .overlay {
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
  }
  header .wrap .overlay.active {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    transform: translateY(0%);
    right: 0;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 99;
    top: 0;
    right: -100%;
    max-width: 55rem;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    padding: 7.5rem 1.5rem 3rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav .gnav ul {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  header #gnav .sub {
    display: block;
    margin-bottom: 2rem;
  }
  header #gnav .sub ._tel {
    display: block;
    margin-bottom: 1.5rem;
  }
  header #gnav .sub ._tel a {
    width: 20rem;
  }
  header #gnav .sub ._tel span {
    margin-top: .5rem;
  }
  header #gnav .sub ._mail {
    max-width: 30rem;
  }
  header #gnav .main {
    flex-direction: column;
    gap: 3rem;
  }
  header #gnav .main li.PCnone {
    display: block;
  }
  header #gnav .main li {}
  header #gnav .main li a {
    font-size: 1.8rem;
    padding: 1.5rem 0;
  }
  /*---------------------------------
  メガメニュー
  ---------------------------------*/
  header #gnav .menu > ul {}
  header #gnav .menu > ul > li {
    position: relative;
  }
  header #gnav .menu > ul > li a {}
  header #gnav .menu > ul > li .dropdownBtn {
    cursor: pointer;
    display: block;
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    width: 5.8rem;
    height: 5.8rem;
  }
  header #gnav .menu > ul > li .dropdownBtn::before, header #gnav .menu > ul > li .dropdownBtn::after {
    content: '';
    background: var(--col-main);
    border-radius: 0.1em;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1em;
    height: 0.1em;
    position: absolute;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  header #gnav .menu > ul > li .dropdownBtn::before {}
  header #gnav .menu > ul > li .dropdownBtn::after {
    transform: rotate(90deg);
  }
  header #gnav .menu > ul > li .dropdownBtn.active::before {
    display: none;
  }
  header #gnav .menu > ul > li .dropdownBtn.active::after {
    transform: rotate(360deg);
  }
  header #gnav .menu > ul > li:hover {}
  header #gnav .menu > ul > li > div._imgMenu, header #gnav .menu > ul > li > ul.normal-sub, header #gnav .menu > ul > li > div.tabmenu {
    display: none;
    background: var(--col-sub01);
    box-shadow: none;
    padding: 2rem;
    position: inherit;
    left: auto;
    margin: auto;
  }
  header #gnav .menu > ul > li > div._imgMenu ul {}
  header #gnav .menu > ul > li > div._imgMenu ul li + li {
    margin-top: .5rem;
  }
  header #gnav .menu > ul > li > div._imgMenu ul li a {
    display: flex !important;
    align-items: center;
    gap: 2rem;
    padding: 0 !important;
  }
  header #gnav .menu > ul > li > div._imgMenu ul li a figure {
    flex: 0 0 10rem;
    aspect-ratio: 1;
  }
  header #gnav .menu > ul > li > div._imgMenu ul li a figure figcaption {
    width: 3rem;
    height: 3rem;
  }
  header #gnav .menu > ul > li > div._imgMenu ul li a p.__ttl {
    font-size: 1.6rem;
  }
  header #gnav .menu > ul > li > div._service ul {
    flex-wrap: wrap;
    gap: 2rem 1rem;
  }
  header #gnav .menu > ul > li > div._service ul li {}
  header #gnav .menu > ul > li > div._service ul li a figure {}
  header #gnav .menu > ul > li > div._service ul li a figure img {}
  header #gnav .menu > ul > li > ul.normal-sub {
    border-radius: 0;
    width: 100%;
  }
  header #gnav .menu > ul > li > ul.normal-sub > li {
    width: 100%;
  }
  header #gnav .menu > ul > li > ul.normal-sub > li a {
    font-size: 1.6rem !important;
    border: 0;
    padding: 1rem 0 !important;
  }
  header .tabmenu {
    min-height: none;
  }
  header #gnav .tabmenu .wrap {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  header #gnav .tab {
    display: flex !important;
    justify-content: space-between;
    gap: 1rem;
  }
  header #gnav .tab li {
    height: 5rem;
    font-size: 1em;
  }
  header .content {
    display: block;
    width: 100%;
  }
  header .content div {}
  header .content div ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 5rem;
  }
  header .content div ul li a {
    font-size: 1.6rem !important;
  }
  header .content div ul.__imgMenu {
    gap: 1rem 3rem;
  }
  header .content div ul.__imgMenu li {
    flex-basis: calc(100% / 4 - 3rem);
  }
  header .content div ul.__imgMenu li + li {
    margin-top: .5rem;
  }
  header .content div ul.__imgMenu li a {
    display: flex !important;
    align-items: center;
    gap: 2rem;
    padding: 0 !important;
  }
  header .content div ul.__imgMenu li a figure {
    aspect-ratio: 1;
    flex: 0 0 10rem;
  }
  header .content div ul.__imgMenu li.__other {
    display: block;
  }
  header .content div ul.__imgMenu li.__other a {
    display: block !important;
    padding: 1.5rem 0 !important;
  }
  header .hide {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  nav.globalMenuSp {
    max-width: 35rem;
    width: 90%;
    padding: 7.5rem 1.5rem 10rem;
  }
  header #gnav .sub ._tel a {
    pointer-events: auto;
  }
  header #gnav .menu > ul > li > div._imgMenu, header #gnav .menu > ul > li > ul.normal-sub, header #gnav .menu > ul > li > div.tabmenu {
    padding: 1rem;
  }
  header #gnav .menu > ul > li > div._imgMenu ul li a figure, header .content div ul.__imgMenu li a figure {
    aspect-ratio: 1;
    flex: 0 0 7rem;
  }
  header #gnav .tab li {
    font-size: 0.9em;
  }
}
/*---------------------------------

  strengthsBlock

---------------------------------*/
.strengthsBlock {
  background: #f2f2f2;
  padding: 0;
}
.strengthsBlock .title {
  margin: 0;
  padding: 7rem 0 5rem;
  text-align: center;
}
.strengthsBlock .title h2 span {
  display: block !important;
  margin: 2rem 0;
}
.strengthsBlock .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.strengthsBlock .wrap .itemBox {
  position: relative;
}
.strengthsBlock .wrap .itemBox figure {}
.strengthsBlock .wrap .itemBox figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  vertical-align: bottom;
}
.strengthsBlock .wrap .itemBox p {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: right;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.strengthsBlock .wrap .itemBox p span {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 0 1rem;
  margin: 0.2rem 0;
}
@media screen and (max-width: 1024px) {
  .strengthsBlock .wrap .itemBox p {
    font-size: 1.8rem;
    bottom: 1rem;
    right: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .strengthsBlock .title {
    padding: 5rem 0 3rem;
  }
  .strengthsBlock .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .strengthsBlock .title {
    padding: 3rem 0 1rem;
  }
  .strengthsBlock .title h2 span {
    margin: 1rem 0;
  }
  .strengthsBlock .wrap {
    display: block;
  }
  .strengthsBlock .wrap .itemBox {
    display: flex;
    align-items: center;
  }
  .strengthsBlock .wrap .itemBox figure {
    flex-basis: 50%;
  }
  .strengthsBlock .wrap .itemBox p {
    color: inherit;
    flex-basis: 50%;
    font-size: 1.6rem;
    padding: 1.5rem;
    position: initial;
    text-align: left;
  }
  .strengthsBlock .wrap .itemBox:nth-child(even) p {
    order: -1;
    text-align: right;
  }
  .strengthsBlock .wrap .itemBox p span {
    background: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
  }
}
/*---------------------------------

	contact

---------------------------------*/
#contactBlock {
  background: url("../images/contact-bg.jpg") no-repeat center/cover;
  padding: 10rem 0;
  position: relative;
}
#contactBlock::after {
  background: var(--col-bg01);
  content: '';
  opacity: .8;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
#contactBlock .l-inner {
  color: #fff;
  max-width: 94rem;
  position: relative;
  z-index: 2;
}
#contactBlock .title {
  margin-bottom: 7rem;
  text-align: center;
}
#contactBlock .title ._en {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}
#contactBlock .title h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
#contactBlock .wrap {
  display: flex;
}
#contactBlock .wrap dl {
  flex-basis: 50%;
  text-align: center;
  padding: 2rem 3rem;
}
#contactBlock .wrap dl dt {
  margin-bottom: 3rem;
}
#contactBlock .wrap dl dt::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  margin: auto;
  width: 9rem;
  height: 9rem;
}
#contactBlock .wrap dl dt span {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 1rem;
}
#contactBlock .wrap dl.telBox dt::before {
  background-image: url("../images/contact_tel.svg");
}
#contactBlock .wrap dl.telBox dd ._tel {
  max-width: 39rem;
  margin-bottom: 1rem;
}
#contactBlock .wrap dl.telBox dd ._tel a {
  display: block;
  pointer-events: none;
}
#contactBlock .wrap dl.telBox dd ._tel img {
  width: 100%;
  vertical-align: bottom;
}
#contactBlock .wrap dl.webBox {
  border-left: 1px solid;
}
#contactBlock .wrap dl.webBox dt::before {
  background-image: url("../images/contact_form.svg");
}
#contactBlock .wrap dl.webBox dd .btn {
  max-width: 30rem;
  margin: auto;
}
#contactBlock .wrap dl.webBox dd .btn a {
  background: #fff;
  border-radius: 5rem;
  color: var(--col-main);
  display: block;
  padding: 1.5rem 0;
  position: relative;
  text-align: center;
}
#contactBlock .wrap dl.webBox dd .btn span {
  background: url("../images/arr_b.svg") no-repeat center right 2rem/2rem;
  display: block;
  font-size: 1em;
  font-weight: 500;
  z-index: 1;
  transition: all .3s;
}
#contactBlock .wrap dl.webBox dd .btn a:hover {
  box-shadow: 0 2rem 4rem 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-1rem);
}
#contactBlock .wrap dl.webBox dd .btn a:hover span {
  background-position: center right 1.5rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #contactBlock {
    padding: 6rem 0 3rem;
  }
  #contactBlock .title {
    margin-bottom: 3rem;
  }
  #contactBlock .title h2 {
    font-size: 2.5rem;
  }
  #contactBlock .wrap {
    display: block;
  }
  #contactBlock .wrap dl {
    padding: 2.5rem 1rem;
  }
  #contactBlock .wrap dl.telBox dd ._tel {
    max-width: 25rem;
    margin: 0 auto 1rem;
  }
  #contactBlock .wrap dl.telBox dd ._tel a {
    pointer-events: auto;
  }
  #contactBlock .wrap dl.webBox {
    border-top: 1px solid;
    border-left: none;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  padding: 12rem 0 0;
}
footer .l-inner {
  max-width: 140rem;
}
footer a {
  color: var(--col-main);
  display: block;
}
footer img {
  width: 100%;
  vertical-align: bottom;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
footer .wrap .infoBox {}
footer .wrap .infoBox ._logo {
  max-width: 40rem;
}
footer .wrap .infoBox address {
  font-style: normal;
  display: block;
  margin: 2rem 0 3rem;
}
footer .wrap .infoBox ._prantsLink {
  max-width: 42rem;
}
footer .wrap .infoBox ._prantsLink a {
  display: inline;
}
footer .wrap .infoBox ._prantsLink img {
  border: 1px solid #ccc;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: all .3s;
  transition: all .3s;
}
footer .wrap .infoBox ._prantsLink p {
  background: url("../images/i_blank.svg") no-repeat center right/1em;
  display: inline-block;
  padding-right: 2em;
  margin-top: .5rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}
footer .wrap .infoBox ._prantsLink a:hover p {
  background-image: url("../images/i_blank_hover.svg");
}
footer .wrap .infoBox ._prantsLink a:hover img {
  border-color: #888;
}
footer .wrap .infoBox ._prantsLink a:hover p {
  color: var(--col-hover);
}
footer .wrap .navBox {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
footer .wrap .navBox ul {
  list-style: none;
}
footer .wrap .navBox ul li {
  margin: .5rem 0;
}
footer .wrap .navBox ul li a {
  display: inline-block;
  font-weight: 500;
}
footer .wrap .navBox ul li a:hover {
  color: var(--col-hover);
}
footer .wrap .navBox ul li a[target="_blank"] {
  background: url("../images/i_blank.svg") no-repeat center right/1em;
  padding-right: 2em;
}
footer .wrap .navBox ul li a[target="_blank"]:hover {
  background-image: url("../images/i_blank_hover.svg");
}
footer .wrap .navBox ul.__child {
  font-size: .9em;
  margin-left: 1em;
  margin-bottom: 1rem;
}
footer .wrap .navBox ul.__child li a[target="_blank"] {
  background: none;
  padding-right: 0;
}
footer .copylight {
  border-top: 1px solid #8899b0;
  margin-top: 5rem;
  padding: 5rem 0;
  text-align: center;
}
footer .copylight small {
  font-size: .7em;
  letter-spacing: 2px;
}
@media screen and (max-width: 1150px) {
  footer .wrap {
    flex-direction: column-reverse;
  }
  footer .wrap .infoBox {
    text-align: center;
    display: grid;
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  footer .wrap .infoBox {
    margin: auto;
    max-width: fit-content;
    text-align: center;
    width: 90%;
  }
  footer .wrap .navBox {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  footer {
    padding: 5rem 0 7rem;
  }
  footer .copylight {
    padding: 2.5rem 0;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
}
#page-top a {
  background: #394f6d;
  text-decoration: none;
  color: #fff;
  width: 5rem;
  height: 5rem;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: var(--col-hover);
}
#page-top a:hover .arrow::before {
  top: -10px;
}
/*---------------------------------
	btn
---------------------------------*/
.btn {
  max-width: 30rem;
  margin: auto;
}
.btn a {
  background: var(--col-bg01);
  border-radius: 5rem;
  color: #fff;
  display: block;
  padding: 1.5rem 0;
  position: relative;
  text-align: center;
}
.btn a span {
  background: url("../images/arr_w.svg") no-repeat center right 2rem/2rem;
  display: block;
  font-size: 1em;
  font-weight: 500;
  z-index: 1;
  transition: all .3s;
}
.btn a:hover {
  box-shadow: 0 2rem 4rem 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-1rem);
}
.btn a:hover span {
  background-position: center right 1.5rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .btn {
    max-width: 23rem;
  }
  .btn a span {}
  .btn a::after {}
}
/*---------------------------------
	inview
---------------------------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .5s;
}