@charset "utf-8";

@import "_variables";


/* ----------------------------------------------------------

anime

---------------------------------------------------------- */
.wrapper {
  overflow: hidden;
}

img{
  vertical-align: bottom;
}

.anime_copy{
  opacity: 0;
  &.open{
    opacity: 1;
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
            transform: scale3d(1.25, .75, 1);
  }
  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
            transform: scale3d(.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
            transform: scale3d(1.15, .85, 1);
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}


@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/* ----------------------------------------------------------

CMN color

---------------------------------------------------------- */

img {
  width: 100%;
}

small,span,em{
  font-style: initial;
}

.red{
  color: $color01;
}

.blue{
  color: $color02;
}

/* ボタン */
button{
  border: none;
  color: #fff;
  width: 100%;
  position: relative;
  height: 42px;
  max-width: 206px;
  display: block;
  margin: 0 auto;
  font-size: 18px;
  font-family: $font03;
  font-style: italic;
  font-weight: 500;
  &:after{
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-width: 3px 0 3px 4px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    content: '';
  }
  &.open{
    animation: 2.0s ease 1.0s normal fadeInUp both;
  }
}

@media screen and (max-width: 760px) {
/* for sp Device Only */
  button{
    max-width: 50%;
    height: 38px;
    font-size: 3.8vw;
  }
}


/* 各種ベース */
.black_btn{
  background: $color-base;
  color:#fff;
  max-width: 396px;
  border-radius: 70px;
  font-size: 19px;
  font-family: $font-tit;
  height: 60px;
  position: relative;
  @media screen and (max-width: 760px) {
  /* for sp Device Only */
    max-width: 70%;
    height: 40px;
    font-size: 3.8vw;
  }
  &:after{
    border-color: transparent transparent transparent #fff;
    content: '';
    width: 20px;
    border-width: 6px 0 6px 9px;
    @media screen and (max-width: 760px) {
    /* for sp Device Only */
      width: 16px;
      border-width: 5px 0 5px 8px;
    }
  }
}

.wh_btn{
  color: $color-base;
  background: #fff;
  &:after{
    border-color: transparent transparent transparent $color-base;
    content: '';
  }
}

.blue_btn {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9eaee1+0,2045ba+92 */
  background: #2045ba; /* Old browsers */
  // background: -moz-linear-gradient(left, #9eaee1 0%, #2045ba 92%); /* FF3.6-15 */
  // background: -webkit-linear-gradient(left, #9eaee1 0%,#2045ba 92%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #9eaee1 0%,#2045ba 92%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9eaee1', endColorstr='#2045ba',GradientType=1 ); /* IE6-9 */

}

.red_btn {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9eaee1+0,2045ba+92 */
  background: #e23302; /* Old browsers */
  // background: -moz-linear-gradient(left, #f4b09e 0%, #e23302 92%); /* FF3.6-15 */
  // background: -webkit-linear-gradient(left, #f4b09e 0%,#e23302 92%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f4b09e 0%,#e23302 92%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4b09e', endColorstr='#e23302',GradientType=1 ); /* IE6-9 */
}

/* ----------------------------------------------------------

Base Layout

---------------------------------------------------------- */
body {
}


.section_cmn{
  padding: 0px 0 70px;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .section_cmn{
    padding: 0 0 10%;
  }
  .section_inner {
    padding: 0 5%;
  }
  .flexbox {
    display: flex;
    flex-wrap:wrap;
  }
}

ul.slick-dots li.slick-active {
  background: $color01;
}



/*  tetliタグ
---------------------------------------------------------- */

.tbl_rec{
  display: flex;
  max-width: 1100px;
  margin: 0 auto 40px;
  border: 1px solid #ccc;
  border-top: none;
  flex-wrap: wrap;
  dt {
    display: flex;
    box-sizing: border-box;
    width: 30%;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #ccc;
    background: $color-base;
    justify-content: center;
    align-items: center;
  }
    dd {
    box-sizing: border-box;
    width: 70%;
    margin: 0;
    padding: 10px;

    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #fff;
  }
}

@media screen and (max-width: 760px) {
/* for sp Device Only */
.tbl_rec{
    font-size: 3.8vw;
    width: 100%;
    margin: 0 auto 10%;
    border: 1px solid #ccc;
    border-top: none;
    dt {
      width: 100%;
      padding: 10px;
    }
     dd {
      width: 100%;
      margin: 0;
      padding: 10px;
    }
  }
}

/*  tetliタグ
---------------------------------------------------------- */
[id^="ttr"] [data-ttr~=container] {
  z-index: 1000000!important;
}


/*  btn
---------------------------------------------------------- */

a:hover .more {
  background-color: $color-base;
  color: #fff;
}



.btn_more{
  width:225px;
  height:44px;
  margin-left:auto;
  margin-right:auto;
  position:relative;

  a {
    background: #FFF;
    background: $color-base;
    color: #fff;
    font-size: 14px;
    line-height:42px;
    display:block;
    text-align:center;
    text-decoration:none;
    font-weight: 500;
  }
  a:hover {
    background-color: $color-base;
    color: #fff;
  }
}

.btn{
  width:216px;
  height:42px;
  margin-left:auto;
  margin-right:auto;

  a {
    text-align:center;
    text-decoration:none;
    color: #FFF;
    position:relative;
    display:block;
    font-size: 14px;
    line-height:42px;
    transition: all .4s;
    background:$color-cv;
  }
}


@media screen and (max-width: 760px) {
  .btn{
    width:80%;
  }
}


/*  wrapInner
---------------------------------------------------------- */

#wrapInner {
  width:100%;
}

