@charset "UTF-8";
/* =====header===== */
.header {
  position: fixed;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100px;
  background: #1A274F;
}

.header .left {
  margin: 17px 0 0 20px;
}

.header .left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

.header .left .logo {
  margin: 0 18px 0 0;
}

.header .left .text {
  font-size: 24px;
  font-weight: 700;
}

.header .right {
  position: relative;
  margin: 5px 20px 0 0;
}

.header .right:before {
  position: absolute;
  content: "";
  right: -20px;
  top: 33px;
  height: 1px;
  width: 356px;
  background: #fff;
}

.header .right .num {
  margin: 0 0 10px 170px;
}

.header .right .num a {
  font-size: 24px;
  font-family: "Lato";
  color: #fff;
  letter-spacing: .15em;
}

.header .right .nav {
  width: 480px;
}

.header .right .nav .lower {
  text-align: right;
}

.header .right .nav .item {
  display: inline-block;
  margin: 0 1em 0 0;
}

.header .right .nav .item a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 60px;
    background: #1A274F;
  }
  .header .left {
    margin: 5px 0 0 10px;
  }
  .header .left a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
  }
  .header .left .logo {
    width: 30px;
    margin: 0 5px 0 0;
  }
  .header .left .title {
    margin: 0 0 3px;
    font-size: 11px;
    color: #fff;
  }
  .header .left .text {
    font-size: 14px;
    font-weight: 700;
  }
}

@media screen and (max-width: 768px) {
  .ham {
    position: fixed;
    z-index: 3000;
    right: 5px;
    top: 5px;
    display: block;
    width: 50px;
    height: 50px;
    margin: auto 0;
    padding: 33px 0 0 3px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #DDD720;
    font-size: 11px;
    letter-spacing: .2em;
    text-align: center;
  }
  .ham span {
    position: absolute;
    width: 25px;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #1A274F;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .ham span:nth-of-type(1) {
    top: 10px;
  }
  .ham span:nth-of-type(2) {
    top: 20px;
  }
  .ham span:nth-of-type(3) {
    top: 30px;
  }
  .ham.active span:nth-of-type(1) {
    top: 23px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .ham.active span:nth-of-type(2) {
    display: none;
    top: 23px;
  }
  .ham.active span:nth-of-type(3) {
    top: 23px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

/* =====sp_glonav===== */
@media screen and (max-width: 768px) {
  .sp_glonav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background: #1A274F;
    font-family: 'Noto sans JP', sans-serif;
    z-index: 2000;
  }
  .sp_glonav.active {
    visibility: visible;
    opacity: 1;
    overflow-y: scroll;
  }
  .sp_glonav .logo_box {
    width: 280px;
    height: auto;
    padding: 18px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: none;
    color: none;
    text-align: center;
  }
  .sp_glonav .logo_box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 20px;
  }
  .sp_glonav .logo_box .logo {
    margin: 0 10px 0 0;
  }
  .sp_glonav .logo_box .text {
    padding: 5px 0 0;
    margin: 0 0 30px;
    color: #fff;
    font-size: 30px;
  }
  .sp_glonav .logo_box img {
    display: block;
    width: 57px;
    margin: 0 auto 15px;
  }
  .sp_glonav .logo_box .text02 {
    color: #fff;
  }
  .sp_glonav .nav {
    width: 300px;
    margin: 0 auto 20px;
    background: none;
  }
  .sp_glonav .nav .item {
    position: relative;
    width: 280px;
    padding: 0 0 0 20px;
    margin: 0 auto 10px;
  }
  .sp_glonav .nav .item:before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 12px;
    color: #fff;
  }
  .sp_glonav .nav .item a {
    line-height: 3;
    color: #fff;
  }
  .sp_glonav .tel_box {
    width: 272px;
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 20px;
    background: none;
    text-align: center;
  }
  .sp_glonav .tel_box .tel_text a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 10px 10px 0;
    border: 2px solid #fff;
    font-size: 25px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 50px;
    color: #fff;
  }
  .sp_glonav .tel_box .icon {
    padding: 0 10px 0 0;
  }
  .sp_glonav .tel_box .icon img {
    margin: 0 0 8px;
  }
}

/* =====key===== */
.key {
  position: relative;
  padding: 80px 0 0;
  margin: 0 0 80px;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #1A274F;
}

.key:before {
  position: absolute;
  left: 10%;
  bottom: 0;
  content: "";
  width: 13px;
  height: 223px;
  background: url(../img/text02.png) center center/cover no-repeat;
}

.key .keyvisual {
  position: absolute;
  right: 0;
  width: 80%;
  height: 110%;
  background: url(../img/key01.png) top -50px center/cover no-repeat;
}

.key .keyvisual:before {
  position: absolute;
  top: 40px;
  left: -100px;
  content: "";
  width: 305px;
  height: 127px;
  background: url(../img/text01.png) center center/cover no-repeat;
}