#container {

  margin:0 auto;
  padding:0 0 35px;
}


/*  header
---------------------------------------------------------- */

.header {
  width: 100%;
  height: 67px;
  z-index: 9000;
  transition: 0.5s;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  &.fixed{
    background: #fff;
  }
}

.header a{
  text-decoration: none;
}

.header .inner{
  width: 99%;
  margin: 8px auto;
}

.header .logo_box {
  float: left;
}



.header h1 a{
  display: block;
  height: 100%;
  background: url(../img/cmn/hlogo.png) 0 0 no-repeat;
  background-size: 100% auto;
  max-width: 170px;
  padding: 8px 0 8px 160px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-indent: 115%;
  overflow: hidden;
  /* for sp iPad */
  @media screen and (max-width: 979px) {
    display: none;
  }
  @media screen and (max-width: 760px) {
  /* for sp Device Only */
    display: block;
  }
}

@media screen and (min-width:741px){
  .header .logo_box {
    width: 13%;
  }
  .header h1{
    width: 100%;
    max-width: 208px;
  }
  .header h1 a{
    padding: 12px 0;
  }
}

.header .gnav {
  text-align: right;

  width: 87%;
  float: right;
  /* for sp iPad */
  @media screen and (max-width: 979px) {
    width: 100%;
  }
  li {
    display: inline-block;
    vertical-align: top;
    margin-top: 14px;
    /* for sp iPad */
    @media screen and (max-width: 979px) {
      margin-top: 11px;
    }
    a {
      font-family: $font01;
      font-weight: 700;
      font-size: 14px;
      padding:1px 8px 0;
      text-align:center;
      display:block;
      position: relative;
      transition: 0.3s;
    }

    span {
      display: block;

      &.en {
        font-size: 14px;
      }
    }
  }

  li.cv {
    width: 13%;
    min-width: 129px;
    max-width: 186px;
    height: 50px;
    margin-top: 0px;
    margin-left: 12px;
    /* for sp iPad */
    @media screen and (max-width: 979px) {
      min-width: 106px;
      margin-left: 2px;
      width: 5%;
      height: 40px;
    }
    a {
      display: block;
      width: 100%;
      font-size: 15px;
      height: 100%;
      background: $color-cv;
      line-height: 47px;
      color: #FFF;
      position: relative;
      /* for sp iPad */

      @media screen and (max-width: 979px) {
        line-height: 40px;
      }
      &:after{
        position: absolute;
        top: 0;
        right: 7px;
        bottom: 0;
        width: 0;
        height: 0;
        margin: auto;
        content: '';
        border-width: 3px 0 3px 4px;
        border-style: solid;
        border-color: transparent transparent transparent #fff;
        /* for sp iPad */
        @media screen and (max-width: 979px) {
          display: none;
        }
      }

    }
    .sub {
      font-weight: 500;
    }

    span.en{
      font-size: 18px;
      line-height: .8;
      margin-bottom: 3px;
    }
  }
}

.header .gnav li a{
  &.cv{
    &.ric_nav{
      background: $color02;
    }
    &.my_nav{
      background: $color01;
    }
  }
}

@media (min-width:741px) and (max-width:1160px) {
  .header .gnav li a {
    padding:1px 3px 0;
  }
}

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

  .header {
    height: 60px;
    overflow: hidden;
    min-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    /* for sp iPad */
    @media screen and (max-width: 979px) {
      height: 57px;
    }
    @media screen and (max-width: 760px) {
    /* for sp Device Only */
      height: 60px;
    }

  }

  .header h1 a{
    padding: 0;
    width: 45%;
    background-size: 100% auto;
    background-position: center;
  }

  .header .inner{
    width: 100%;
    margin: 0 auto;
  }

  .header .logo_box {
    width: 100%;
    font-size: 10px;
    padding: 2%;
  }

  .header h1 {
    width: 100%;
    height: 42px;
    margin-top: 0px;

  }
}

/*  h2
*---------------------------------------------------------- */

main {
  padding-bottom: 90px;
}

.article_h2 {
  padding: 70px 0 50px;
  text-align: center;
  margin-top: 65px;
  position: relative;
  &::before {
    content: "";
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: url(../img/cmn/cmn_mv.jpg) no-repeat center top;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
  }
  h2 {
    font-size: 47px;
    color: $color01;
    line-height: 1.1;
    font-family: $font03;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0;
  }
  h2:first-letter {
    text-transform: uppercase;
  }
  .lead {
    font-size: 14px;
    margin-top: 15px;
    font-family: $font-tit;
  }
}

@media screen and (max-width: 760px) {
  main {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 13%;
  }

  .article_h2 {
    text-align: center;
    // padding: calc(75px + 5%) 0 5%;
    padding: calc(75px + 5%) 0 10%;
    margin-top: 0;
    margin-top: 0;
    position: relative;
    &::before {
      content: "";
      width: 100%;
      height: 30vw;
      background: url(../img/cmn/cmn_mv_sp.jpg) no-repeat center top;
      background-size: 100% auto;
      position: absolute;
      top: 0;
      left: 0;
    }
  }

  .article_h2 h2 {
    font-size: 9vw;
  }
}

.anc_box {
  margin-top: -94px;
  padding-top: 94px;
}

@media screen and (max-width: 760px) {
  .anc_box {
    margin-top: -76px;
    padding-top: 76px;
  }
}

.article_h3 {
  text-align: center;
  padding: 3% 0 4%;
}

.article_h3 h3 {
  font-size: 26px;
  position: relative;
  font-family: $font01;
  font-weight: 100;
  &::after {
    display: block;
    width: 20%;
    height: 1px;
    background-color: $color01;
    content: "";
    margin: 2px auto 10px;
  }
}

@media screen and (max-width: 760px) {
  .article_h3 h3::after {
    margin: 12px auto 10px;
  }
}

/*  section_info
---------------------------------------------------------- */
.section_info {
  text-align: center;
  .txt {
    line-height: 1.8;
    font-family: $font-tit;
  }
}



/*  section_cv
---------------------------------------------------------- */

.section_cv{
  width: 100%;
  padding: 62px 0;
  background: #f2dad6;
}

.section_cv .inner{
  width: 1050px;
  margin: 0 auto;
  padding: 50px 64px 62px;
  background: #FFF;
}

.section_cv .inner h4 {
  margin-bottom: 5px;
  text-align: center;
}

.section_cv .inner h4 span.icon_contact{
  background: url(../img/cmn/contact.svg) top center no-repeat;
  background-size: 30px auto;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 20px;
  margin-right: 10px;
}

.section_cv .inner h4 span.en{
  font-size:42px;
  display: inline-block;
  vertical-align: middle;
  padding-top: 16px;
}