.key .text {
  position: absolute;
  top: 150px;
  left: 60px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.key .border {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  border-right: 8px solid #fff;
  letter-spacing: .23em;
}

@media screen and (max-width: 768px) {
  .key {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 60px 0 0;
    margin: 0 0 60px;
    background: #1A274F;
  }
  .key:before {
    position: absolute;
    left: 10%;
    bottom: 0;
    content: "";
    width: 13px;
    height: 223px;
    background: url(../img/text02.png) center center/cover no-repeat;
  }
  .key .keyvisual {
    position: absolute;
    right: 0;
    width: 80%;
    height: 110%;
    background: url(../img/sp_key01.png) top left/cover no-repeat;
  }
  .key .keyvisual:before {
    position: absolute;
    top: 0;
    left: -100px;
    content: "";
    width: 305px;
    height: 127px;
    background: url(../img/text01.png) center center/60% no-repeat;
  }
  .key .text {
    position: absolute;
    top: auto;
    top: 50%;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
    left: auto;
    right: 20px;
    height: 400px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .key .border {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    border-right: 8px solid #fff;
    letter-spacing: .23em;
    text-shadow: 1px 1px rgba(0, 26, 67, 0.2), -1px -1px rgba(0, 26, 67, 0.2);
  }
}

/* =====sec01===== */
.sec01 {
  padding: 180px 0 200px;
}

.sec01 .sec_title {
  position: relative;
  padding: 60px 0 0;
  margin: 0 0 50px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
}

.sec01 .sec_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 162px;
  height: 37px;
  background: url(../img/title01.png) center center/cover no-repeat;
}

.sec01 .list {
  margin: 0 auto;
}

.sec01 .list .item {
  position: relative;
  background: rgba(0, 26, 67, 0.03);
}

.sec01 .list .item_inner {
  width: 1000px;
  margin: 0 auto;
}

.sec01 .list .item_title {
  position: relative;
  padding: 80px 0 0;
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
  color: #1A274F;
  text-align: center;
}

.sec01 .list .item_text {
  letter-spacing: .15em;
  line-height: 2;
}

.sec01 .list .item:nth-of-type(1) {
  width: calc(100% - 20px);
  padding: 50px 0;
  margin: 0 0 70px auto;
}

.sec01 .list .item:nth-of-type(1) .item_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74px;
  height: 64px;
  background: url(../img/num01.png) center center/cover no-repeat;
}

.sec01 .list .item:nth-of-type(1) .textbox {
  width: 450px;
}

.sec01 .list .item:nth-of-type(1) .photo {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  height: 344px;
  overflow: hidden;
}

.sec01 .list .item:nth-of-type(1) .photo img {
  width: 100%;
}

.sec01 .list .item:nth-of-type(2) {
  width: calc(100% - 20px);
  padding: 50px 0;
  margin: 0 auto 70px 0;
}

.sec01 .list .item:nth-of-type(2) .item_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74px;
  height: 68px;
  background: url(../img/num02.png) center center/cover no-repeat;
}

.sec01 .list .item:nth-of-type(2) .textbox {
  width: 450px;
  margin: 0 0 0 auto;
}

.sec01 .list .item:nth-of-type(2) .photo {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  height: 344px;
  overflow: hidden;
}

.sec01 .list .item:nth-of-type(2) .photo img {
  width: 100%;
}

.sec01 .list .item:nth-of-type(3) {
  width: calc(100% - 20px);
  padding: 110px 0 80px;
  margin: 0 0 220px auto;
}

.sec01 .list .item:nth-of-type(3) .item_title:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74px;
  height: 68px;
  background: url(../img/num03.png) center center/cover no-repeat;
}

.sec01 .list .item:nth-of-type(3) .textbox {
  width: 900px;
  margin: 0 auto 30px;
}

.sec01 .list .item:nth-of-type(3) .photobox {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 770px;
  margin: 0 auto;
}

.sec01 .list .item:nth-of-type(3) .photobox.sp {
  display: none;
}

.sec01 .list .item:nth-of-type(3) .photo:nth-of-type(1) {
  margin: 0 40px 0 0;
}

.sec01 .list .item:nth-of-type(3) .photo img {
  width: 100%;
}

.sec01 .list .item:nth-of-type(4) {
  width: calc(100% - 20px);
  padding: 50px 0;
  margin: 0 auto 70px 0;
}

.sec01 .list .item:nth-of-type(4) .item_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74px;
  height: 68px;
  background: url(../img/num04.png) center center/cover no-repeat;
}

.sec01 .list .item:nth-of-type(4) .textbox {
  width: 450px;
  margin: 0 0 0 auto;
}

.sec01 .list .item:nth-of-type(4) .photo {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  height: 344px;
  overflow: hidden;
}

.sec01 .list .item:nth-of-type(4) .photo img {
  width: 100%;
}

.sec01 .list .item:nth-of-type(5) {
  width: calc(100% - 20px);
  padding: 50px 0;
  margin: 0 0 70px auto;
}

.sec01 .list .item:nth-of-type(5) .item_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74px;
  height: 64px;
  background: url(../img/num05.png) center center/cover no-repeat;
}

.sec01 .list .item:nth-of-type(5) .textbox {
  width: 450px;
}

.sec01 .list .item:nth-of-type(5) .photo {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  height: 344px;
  overflow: hidden;
}

.sec01 .list .item:nth-of-type(5) .photo img {
  position: absolute;
  top: -100px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec01 {
    padding: 100px 0;
  }
  .sec01 .sec_title {
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 50px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
  }
  .sec01 .sec_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 162px;
    height: 37px;
    background: url(../img/title01.png) center center/cover no-repeat;
  }
  .sec01 .list {
    margin: 0 auto;
  }
  .sec01 .list .item {
    position: relative;
    padding: 0 20px;
    background: rgba(0, 26, 67, 0.03);
    overflow: hidden;
  }
  .sec01 .list .item_inner {
    width: 100%;
    margin: 0 auto;
  }
  .sec01 .list .item_title {
    position: relative;
    padding: 80px 0 0;
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 700;
    color: #1A274F;
    text-align: center;
  }
  .sec01 .list .item_text {
    padding: 0 20px;
    letter-spacing: .15em;
    line-height: 2;
  }
  .sec01 .list .item:nth-of-type(1) {
    width: calc(100% - 20px);
    padding: 20px 0;
    margin: 0 0 50px auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(1) .item_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 74px;
    height: 64px;
    background: url(../img/num01.png) center center/cover no-repeat;
  }
  .sec01 .list .item:nth-of-type(1) .textbox {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(1) .photo {
    position: static;
    right: 0;
    top: 50%;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: 200px;
    margin: 0 0 20px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    text-align: center;
  }
  .sec01 .list .item:nth-of-type(1) .photo img {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(2) {
    width: calc(100% - 20px);
    padding: 20px 0;
    margin: 0 auto 50px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(2) .item_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 74px;
    height: 68px;
    background: url(../img/num02.png) center center/cover no-repeat;
  }
  .sec01 .list .item:nth-of-type(2) .textbox {
    width: 100%;
    margin: 0;
  }
  .sec01 .list .item:nth-of-type(2) .photo {
    position: static;
    left: 0;
    top: 50%;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: 200px;
    padding: 0 20px 0 0;
    margin: 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
  }
  .sec01 .list .item:nth-of-type(2) .photo img {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(3) {
    width: calc(100% - 20px);
    padding: 20px 0;
    margin: 0 0 50px auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(3) .item_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 74px;
    height: 68px;
    background: url(../img/num03.png) center center/cover no-repeat;
  }
  .sec01 .list .item:nth-of-type(3) .textbox {
    width: 100%;
    margin: 0 auto;
  }
  .sec01 .list .item:nth-of-type(3) .photobox {
    position: static;
    left: 50%;
    -webkit-transform: none;
            transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0 0 0 20px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(3) .photobox.sp {
    position: relative;
    left: auto;
    -webkit-transform: none;
            transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0 0 0 20px;
    margin: 0 auto 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(3) .photo:nth-of-type(1) {
    position: absolute;
    width: 50%;
    right: 20px;
    margin: 0;
    bottom: -50px;
  }
  .sec01 .list .item:nth-of-type(3) .photo:nth-of-type(2) {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(3) .photo img {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(4) {
    width: calc(100% - 20px);
    padding: 20px 0;
    margin: 0 auto 50px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(4) .item_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 74px;
    height: 68px;
    background: url(../img/num04.png) center center/cover no-repeat;
  }
  .sec01 .list .item:nth-of-type(4) .textbox {
    width: 100%;
    margin: 0;
  }
  .sec01 .list .item:nth-of-type(4) .photo {
    position: static;
    left: 0;
    top: 50%;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: 200px;
    padding: 0 20px 0 0;
    margin: 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
  }
  .sec01 .list .item:nth-of-type(4) .photo img {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(5) {
    width: calc(100% - 20px);
    padding: 20px 0;
    margin: 0 0 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .list .item:nth-of-type(5) .item_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 74px;
    height: 64px;
    background: url(../img/num05.png) center center/cover no-repeat;
  }
  .sec01 .list .item:nth-of-type(5) .textbox {
    width: 100%;
  }
  .sec01 .list .item:nth-of-type(5) .photo {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: 200px;
    padding: 0 0 0 20px;
    margin: 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
  }
  .sec01 .list .item:nth-of-type(5) .photo img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

/* =====sec02===== */
.sec02 {
  padding: 0 0 100px;
}

.sec02 .inner {
  position: relative;
  width: 970px;
  padding: 30px 0 60px;
  border: 1px solid #001A43;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sec02 .inner:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 380px;
  height: 20px;
  background: #fff;
}

.sec02 .sec_title {
  position: relative;
  margin: 0 0 50px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
}

.sec02 .sec_title:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 199px;
  height: 36px;
  background: url(../img/title02.png) center center/cover no-repeat;
}

.sec02 .upper .cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 800px;
  margin: 0 auto;
}

.sec02 .upper .icon img {
  display: block;
}

.sec02 .upper .cont_text {
  letter-spacing: .35em;
}

.sec02 .upper .cont01 {
  margin: 0 auto 30px;
}

.sec02 .upper .cont01:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 688px;
  height: 90px;
  background: url(../img/fukidashi01.png) center center/cover no-repeat;
}

.sec02 .upper .cont01 .icon {
  width: 84px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.sec02 .upper .cont01 .cont_text {
  width: 645px;
  height: 75px;
  padding: 10px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 26, 67, 0.03);
}

.sec02 .upper .cont02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 0 auto 60px;
}

.sec02 .upper .cont02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 688px;
  height: 110px;
  background: url(../img/fukidashi02.png) center center/cover no-repeat;
}

.sec02 .upper .cont02 .icon {
  width: 103px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.sec02 .upper .cont02 .cont_text {
  width: 645px;
  height: 95px;
  padding: 10px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 26, 67, 0.03);
}

.sec02 .middle {
  padding: 80px 0;
  margin: 0 0 50px;
  background: #F4F4F4;
}

.sec02 .middle .middle_inner {
  width: 900px;
  margin: 0 auto;
}

.sec02 .middle .textbox {
  position: relative;
}

.sec02 .middle .cont_title {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
  color: #1A274F;
}

.sec02 .middle .cont_text {
  width: 380px;
  letter-spacing: .15em;
}

.sec02 .middle .cont01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 80px;
}

.sec02 .middle .cont01 .textbox {
  margin: 0 0 0 30px;
}

.sec02 .middle .cont01 .textbox:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 75px;
  width: 471px;
  height: 39px;
  background: url(../img/line01.png) center center/cover no-repeat;
}

.sec02 .middle .cont02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 80px;
}

.sec02 .middle .cont02 .textbox:before {
  content: "";
  position: absolute;
  right: 0;
  top: 52px;
  width: 470px;
  height: 39px;
  background: url(../img/line02.png) center center/cover no-repeat;
}

.sec02 .middle .cont02 .photo {
  margin: 0 0 0 30px;
}

.sec02 .middle .cont03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec02 .middle .cont03 .textbox:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50px;
  width: 471px;
  height: 39px;
  background: url(../img/line01.png) center center/cover no-repeat;
}