.section_cv .inner .lead {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section_cv .inner .cv_box {
  width: 560px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  font-size: 12px;
  text-align: center;
}

.section_cv .inner .cv_box .catch {
  background: #f5e3e0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  height: 52px;
  padding: 10px 0;
  margin-bottom: 14px;
}

.section_cv .inner .cv_box .catch span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.section_cv .inner .cv_box .catch em {
  background: #544544;
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  padding: 5px 10px;
  display: inline-block;
  vertical-align: middle;
}

.section_cv .inner .cv_box .box {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-bottom: 20px;
}

.section_cv .inner .cv_box .box.tel {
  margin-right: 3%;
}

.section_cv .inner .cv_box .box .tit {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section_cv .inner .cv_box .box .tel a {
  border-top: 1px solid $color-base;
  border-bottom: 1px solid $color-base;
  font-size: 32px;
  font-weight: 700;
  display: block;
  padding: 5px 0;
}

.section_cv .inner .cv_box .box .tel a small {
  font-size: 24px;
}

.section_cv .inner .cv_box .box .btn {
  width: 100%;
  height: 63px;
}

.section_cv .inner .cv_box .box .btn a {
  line-height: 63px;
  font-size: 16px;
  font-weight: 700;
}

.section_cv .inner .ph_box {
  width: 334px;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  text-align: center;
}

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

  .section_cv{
    padding: 10% 5%;
  }

  .section_cv .inner{
    width: 100%;
    padding: 8% 5%;
  }

  .section_cv .inner h4 {
    margin-bottom: 0px;
    text-align: center;
  }

  .section_cv .inner h4 span.icon_contact{
    background-size: 25px auto;
    width: 25px;
    height: 18px;
    margin-right: 8px;
  }

  .section_cv .inner h4 span.en{
    font-size:32px;
    padding-top: 16px;
  }

  .section_cv .inner .lead {
    font-size: 14px;
    margin-bottom: 5%;
  }

  .section_cv .inner .cv_box {
    margin-right: 0px;
    font-size: 12px;
    width: 100%;
    margin-bottom: 5%;
  }

  .section_cv .inner .cv_box .catch {
    font-size: 13px;
    height: 41px;
    padding: 8px 0;
    margin-bottom: 4%;
  }

  .section_cv .inner .cv_box .catch span {
    margin-right: 6px;
  }

  .section_cv .inner .cv_box .catch em {
    font-size: 12px;
    padding: 3px 5px;
    font-style: normal;
  }

  .section_cv .inner .cv_box .box {
    width: 100%;
    display: block;
    margin-bottom: 4%;
  }

  .section_cv .inner .cv_box .box.tel {
    margin-right: 0;
  }

  .section_cv .inner .cv_box .box .tit {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section_cv .inner .cv_box .box .tel a {
    font-size: 26px;
  }

  .section_cv .inner .cv_box .box .tel a small {
    font-size: 18px;
  }

  .section_cv .inner .cv_box .txt {
    text-align: left;
  }

  .section_cv .inner .cv_box .box .btn {
    width: 100%;
    height: 50px;
  }

  .section_cv .inner .cv_box .box .btn a {
    line-height: 50px;
    font-size: 15px;
  }

  .section_cv .inner .ph_box {
    width: 100%;
  }

  .section_cv .inner .ph_box .ph {
    margin-bottom: 4%;
  }

}

/*-------------------------------------------
section_btn
-------------------------------------------*/
.section_btn {
  width: 870px;
  margin: 0 auto;
  li {
    display: inline-block;
    margin-right: 10px;
    width: 410px;
    height: 75px;
    vertical-align: top;
    &:last-child{
      margin-right: 0;
    }
  }
  .btn a {
    font-weight: 400;
    line-height: 25px;
    padding: 16px;
    font-size: 11px;
    position: relative;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: $color-sys01;
    span{
      display: block;
      font-size: 15px;
      line-height: 1.2;
    }
  }
  .btn a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    margin: -3px 0 0 0;
    border: 3px solid transparent;
    border-left: 5px solid $color-base;
  }
  .btn:nth-child(2) a {
    border-top: 1px solid $color-base;
    border-bottom: 1px solid $color-base;
    box-sizing: border-box;
    background: #fff;
    color: $color-base;
    &:after {
      content: "";
      border-left: 5px solid $color-base;
    }
  }
  .btn.cv01 a {
    color: $color-base;
    background: $btn-sys01;
    &:after {
      content: "";
      border-left: 5px solid $color-base;
    }
  }
  .btn.cv02 a {
    border: none;
    background: $btn-sys02;
  }
}

@media screen and (max-width: 760px) {
  .section_btn {
    width: 100%;
    li {
      display: block;
      width: 90%;
      margin: 0 auto 10px;
      &:last-child {
        margin-right: auto;
      }
    }
  }
}


/*  footer
---------------------------------------------------------- */

.footer_cv {
  background: url(../img/cmn/cv_bg.jpg)no-repeat top center;
  background-size: cover;
  text-align: center;
  font-family: $font-tit;
  color: #fff;
  a{
    @media screen and (max-width: 760px) {
      /* for sp Device Only */
      padding: 9% 0;
      &:before{
        opacity: 0.7;
      }
    }
    &:hover{
      opacity: 1;
    }
    .inner {
      position: relative;
      z-index: 100;
    }
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding: 80px 0;
    &:before{
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 100%;
      height: 100%;
      background: $color01;
      opacity: 0.87;
      transition: all  0.3s ease;
    }
    &:hover:before{
      background: #09298e;
    }
    .black_btn{
      opacity: 1;
      &:hover{
        opacity: 1;
      }
    }
  }


  .catch{
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1;
    @media screen and (max-width: 760px) {
    /* for sp Device Only */
      font-size: 4vw;
      margin-bottom: 2%;
    }
  }
  h4 {
    font-size: 68px;
    margin-bottom: 20px;
    font-family: $font03;
    font-style: italic;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    @media screen and (max-width: 760px) {
    /* for sp Device Only */
      font-size: 11vw;
      line-height: 1.1;
    }
  }
  dl {
    display: inline-block;
    margin: 0 7px;
  }
  dt {
    margin-bottom: 8px;
  }
  .btn.sub a {
    background: none;
    color: $color-base;
    border: 1px solid $color-base;
    &:hover {
      background-color: $color-base;
      color: #fff;
    }
  }
}

.footer_cv .info_box {
  margin-top: 30px;
  .tel_box {
    margin: 8px auto;
  }
  .tel {
    font-size: 30px;
    line-height: 1.0;
  }
}

@media screen and (max-width: 760px) {
  footer.footer {
    margin-bottom: 16%;
  }
  .footer_cv dl {
    display: block;
    margin-bottom: 5%;
  }
  .footer_cv dt {
    margin-bottom: 3px;
  }
  .footer_cv .btn a {
    line-height: 52px;
  }

}

.footer .sitemap_link {
  width: 91%;
  max-width: 970px;
  margin: 50px auto 0;
  ul {
    max-width: 200px;
    float: left;
    margin-right: 5%;
    &:last-child {
      margin-right:0;
    }
    li {
      margin-bottom: 7px;
      font-size: 14px;
      a{
        font-family: $font01;
      }
      &.child{
        font-size: 12px;
        font-weight: 300;
      }
    }
  }
  /* for sp iPad */
  @media screen and (max-width: 979px) {
      width: 95%;
      max-width: 805px;
    ul{
      margin-right: 1.5%;
      max-width: 189px;
      margin-bottom: 30px;
    }
  }

}

.footer{
  .logo_area {
    /* for pc */
    @media screen and (min-width: 761px) {
      border-top: solid 1px $color-base;
      border-bottom: solid 1px $color-base;
      max-width: 1080px;
      margin: 57px auto 80px;
      padding: 25px 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .flogo {
      max-width: 170px;
      text-align: center;
      margin-right: 5%;
      @media screen and (max-width: 760px) {
      /* for sp Device Only */
        max-width: 55%;
        margin: 10% auto 5%;
      }
    }
    .tel{
      font-size: 27px;
      font-family: $font01;
      font-weight: 900;
      margin-right: 5%;
      @media screen and (max-width: 760px) {
      /* for sp Device Only */
        text-align: center;
        font-size: 9vw;
        margin-left: 5%;
      }
      span{
        background: url(../img/cmn/icon_tel.png)no-repeat top center;
        background-size: 100% auto;
        width: 17px;
        height: 28px;
        margin-right: 5px;
        vertical-align: middle;
        display: inline-block;
        @media screen and (max-width: 760px) {
        /* for sp Device Only */
          width: 22px;
          height: 35px;
        }
      }
    }
    .address{
      font-family: $font01;
      font-weight: 500;
      @media screen and (max-width: 760px) {
      /* for sp Device Only */
        text-align: center;
        font-size: 3.8vw;
      }
    }
  }
}

.footer .copy {
  text-align: center;
  padding-bottom: 10px;
  margin-top: 30px;
  font-family: $font-tit;
  font-size: 11px;
  color: #808080;
  font-weight: 500;
}

@media screen and (max-width: 760px) {
  .footer .flogo {
    margin: 20px auto;
  }
}




/************************************************

  h_nav

************************************************/

.h_nav {
  width: 100%;
  margin: 0;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.h_nav ul {
  float: left;
  width: 100%;
}

.h_nav li {
  float: left;
  background: $color-base;
  color: #fff;
  height: 60px;
  width: 16vw;
  border-left: 1px solid #ccc;
}

.h_nav li:first-child {
  border-left: none;
}

.h_nav li.contact {width: 68vw;}

.h_nav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0;
  font-size: 10px;
  color: #fff;
  text-align: center;
}

.h_nav li.contact a {
  background: $color-cv;
  padding:9px 0;
  font-family: $font03;
  height: 60px;
  line-height: 1.1;
  font-size: 7vw;
  color: #FFF;
  font-style: italic;
  font-weight: 500;

  letter-spacing:0;
  small {
    font-weight: 500;
    font-family: $font-tit;
    font-size: 3.2vw;
    display: block;
    margin-top: 3px;
  }
}

.h_nav li.contact a span{
  width: 100%;
  font-size: 26px;
  line-height: 1.1;
  display: block;
  color:#FFF;
  font-family: $font01;
}

.h_nav li .txt {
  display: block;
  width: 100%;
  color:#fff;
  letter-spacing: 1px;
  font-size: 2.3vw;
}

.h_nav li .ph {
  width: 26px;
  height: 26px;
  font-size: 26px;
  margin: 0 auto 9px;
  line-height: 0;
  display: block;
  position: relative;
}

.h_nav li .ph::before {
  position: absolute;
  top: 14px;
  left: 0;
}


/*---------------------------------------------------
カテゴリーアイコン
---------------------------------------------------*/

ul.icons {
  text-align:inherit;
  max-height:20px;
  overflow:hidden;
}

ul.icons li {
    padding: 3px 10px 4px;
    color: #fff;
    text-align: center;
    line-height: 1.1em;
    font-size: 11px;
    margin-right: 3px;
    display: inline-block;
    width:auto;
    background:#ccc;
    min-width: 100px;
}


/*  Pan
*---------------------------------------------------------- */
.pan .inner{
  width:980px;
  margin:0 auto;
  font-size:11px;
  padding:10px 0 0;
  position:relative;
  z-index:2;
}
.pan .inner a{
  text-decoration:underline;
  color:#000;
}
.pan a:hover{
  color:#EC0000;
}

/*  Main
---------------------------------------------------------- */


/*  Table
---------------------------------------------------------- */
.tbl01 {
  width:100%;
  font-size:100%;
  text-align: left;
  background-size: cover;
}

.tbl01 th {
  background: #ebebf3;
  border-bottom: 1px solid #FFF;
  padding:20px;
  font-weight:normal;
  width:23%;
}

.tbl01 td {
  background: rgba(248,248,248,.8);
  border-bottom: 1px solid #FFF;
  padding:20px;
  word-break: break-all;
  line-height: 2.0;
}

.tbl02 {
  width:100%;
}

.tbl02 th {
  background:#faf0d0;
  padding:10px 15px;
  text-align:center;
  font-weight:normal;
  border-bottom:1px dotted #ccc;
  height:40px;
}

.tbl02 td {
  background:#fff;
  padding:10px 15px;
  word-break: break-all;
  border-bottom:1px dotted #ccc;
}

.tbl02 th.un,
.tbl02 td.un {
  border-bottom:none;
}


/*  tabulous
*---------------------------------------------------------- */
/*  tabslet
*---------------------------------------------------------- */
.tabs {
  text-align:center;
  opacity:1.0;
}

.tabs ul,
.tabs div {
  opacity:1.0;
}

ul.horizontal {
  margin-bottom:40px;
  padding:10px 0;
  border-top:1px solid #1f1f1f;
  border-bottom:1px solid #1f1f1f;
  opacity:1.0;
  text-align: center;
}

ul.horizontal li {
  display:inline-block;
  margin:0 7px;
  opacity:1.0;
  background: $color-bg01;
}

ul.horizontal li a {
  display:block;
  padding:7px 15px;
  text-align:center;
}

ul.horizontal li a:hover,
ul.horizontal li.active a {
  background:$btn-sys03;
  border-radius:0;
  color:#FFF;
}

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

  ul.horizontal {
    margin-bottom:5%;
    padding:0;
    border: none;
  }

  ul.horizontal li {
    display:block;
    float: left;
    width: 50%;
    margin:0 7px;
    opacity:1.0;
    margin: 0;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }

  ul.horizontal li:nth-child(2n) {
    border-right:none;
  }

  ul.horizontal li a {
    padding:12px 5px;
    font-size: 12px;
  }

}

table,
ul ul,
ol ol,
td ul,
td p,
td dt,
td dd { font-size: 100%; }

select,
input,
textarea,
 { font-size: 99%; }




/*  Main
*---------------------------------------------------------- */
#main{
  width:700px;
  margin:0;
  float:left;
}
/*  Side
*---------------------------------------------------------- */
#side{
  margin:0;
  float:right;
}