.sec02 .middle .cont03 .textbox {
  margin: 0 0 0 30px;
}

.sec02 .lower .cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 877px;
  margin: 0 auto;
}

.sec02 .lower .cont:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 744px;
  height: 158px;
  background: url(../img/fukidashi03.png) center center/cover no-repeat;
}

.sec02 .lower .icon {
  width: 103px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.sec02 .lower .cont_text {
  width: 700px;
  height: 144px;
  padding: 15px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 26, 67, 0.03);
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .sec02 {
    padding: 0 20px 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec02 .inner {
    position: relative;
    width: 100%;
    padding: 30px 20px 60px;
    border: 1px solid #001A43;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec02 .inner:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: #fff;
  }
  .sec02 .sec_title {
    position: relative;
    margin: 0 0 50px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
  }
  .sec02 .sec_title:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 199px;
    height: 36px;
    background: url(../img/title02.png) center center/cover no-repeat;
  }
  .sec02 .upper .cont {
    position: relative;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  .sec02 .upper .icon img {
    display: block;
  }
  .sec02 .upper .cont_text {
    letter-spacing: .35em;
  }
  .sec02 .upper .cont01 {
    margin: 0 auto 30px;
  }
  .sec02 .upper .cont01:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    width: 688px;
    height: 90px;
    background: url(../img/fukidashi01.png) center center/cover no-repeat;
  }
  .sec02 .upper .cont01 .icon {
    width: 84px;
    margin: 0 auto 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
  }
  .sec02 .upper .cont01 .cont_text {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(0, 26, 67, 0.03);
  }
  .sec02 .upper .cont01 .cont_text:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid #001A43;
    margin: auto;
  }
  .sec02 .upper .cont01 .cont_text .fukidashi01 {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 30px solid #001A43;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .sec02 .upper .cont01 .cont_text .fukidashi02 {
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 30px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .sec02 .upper .cont02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin: 0 auto 60px;
  }
  .sec02 .upper .cont02:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 688px;
    height: 110px;
    background: url(../img/fukidashi02.png) center center/cover no-repeat;
  }
  .sec02 .upper .cont02 .icon {
    width: 103px;
    margin: 0 auto 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
  }
  .sec02 .upper .cont02 .cont_text {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(0, 26, 67, 0.03);
  }
  .sec02 .upper .cont02 .cont_text:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid #001A43;
    margin: auto;
  }
  .sec02 .upper .cont02 .cont_text .fukidashi01 {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 30px solid #001A43;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .sec02 .upper .cont02 .cont_text .fukidashi02 {
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 30px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .sec02 .middle {
    padding: 20px 0;
    margin: 0 0 50px;
    background: #F4F4F4;
  }
  .sec02 .middle .middle_inner {
    width: 100%;
    margin: 0 auto;
  }
  .sec02 .middle .textbox {
    position: relative;
  }
  .sec02 .middle .cont_title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1A274F;
  }
  .sec02 .middle .cont_text {
    width: 100%;
    letter-spacing: .15em;
  }
  .sec02 .middle .photo {
    position: relative;
    height: 150px;
    margin: 0 0 20px;
    overflow: hidden;
    text-align: center;
  }
  .sec02 .middle .photo img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .sec02 .middle .cont01 {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
    margin: 0 0 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec02 .middle .cont01 .textbox {
    margin: 0;
  }
  .sec02 .middle .cont01 .textbox:before {
    content: "";
    position: absolute;
    left: -30px;
    top: 75px;
    display: none;
    width: 471px;
    height: 39px;
    background: url(../img/line01.png) center center/cover no-repeat;
  }
  .sec02 .middle .cont02 {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
    margin: 0 0 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec02 .middle .cont02 .textbox:before {
    content: "";
    position: absolute;
    right: 0;
    top: 52px;
    display: none;
    width: 470px;
    height: 39px;
    background: url(../img/line02.png) center center/cover no-repeat;
  }
  .sec02 .middle .cont02 .photo {
    margin: 0 0 20px;
  }
  .sec02 .middle .cont03 {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec02 .middle .cont03 .textbox:before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50px;
    display: none;
    width: 471px;
    height: 39px;
    background: url(../img/line01.png) center center/cover no-repeat;
  }
  .sec02 .middle .cont03 .textbox {
    margin: 0;
  }
  .sec02 .lower .cont {
    position: relative;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .sec02 .lower .cont:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    width: 100%;
    height: 158px;
    background: url(../img/fukidashi03.png) center center/cover no-repeat;
  }
  .sec02 .lower .icon {
    width: 103px;
    margin: 0 auto 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
  }
  .sec02 .lower .cont_text {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(0, 26, 67, 0.03);
    letter-spacing: .15em;
  }
  .sec02 .lower .cont_text:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid #001A43;
    margin: auto;
  }
  .sec02 .lower .cont_text .fukidashi01 {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 30px solid #001A43;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .sec02 .lower .cont_text .fukidashi02 {
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 30px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}

/* =====sec03===== */
.sec03 {
  position: relative;
  padding: 100px 0 80px;
}

.sec03:before {
  position: absolute;
  z-index: -1;
  top: 0;
  content: "";
  width: 100%;
  height: 650px;
  background: url(../img/bg01.png) center top/100% no-repeat;
}

.sec03 .sec_title {
  position: relative;
  padding: 60px 0 0;
  margin: 0 0 90px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
  color: #fff;
}

.sec03 .sec_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 26px;
  background: url(../img/title03.png) center center/cover no-repeat;
}

.sec03 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 890px;
  height: 400px;
  padding: 0 45px;
  border: 2px solid #231815;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 66px;
  background: #fff;
}

.sec03 .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sec03 .item:last-of-type {
  margin: 0 auto;
}

.sec03 .item .photo {
  min-width: 360px;
}

.sec03 .item_title {
  position: relative;
  padding: 0 0 0 80px;
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .15em;
}

.sec03 .item_title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  margin: auto 0;
  background: #DDD720;
}

.sec03 .item_text {
  line-height: 2;
  letter-spacing: .15em;
}

.sec03 .item:nth-child(2n-1) .textbox {
  margin: 0 40px 0 0;
}

.sec03 .item:nth-child(2n) .photo {
  margin: 0 40px 0 0;
}

@media screen and (max-width: 768px) {
  .sec03 {
    position: relative;
    padding: 100px 20px 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec03:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -20px;
    content: "";
    width: calc(100% + 20px);
    height: 650px;
    background: url(../img/bg01.png) left top/cover no-repeat;
  }
  .sec03 .sec_title {
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 90px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
    color: #fff;
  }
  .sec03 .sec_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 160px;
    height: 26px;
    background: url(../img/title03.png) center center/cover no-repeat;
  }
  .sec03 .item {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    border: 2px solid #231815;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 66px;
    background: #fff;
  }
  .sec03 .item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .sec03 .item:last-of-type {
    margin: 0 auto;
  }
  .sec03 .item .photo {
    width: 100%;
    min-width: auto;
    height: 200px;
    overflow: hidden;
    margin: 0 0 20px;
  }
  .sec03 .item_title {
    position: relative;
    padding: 0;
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .15em;
    text-align: center;
  }
  .sec03 .item_title:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -10px;
    width: 60px;
    height: 1px;
    margin: 0 auto;
    background: #DDD720;
  }
  .sec03 .item_text {
    line-height: 2;
    letter-spacing: .15em;
  }
  .sec03 .item:nth-child(2n-1) .textbox {
    margin: 0;
  }
  .sec03 .item:nth-child(2n) .photo {
    margin: 0 0 20px;
  }
}

/* =====sec04===== */
.sec04 {
  padding: 0 0 120px;
}

.sec04 .sec_title {
  position: relative;
  padding: 60px 0 0;
  margin: 0 0 90px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
}

.sec04 .sec_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 118px;
  height: 37px;
  background: url(../img/title04.png) center center/cover no-repeat;
}

.sec04 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec04 .item {
  width: 420px;
  margin: 0 25px;
}

.sec04 .item .photo {
  margin: 0 0 40px;
  text-align: center;
}

.sec04 .item_title {
  margin: 0 0 20px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .15em;
  text-align: center;
}

.sec04 .item_text {
  line-height: 2;
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .sec04 {
    padding: 0;
  }
  .sec04 .sec_title {
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 90px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
  }
  .sec04 .sec_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 118px;
    height: 37px;
    background: url(../img/title04.png) center center/cover no-repeat;
  }
  .sec04 .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec04 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 25px 80px;
  }
  .sec04 .item .photo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 0 20px;
    text-align: center;
  }
  .sec04 .item_title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 20px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .15em;
    text-align: center;
  }
  .sec04 .item_text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    line-height: 2;
    letter-spacing: .15em;
  }
}

/* =====sec05===== */
.sec05 .inner {
  width: 905px;
  background: rgba(0, 26, 67, 0.03);
  padding: 70px 0 100px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sec05 .sec_title {
  position: relative;
  padding: 60px 0 0;
  margin: 0 0 90px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
}

.sec05 .sec_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 77px;
  height: 29px;
  background: url(../img/title05.png) center center/cover no-repeat;
}

.sec05 .list {
  position: relative;
  padding: 0 0 0 80px;
  margin: 0 0 0 90px;
}

.sec05 .item {
  position: relative;
  padding: 0 0 80px;
  font-size: 24px;
  letter-spacing: .15em;
}

.sec05 .item span {
  margin: 0 1em 0 0;
}

.sec05 .item:before {
  content: "";
  position: absolute;
  left: -80px;
  top: 10px;
  width: 23px;
  height: 23px;
  background: url(../img/circle01.png) center center/cover no-repeat;
}

.sec05 .item:after {
  content: "";
  background-image: linear-gradient(to bottom, #000, #000 6px, transparent 3px, transparent 8px);
  background-size: 8px 16px;
  background-repeat: repeat-y;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 23px;
  left: -69px;
}

.sec05 .item:last-of-type {
  padding: 0;
}

.sec05 .item:last-of-type:after {
  display: none;
}

@media screen and (max-width: 768px) {
  .sec05 .inner {
    width: 100%;
    background: rgba(0, 26, 67, 0.03);
    padding: 70px 20px 100px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec05 .sec_title {
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 90px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
  }
  .sec05 .sec_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 77px;
    height: 29px;
    background: url(../img/title05.png) center center/cover no-repeat;
  }
  .sec05 .list {
    position: relative;
    padding: 0;
    margin: 0;
  }
  .sec05 .item {
    position: relative;
    padding: 0 0 100px;
    font-size: 24px;
    letter-spacing: .15em;
    text-align: center;
  }
  .sec05 .item span {
    position: relative;
    display: block;
    margin: 0 0 20px;
    text-align: center;
  }
  .sec05 .item span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 223px;
    height: 2px;
    margin: 0 auto;
    background: #DDD720;
  }
  .sec05 .item:before {
    content: "";
    position: absolute;
    left: -80px;
    top: 10px;
    display: none;
    width: 23px;
    height: 23px;
    background: url(../img/circle01.png) center center/cover no-repeat;
  }
  .sec05 .item:after {
    content: "";
    background-image: linear-gradient(to bottom, #000, #000 6px, transparent 3px, transparent 8px);
    background-size: 8px 16px;
    background-repeat: repeat-y;
    position: absolute;
    width: 1px;
    height: 70px;
    top: auto;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .sec05 .item:last-of-type {
    padding: 0;
  }
  .sec05 .item:last-of-type:after {
    display: none;
  }
}

/* =====sec06===== */
.sec06 {
  padding: 100px 0;
}

.sec06 .sec_title {
  position: relative;
  padding: 60px 0 0;
  margin: 0 0 90px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
}

.sec06 .sec_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 352px;
  height: 29px;
  background: url(../img/title06.png) center center/cover no-repeat;
}

.sec06 .cont01 {
  margin: 0 0 140px;
}

.sec06 .cont02 {
  margin: 0 0 140px;
}

.sec06 .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 0 0 50px;
}