/* ----------------------------------------------------------

Clear Fix

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

/* for sp iPad */
@media screen and (min-width: 980px) {
  .ipad{
    display: none!important;
  }

}
/* for sp iPad */
@media screen and (max-width: 979px) {
  .ipad{
    display: block!important;
  }
}
@media print, screen and (min-width:741px){
  .sp {
    display:none!important;
  }

}


@media screen and (max-width:740px){
/************************************************

  Font Style

************************************************/

body{
  overflow-x : hidden;
  overflow-y : auto;
}

html{
  overflow-x : hidden;
overflow-y : auto;
}

h1,h2,h3,h4,h5,h6{
  line-height:1.0;
}

a {
text-decoration:none;
}

.txt_s{
  font-size:9px;
  margin:0 0 0 5px;
  color:#808080;
  }


/* ---------------------------
  font size
--------------------------- */
body {
  font-size: 13px;
}

.pan{
  display:none;
}

/************************************************

  Layout

************************************************/

body {
  position:relative;
}

#wrapper{
    position:relative;
    width: 100%;
    overflow:hidden;
    z-index:1;
}
#wrapper #wrapInner{position: relative;}
#wrapper.open{position:fixed;}

#contents {
  background:url(../img/cmn/bg.jpg) repeat;
}


/************************************************

  Contents

************************************************/