.sec06 .image {
  margin: 0 40px 0 0;
}

.sec06 .cont_title {
  padding: 20px 0 0;
  margin: 0 0 70px;
  font-size: 24px;
  letter-spacing: .15em;
}

.sec06 .smallcont.smallcont01 {
  margin: 0 0 40px;
}

.sec06 .smalltitle {
  position: relative;
  padding: 0 0 0 25px;
  margin: 0 0 10px;
  font-size: 20px;
}

.sec06 .smalltitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 30px;
  background: url(../img/line04.png) center center/cover no-repeat;
}

.sec06 .cont01 .smallbox {
  width: 466px;
  padding: 10px 0 10px 50px;
  margin: 0 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(221, 215, 32, 0.05);
}

.sec06 .cont02 .smallbox {
  width: 466px;
  padding: 20px 0;
  margin: 0 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(221, 215, 32, 0.05);
  text-align: center;
}

.sec06 .smallbox .uppertext,
.sec06 .smallbox .lower {
  letter-spacing: .2em;
}

.sec06 .smalltext {
  letter-spacing: .2em;
}

.sec06 .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec06 .smallcont.smallcont02 {
  margin: 0 90px 0 0;
}

.sec06 .lower {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec06 .lower:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 280px;
  height: 427px;
  margin: 0 auto;
  background: url(../img/bg02.png) center center/cover no-repeat;
}

@-webkit-keyframes bMove01 {
  0% {
    background-position: 9999px 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes bMove01 {
  0% {
    background-position: 9999px 0;
  }
  100% {
    background-position: 0 0;
  }
}

.sec06 .lower .right {
  position: relative;
  z-index: 2;
  width: 50%;
}

.sec06 .lower .right img {
  margin: 0 0 30px;
}

.sec06 .lower .right a span {
  position: relative;
  margin: 0 0 0 160px;
  font-size: 18px;
  padding: 0 0 16px;
}

.sec06 .lower .right a span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 165px;
  height: 17px;
  margin: 0 auto;
  background: url(../img/arrow01.png) center/cover no-repeat;
}

.sec06 .cont01 .left {
  width: 50%;
  height: 427px;
  margin: 0 100px 0 0;
  background: url(../img/work01.png) top left/cover repeat-x;
  display: block;
  -webkit-animation: bMove01 300s linear infinite;
          animation: bMove01 300s linear infinite;
}

.sec06 .cont02 .left {
  width: 50%;
  height: 427px;
  margin: 0 100px 0 0;
  background: url(../img/work03.png) top left/cover repeat-x;
  display: block;
  -webkit-animation: bMove01 300s linear infinite;
          animation: bMove01 300s linear infinite;
}

.sec06 .cont03 .left {
  width: 50%;
  height: 427px;
  margin: 0 100px 0 0;
  background: url(../img/work05.png) top left/cover repeat-x;
  display: block;
  -webkit-animation: bMove01 300s linear infinite;
          animation: bMove01 300s linear infinite;
}

@media screen and (max-width: 768px) {
  .sec06 {
    padding: 50px 0;
  }
  .sec06 .sec_title {
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 50px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
  }
  .sec06 .sec_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 352px;
    height: 29px;
    background: url(../img/title06.png) center center/90% no-repeat;
  }
  .sec06 .cont01 {
    margin: 0 0 100px;
  }
  .sec06 .cont02 {
    margin: 0 0 100px;
  }
  .sec06 .upper {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin: 0 0 50px;
  }
  .sec06 .image {
    position: relative;
    height: 270px;
    margin: 0 0 20px;
    overflow: hidden;
  }
  .sec06 .cont02 .image img {
    position: absolute;
    top: -70px;
  }
  .sec06 .cont_title {
    padding: 0;
    margin: 0 0 30px;
    font-size: 24px;
    letter-spacing: .025em;
    text-align: center;
  }
  .sec06 .smallcont {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec06 .smallcont.smallcont01 {
    margin: 0 0 40px;
  }
  .sec06 .smalltitle {
    position: relative;
    padding: 0 0 0 25px;
    margin: 0 0 10px;
    font-size: 20px;
  }
  .sec06 .smalltitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 30px;
    background: url(../img/line04.png) center center/cover no-repeat;
  }
  .sec06 .cont01 .smallbox {
    width: 100%;
    padding: 20px;
    margin: 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(221, 215, 32, 0.05);
  }
  .sec06 .cont02 .smallbox {
    width: 100%;
    padding: 20px;
    margin: 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(221, 215, 32, 0.05);
    text-align: left;
  }
  .sec06 .smallbox .uppertext,
  .sec06 .smallbox .lower {
    letter-spacing: .05em;
    font-size: 15px;
    line-height: 1.8;
  }
  .sec06 .smalltext {
    letter-spacing: 0;
  }
  .sec06 .flexbox {
    display: block;
  }
  .sec06 .smallcont.smallcont02 {
    margin: 0 0 20px;
  }
  .sec06 .lower {
    position: relative;
    display: block;
  }
  .sec06 .lower:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    width: 280px;
    height: 427px;
    margin: 0 auto;
    background: url(../img/bg02.png) center center/cover no-repeat;
  }
  @-webkit-keyframes bMove01 {
    0% {
      background-position: 9999px 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  @keyframes bMove01 {
    0% {
      background-position: 9999px 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  .sec06 .lower .right {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }
  .sec06 .lower .right img {
    width: 300px;
    max-width: calc(100% - 40px);
    margin: 0 0 20px;
  }
  .sec06 .lower .right a span {
    position: relative;
    margin: 0;
    font-size: 18px;
    padding: 0 0 16px;
  }
  .sec06 .lower .right a span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 165px;
    height: 17px;
    margin: 0 auto;
    background: url(../img/arrow01.png) center/90% no-repeat;
  }
  .sec06 .cont01 .left {
    width: 100%;
    height: 300px;
    margin: 0 0 30px;
    background: url(../img/work01.png) top left/cover repeat-x;
    display: block;
    -webkit-animation: bMove01 300s linear infinite;
            animation: bMove01 300s linear infinite;
  }
  .sec06 .cont02 .left {
    width: 100%;
    height: 300px;
    margin: 0 0 30px;
    background: url(../img/work03.png) top left/cover repeat-x;
    display: block;
    -webkit-animation: bMove01 300s linear infinite;
            animation: bMove01 300s linear infinite;
  }
  .sec06 .cont03 .left {
    width: 100%;
    height: 300px;
    margin: 0 0 30px;
    background: url(../img/work05.png) top left/cover repeat-x;
    display: block;
    -webkit-animation: bMove01 300s linear infinite;
            animation: bMove01 300s linear infinite;
  }
}

/* =====sec07===== */
.sec07 {
  padding: 0 0 75px;
}

.sec07 .sec_title {
  position: relative;
  padding: 60px 0 0;
  margin: 0 0 90px;
  text-align: center;
  letter-spacing: .35em;
  line-height: 1.8;
}

.sec07 .sec_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 191px;
  height: 25px;
  background: url(../img/title07.png) center center/cover no-repeat;
}

.sec07 .form_wrap {
  width: 810px;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  background: rgba(0, 26, 67, 0.03);
}

.sec07 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 34px;
}