#container {
  width:100%;
  padding:0px;
}


.pc {
  display:none!important;
}




/************************************************

  Main

************************************************/

.main,
.index_contents {
  width: auto;
}

.main img {
  width:100%;
}

.anchor, .anchor2, .anchor3 {
    margin-bottom:20px;
}

.anchor li a, .anchor2 li a, .anchor3 li a {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #d987ad;
    box-sizing: border-box;
    color: #d987ad;
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 auto 5px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/************************************************

  Side

************************************************/

.side {

}


/**************************************

Common Accordion

**************************************/

dl.accordion {
  font-size:100%;
}
dl.accordion dt {
  background: -moz-linear-gradient(top, #FFF, #E6E6E6);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  border-top:1px solid #B1B1B1;
  border-bottom:1px solid #FFF;
  position:relative;
  padding:8px 20px 8px 5px;
}
dl.accordion dt:after {
    border-right: 2px solid #B5A43A;
    border-top: 2px solid #B5A43A;
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  content: "";
    display: block;
    height: 4px;
    right: 8px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    width: 4px;
}
dl.accordion dt.open:after {
    border-right: 2px solid #B5A43A;
    border-top: 2px solid #B5A43A;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: "";
    display: block;
    height: 4px;
    right: 8px;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    width: 4px;
}

dl.accordion dd {
  display:none;
  padding:10px;
  line-height:1.5;
  background:#FFF;
}

dl.accordion dd p {
  padding:10px 0px 0px 0px;
}


#topcontrol {
  z-index:10000;
}

.gsc-result .gs-title {
    height: 1.4em!important;
}



































/************************************************

  Clear

************************************************/

.mnav .box,
.mnav2 .box,
.snav ul,
.contact .unit-a,
.btm
{
  zoom:1;
}

.mnav .box:after,
.mnav2 .box:after,
.snav ul:after,
.contact .unit-a:after,
.btm:after
{
  content:''; display:block; clear:both; overflow:hidden;
}

}