.sec07 .row .title {
  width: 140px;
  padding: 15px 0 0;
  text-align: left;
}

.sec07 .row .title .color {
  color: #f00;
}

.sec07 .row .data {
  width: 524px;
  height: 46px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sec07 .row .data input {
  width: 100%;
  height: 100%;
  border: 1px solid #231815;
}

.sec07 .row:last-of-type .data {
  height: 218px;
}

.sec07 .row .data textarea {
  width: 100% !important;
  height: 100% !important;
  border: 1px solid #231815;
}

.sec07 .agree_btn {
  margin: 0 0 20px;
  text-align: center;
}

.sec07 .agree_link {
  margin: 0 0 50px;
  text-decoration: underline;
  text-align: center;
}

.sec07 .agree_link a {
  color: #171D59;
}

.sec07 .submit_btn {
  width: 220px;
  height: 62px;
  margin: 0 auto;
}

.sec07 .submit_btn input {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #231815;
  cursor: pointer;
}

.sec07 .mfp_element_submit, .sec07 .mfp_element_reset, .sec07 .mfp_element_button, .sec07 button.mfp_next, .sec07 button.mfp_prev {
  border-radius: 0;
  padding: 0;
  /* border: solid 1px #CCC; */
  background: #fff;
  text-shadow: none;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

.sec07 .mfp_element_all {
  max-width: auto;
}

@media screen and (max-width: 768px) {
  .sec07 {
    padding: 0 0 75px;
  }
  .sec07 .sec_title {
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 90px;
    text-align: center;
    letter-spacing: .35em;
    line-height: 1.8;
  }
  .sec07 .sec_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 191px;
    height: 25px;
    background: url(../img/title07.png) center center/cover no-repeat;
  }
  .sec07 .form_wrap {
    width: 100%;
    padding: 40px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    background: rgba(0, 26, 67, 0.03);
  }
  .sec07 .table {
    width: 100%;
  }
  .sec07 .row {
    display: block;
    margin: 0 0 34px;
  }
  .sec07 .row .title {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 10px;
    text-align: left;
  }
  .sec07 .row .title .color {
    color: #f00;
  }
  .sec07 .row .data {
    display: block;
    width: 100%;
    height: 46px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec07 .row .data input {
    width: 100%;
    height: 100%;
    border: 1px solid #231815;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec07 .row:last-of-type .data {
    height: 218px;
  }
  .sec07 .row .data textarea {
    width: 100%;
    height: 100%;
    border: 1px solid #231815;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec07 .agree_btn {
    margin: 0 0 20px;
    text-align: center;
  }
  .sec07 .agree_link {
    margin: 0 0 50px;
    text-decoration: underline;
    text-align: center;
  }
  .sec07 .agree_link a {
    color: #171D59;
  }
  .sec07 .submit_btn {
    width: 220px;
    height: 62px;
    margin: 0 auto;
  }
  .sec07 .submit_btn input {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #231815;
    cursor: pointer;
  }
}

/* =====footer===== */
.footer .inner {
  background: #F4F4F4;
}

.footer .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1120px;
  padding: 50px 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer .head .left {
  color: #171D59;
}

.footer .head .left .title {
  margin: 0 0 20px;
  font-weight: 700;
}

.footer .head .left .text {
  position: relative;
  padding: 0 0 0 60px;
  font-size: 20px;
}

.footer .head .left .text .large {
  display: block;
  font-size: 30px;
  font-family: 'Lora', serif;
}

.footer .head .left .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  width: 55px;
  height: 55px;
  margin: auto 0;
  background: url(../img/logo01.png) center center/cover no-repeat;
}

.footer .head .right {
  font-size: 18px;
}

.footer .head .right .upper {
  margin: 0 0 30px;
}

.footer .head .right .text {
  font-weight: 700;
}

.footer .head .right .text .space_b {
  display: block;
  margin: 0 0 10px;
  font-weight: 700;
}

.footer .head .right .text .space {
  padding: 0 10px 0 0;
  font-weight: 700;
}

.footer .body {
  background: #171D59;
}

.footer .b_inner {
  width: 1120px;
  padding: 50px 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer .body_upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 50px;
}

.footer .body_upper .box {
  width: 33%;
}

.footer .body .link_l {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer .body .link_l a {
  font-weight: 700;
  color: #fff;
}

.footer .body .link {
  margin: 0 0 10px;
  text-indent: 1em;
}

.footer .body .link a {
  color: #fff;
}

.footer .body_lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .body_lower .link {
  width: 300px;
  height: 70px;
  background: #fff;
  border-radius: 2px;
}

.footer .body_lower .link:nth-of-type(1) {
  margin: 0 40px 0 0;
}

.footer .body_lower .link a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px 0 0;
  border-radius: 2px;
  background: #efefef;
  font-size: 20px;
  font-weight: 700;
  color: #171D59;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer .body_lower .link a:before {
  content: "〉";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}

.footer .body_lower a {
  line-height: 70px;
}

.footer .body_lower .link:nth-of-type(2) a:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer .body_lower .link a .small {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.footer .body .copy {
  padding: 20px 0;
  font-size: 13px;
  font-family: 'Lora', serif;
  color: #fff;
  text-align: center;
}

.return_top {
  z-index: 400;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  border: 0.5px solid #fff;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.return_top a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 0 0;
  background: #171D59;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.snsbox {
  padding: 0 0 50px;
  text-align: center;
}

.sns_title {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 700;
}

.snsbox .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.snsbox .item {
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .footer {
    margin: 0 0 70px;
  }
  .footer .head {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 50px 20px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footer .head .left {
    margin: 0 0 30px;
    color: #171D59;
    text-align: center;
  }
  .footer .head .left .title {
    margin: 0 0 20px;
    font-weight: 700;
  }
  .footer .head .left .text {
    position: relative;
    padding: 60px 0 0;
    font-size: 16px;
    font-weight: 700;
  }
  .footer .head .left .text .large {
    display: block;
    font-size: 20px;
    font-family: 'Lora', serif;
  }
  .footer .head .left .text:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
    width: 55px;
    height: 55px;
    margin: auto 0;
    background: url(../img/index/logo01.png) center center/cover no-repeat;
  }
  .footer .head .right {
    font-size: 18px;
    text-align: center;
  }
  .footer .head .right .upper {
    margin: 0 0 30px;
  }
  .footer .head .right .text {
    font-weight: 700;
  }
  .footer .head .right .text .space_b {
    display: block;
    margin: 0 0 10px;
    font-weight: 700;
  }
  .footer .head .right .text .space {
    padding: 0 10px 0 0;
    font-weight: 700;
  }
  .footer .body {
    background: #171D59;
  }
  .footer .b_inner {
    width: 100%;
    padding: 50px 20px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footer .body_upper {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 30px;
  }
  .footer .body_upper .box {
    width: 300px;
    margin: 0 auto 30px;
  }
  .footer .body_upper .box.box03 {
    margin-bottom: 0;
  }
  .footer .body .link_l {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
  .footer .body .link_l a {
    font-weight: 700;
    color: #fff;
  }
  .footer .body .link {
    margin: 0 0 10px 1em;
    text-indent: 0;
    line-height: 2.5;
  }
  .footer .body .link a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #fff;
  }
  .footer .body_lower {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .body_lower .link {
    width: 300px;
    max-width: 100%;
    height: 50px;
    margin: 0 auto 30px;
    background: #fff;
    border-radius: 2px;
  }
  .footer .body_lower .link:nth-of-type(1) {
    margin: 0 auto 30px;
  }
  .footer .body_lower .link a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: #efefef;
    font-size: 16px;
    font-weight: 700;
    color: #171D59;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 50px;
  }
  .footer .body_lower .link a .small {
    margin: 0 0 5px;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .footer .body .copy {
    padding: 20px 0;
    font-size: 13px;
    font-family: 'Lora', serif;
    color: #fff;
    text-align: center;
  }
  .return_top {
    z-index: 400;
    position: fixed;
    right: 5px;
    bottom: 75px;
    width: 40px;
    height: 40px;
    border: 0.5px solid #fff;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  .return_top a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0 0;
    background: #171D59;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .return_top a img {
    width: 25px;
    height: 25px;
  }
  .snsbox {
    padding: 0 20px 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  .sns_title {
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 700;
  }
  .snsbox .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .snsbox .item {
    margin: 0 20px;
  }
}

/* =====tel_fixed===== */
@media screen and (max-width: 768px) {
  .tel_fixed {
    z-index: 800;
    position: fixed;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-transition: .4s;
    transition: .4s;
  }
  .tel_fixed .item {
    width: 50%;
    text-align: center;
  }
  .tel_fixed .item a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 22px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #4c4948;
    font-family: "noto sans jp", sans-serif;
  }
  .tel_fixed .item:nth-of-type(1) a {
    background: #DDD720;
    font-size: 20px;
  }
  .tel_fixed .item:nth-of-type(2) a {
    background: #1A274F;
    color: #fff;
  }
  .tel_fixed .item .icon {
    padding: 0 5px 0 0;
  }
  .tel_fixed .item .icon img {
    margin: 0 0 2px;
  }
}
/*# sourceMappingURL=index.css.map */