@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : style.css
=================================================================== */
/* -----------------------------------------------------------
	基本設定、リンクカラーなど
----------------------------------------------------------- */
html {
  font-size: 62.5%;
  line-height: 1.8;
}

body {
  color: #646263;
  background: #ffffff;
  -webkit-text-size-adjust: none;
  font-size: 16px;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 2px;
  min-width: 1040px;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
    font-size: 1.3rem;
    min-width: 0;
  }
}
body img {
  max-width: 100%;
  vertical-align: top;
}

a {
  font-weight: bold;
  color: #e55487;
}
a:link, a:visited, a:active {
  text-decoration: underline;
}
.mouse a:hover, .touch a.touchstart {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a.link i {
  margin-left: 0.5em;
}

body, pre, input, textarea, select, button {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

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

.over {
  -webkit-transition: .2s all ease;
  transition: .2s all ease;
}
.mouse .over {
  -moz-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  -webkit-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
}
.over:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:focus, *:focus {
  outline: none;
}

a[href^="tel:"] {
  text-decoration: none;
}

/* -----------------------------------------------------------
	汎用クラス
----------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .view_pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .view_sp {
    display: none !important;
  }
}

strong {
  font-weight: bold;
}

#page {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  .flex:not(.sp-flex) {
    display: block;
  }
}
.flex.ai-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex.jc-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex.jc-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex.wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex .flex__item-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.flex .flex-order-1 {
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
.flex .flex-order-2 {
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.align-center {
  text-align: center !important;
}

span.bg_line {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, #fffacc 50%);
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  span.bg_line {
    font-size: 1.5rem;
  }
}

span.yaku {
  margin-right: -0.5em;
  display: inline !important;
}

.con_inner {
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .con_inner {
    padding: 0 10px;
  }
}

.btn_pink {
  text-align: center;
}
.btn_pink > a, .btn_pink > button, .btn_pink > span {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  padding: 12px 30px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
  min-width: 300px;
  background: #e55487;
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .btn_pink > a, .btn_pink > button, .btn_pink > span {
    font-size: 1.8rem;
  }
}
.btn_pink > a:hover, .btn_pink > button:hover, .btn_pink > span:hover {
  background: #ec80a6;
}
.btn_pink > a:after, .btn_pink > button:after, .btn_pink > span:after {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  right: 25px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn_pink.small > a, .btn_pink.small > button, .btn_pink.small > span {
  font-size: 1.4rem;
  min-width: 0;
  padding: 12px 50px 12px 25px;
}
@media only screen and (max-width: 767px) {
  .btn_pink.small > a, .btn_pink.small > button, .btn_pink.small > span {
    font-size: 1.2rem;
    min-width: 0;
    padding: 8px 30px 8px 15px;
  }
  .btn_pink.small > a:after, .btn_pink.small > button:after, .btn_pink.small > span:after {
    right: 15px;
  }
}
.btn_pink.large > a, .btn_pink.large > button, .btn_pink.large > span {
  font-size: 2rem;
  min-width: 580px;
  padding-top: 22px;
  padding-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .btn_pink.large > a, .btn_pink.large > button, .btn_pink.large > span {
    font-size: 1.8rem;
    min-width: 0;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.btn_pink.btn_confirm > a:after, .btn_pink.btn_confirm > button:after, .btn_pink.btn_confirm > span:after, .btn_pink.btn_submit > a:after, .btn_pink.btn_submit > button:after, .btn_pink.btn_submit > span:after {
  content: "\f105";
}
@media only screen and (max-width: 767px) {
  .btn_pink.btn_confirm > a:after, .btn_pink.btn_confirm > button:after, .btn_pink.btn_confirm > span:after, .btn_pink.btn_submit > a:after, .btn_pink.btn_submit > button:after, .btn_pink.btn_submit > span:after {
    display: none;
  }
}
.btn_pink.btn_back > a:after, .btn_pink.btn_back > button:after, .btn_pink.btn_back > span:after {
  content: "\f104";
  right: auto;
  left: 25px;
}
@media only screen and (max-width: 767px) {
  .btn_pink.btn_back > a:after, .btn_pink.btn_back > button:after, .btn_pink.btn_back > span:after {
    display: none;
  }
}

.btn_black {
  text-align: center;
}
.btn_black > a, .btn_black > button, .btn_black > span {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  padding: 10px 30px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
  min-width: 300px;
  background: #ccc;
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .btn_black > a, .btn_black > button, .btn_black > span {
    font-size: 1.8rem;
  }
}
.btn_black > a:hover, .btn_black > button:hover, .btn_black > span:hover {
  background: #b3b3b3;
}
.btn_black > a:after, .btn_black > button:after, .btn_black > span:after {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  right: 25px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn_black.small > a, .btn_black.small > button, .btn_black.small > span {
  font-size: 1.4rem;
  min-width: 0;
  padding: 12px 50px 12px 25px;
}
@media only screen and (max-width: 767px) {
  .btn_black.small > a, .btn_black.small > button, .btn_black.small > span {
    font-size: 1.2rem;
    min-width: 0;
    padding: 8px 30px 8px 15px;
  }
  .btn_black.small > a:after, .btn_black.small > button:after, .btn_black.small > span:after {
    right: 15px;
  }
}
.btn_black.large > a, .btn_black.large > button, .btn_black.large > span {
  font-size: 2rem;
  min-width: 580px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .btn_black.large > a, .btn_black.large > button, .btn_black.large > span {
    font-size: 1.8rem;
    min-width: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.btn_black.btn_back > a:after, .btn_black.btn_back > button:after, .btn_black.btn_back > span:after {
  content: "\f104";
  right: auto;
  left: 25px;
}
@media only screen and (max-width: 767px) {
  .btn_black.btn_back > a:after, .btn_black.btn_back > button:after, .btn_black.btn_back > span:after {
    display: none;
  }
}

.btn_white {
  text-align: center;
}
.btn_white a, .btn_white button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-decoration: none;
  background: #fff;
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  color: #1e4a99;
  padding: 10px 30px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
  min-width: 580px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn_white a, .btn_white button {
    font-size: 1.3rem;
    min-width: 240px;
  }
}
.btn_white a:hover, .btn_white button:hover {
  background: #1e4a99;
  color: #fff;
}
.btn_white a:after, .btn_white button:after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  right: 25px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .btn_white a:after, .btn_white button:after {
    right: 15px;
  }
}
.btn_white.btn_close a:after, .btn_white.btn_close button:after {
  content: "\f00d";
}

.st_catch {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  line-height: 1.6;
  font-weight: bold;
  text-shadow: 0px 0px 20px rgba(35, 24, 21, 0.6);
}
@media only screen and (max-width: 767px) {
  .st_catch {
    text-shadow: 0px 0px 10px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .st_catch {
    font-size: 1.9rem;
    margin-bottom: 40px;
  }
}
.st_catch.normal {
  font-weight: normal;
}
.st_catch span {
  display: block;
}
.st_catch span.fuki {
  margin-bottom: 20px;
  color: #ffe600;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .st_catch span.fuki {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }
}
.st_catch span.fuki.small {
  font-size: 1.9rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .st_catch span.fuki.small {
    font-size: 1.3rem;
  }
}
.st_catch span.fuki.yellow {
  color: #ffe600 !important;
}
.st_catch em {
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {
  .st_catch em {
    font-size: 2.6rem;
  }
}
.st_catch strong {
  color: #ffe600;
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {
  .st_catch strong {
    font-size: 2.6rem;
  }
}
.st_catch.white {
  color: #fff;
}
.st_catch.white span.fuki {
  color: #fff;
}
.st_catch.pink {
  color: #e55487;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
}
.st_catch.pink span.fuki {
  color: #e55487;
}

.st_blue {
  text-align: center;
  color: #1e4a99;
  font-size: 3rem;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .st_blue {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
.st_blue .bg_line {
  font-size: 4rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, #ffe600 50%);
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .st_blue .bg_line {
    font-size: 2.6rem;
  }
}
.st_blue em {
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {
  .st_blue em {
    font-size: 2.6rem;
  }
}

.st_pink {
  text-align: center;
  color: #e55487;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .st_pink {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}
.st_pink .bg_line {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, #ffe600 50%);
  font-size: 3rem;
}
@media only screen and (max-width: 767px) {
  .st_pink .bg_line {
    font-size: 2rem;
  }
}
.st_pink .bg_line em {
  font-size: 5rem;
}
@media only screen and (max-width: 767px) {
  .st_pink .bg_line em {
    font-size: 3.2rem;
  }
}

#page {
  padding-top: 89px;
}
@media only screen and (max-width: 767px) {
  #page {
    padding-top: 57px;
  }
}

/* -----------------------------------------------------------
	#header
----------------------------------------------------------- */
#header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  #header {
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
  }
}
#header.is-open {
  background: rgba(30, 74, 153, 0.9);
}
#header.is-open .con_header .logo img.def {
  display: none;
}
#header.is-open .con_header .logo img.white {
  display: inline-block;
}
#header.is-open .con_header .gnav .btn_spmenu a {
  color: #fff;
}
#header.is-open .con_header .gnav .btn_spmenu a .ic span {
  opacity: 0;
}
#header.is-open .con_header .gnav .btn_spmenu a .ic:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  top: 5px;
}
#header.is-open .con_header .gnav .btn_spmenu a .ic:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff;
  bottom: 5px;
}
#header .con_header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px 30px;
}
@media only screen and (max-width: 767px) {
  #header .con_header {
    padding: 10px 20px 10px 10px;
  }
}
#header .con_header .logo {
  flex: 1;
  -webkit-flex: 1;
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  #header .con_header .logo {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #header .con_header .logo img {
    height: 30px;
    width: auto;
  }
}
#header .con_header .logo img.white {
  display: none;
}
#header .con_header .gnav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
#header .con_header .gnav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #header .con_header .gnav ul {
    display: none;
  }
}
#header .con_header .gnav ul li {
  margin-left: 5px;
}
#header .con_header .gnav ul li a {
  text-decoration: none;
  display: block;
  color: #221f20;
  font-size: 1.6rem;
  padding: 3px 10px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
#header .con_header .gnav ul li a.active, #header .con_header .gnav ul li a:hover {
  background: #1e4a99;
  color: #fff;
}
#header .con_header .gnav .btn_pink {
  margin-left: 20px;
}
#header .con_header .gnav .btn_spmenu {
  display: none;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  #header .con_header .gnav .btn_spmenu {
    display: block;
  }
}
#header .con_header .gnav .btn_spmenu a {
  display: block;
  text-decoration: none;
  color: #1e4a99;
  text-align: center;
}
#header .con_header .gnav .btn_spmenu a > span {
  display: block;
}
#header .con_header .gnav .btn_spmenu a .ic {
  width: 25px;
  height: 12px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#header .con_header .gnav .btn_spmenu a .ic span, #header .con_header .gnav .btn_spmenu a .ic:before, #header .con_header .gnav .btn_spmenu a .ic:after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1e4a99;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
#header .con_header .gnav .btn_spmenu a .ic:before, #header .con_header .gnav .btn_spmenu a .ic:after {
  content: "";
  display: block;
}
#header .con_header .gnav .btn_spmenu a .ic:before {
  top: 0;
}
#header .con_header .gnav .btn_spmenu a .ic:after {
  bottom: 0;
}
#header .con_header .gnav .btn_spmenu a .ic span {
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#header .con_header .gnav .btn_spmenu a .title {
  font-size: 1.1rem;
  margin-top: 8px;
  letter-spacing: 0;
  line-height: 1;
}
#header .gnav_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #header .gnav_sp {
    padding-bottom: 70px;
  }
}
#header .gnav_sp ul {
  padding: 0 15px;
}
#header .gnav_sp ul li {
  border-bottom: 1px solid #a5b7d6;
}
#header .gnav_sp ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  padding: 15px 0;
  color: #fff;
}
#header .gnav_sp .btn_pink {
  margin-top: 25px;
}
#header .gnav_sp .btn_white {
  margin-top: 25px;
}

/* -----------------------------------------------------------
	.con_main
----------------------------------------------------------- */
.con_main {
  padding: 9vw 0 4vw 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .con_main {
    padding-top: 0;
    padding-bottom: 10vw;
    margin-top: 10px;
  }
}
.con_main .wrap_bg {
  position: absolute;
  top: 0;
  left: 15%;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .con_main .wrap_bg {
    top: 12vw;
    left: 16%;
    height: calc(100% - 12vw);
  }
}
.con_main .wrap_bg .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.con_main .wrap_bg .bg:after {
  -moz-transform: skewX(15deg);
  -ms-transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
  content: "";
  display: block;
  background: url(../images/bg_main.jpg) center no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -12%;
}
@media only screen and (max-width: 767px) {
  .con_main .wrap_bg .bg:after {
    left: -16%;
    background-position: right 33% center;
  }
}
.con_main .box_title {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  padding: 23px 80px 30px 50px;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .con_main .box_title {
    padding: 23px 8px 20px 20px;
  }
}
.con_main .box_title:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  background: rgba(229, 84, 135, 0.8);
  width: 150%;
  height: 100%;
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.con_main .box_title .catch {
  font-size: 2rem;
  margin-bottom: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .con_main .box_title .catch {
    font-size: 3vw;
  }
}
.con_main .box_title .catch strong {
  color: #ffe600;
  font-size: 3rem;
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  -moz-transform-origin: 0 bottom;
  -ms-transform-origin: 0 bottom;
  -webkit-transform-origin: 0 bottom;
  transform-origin: 0 bottom;
  margin-right: -2.5em;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .con_main .box_title .catch strong {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    margin-right: 0;
    display: block;
    font-size: 5vw;
  }
}
.con_main .box_title h2 {
  font-weight: bold;
  font-style: italic;
  font-size: 6.2rem;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0px 0px 20px rgba(35, 24, 21, 0.6);
}
@media only screen and (max-width: 767px) {
  .con_main .box_title h2 {
    text-shadow: 0px 0px 10px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_main .box_title h2 {
    font-size: 10vw;
  }
}
.con_main .box_title h2 em {
  font-size: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .con_main .box_title h2 em {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 767px) {
  .con_main .box_title h2 .line01 {
    margin-left: -0.1em;
  }
}
@media only screen and (max-width: 767px) {
  .con_main .box_title h2 .line02 {
    margin-left: -0.3em;
  }
}
.con_main .box_title .txt_att {
  font-size: 1.4rem;
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .con_main .box_title .txt_att {
    font-size: 2vw;
  }
}
.con_main .box_main {
  margin-top: 10px;
  text-align: center;
}
.con_main .box_main .txt {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 0px 20px rgba(35, 24, 21, 0.6);
}
@media only screen and (max-width: 767px) {
  .con_main .box_main .txt {
    text-shadow: 0px 0px 10px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_main .box_main .txt {
    font-size: 1.6rem;
  }
}
.con_main .box_main .txt em {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .con_main .box_main .txt em {
    font-size: 1.2rem;
  }
}
.con_main .box_main .btn_contact {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .con_main .box_main .btn_contact {
    margin-top: 20px;
  }
}

/* -----------------------------------------------------------
	.con_problem
----------------------------------------------------------- */
.con_problem {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .con_problem .con_inner {
    padding-left: 20px;
  }
}
.con_problem ul {
  margin-left: -5%;
  margin-top: -45px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .con_problem ul {
    margin-left: 0;
    margin-top: 0;
  }
}
.con_problem ul li {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  width: 45%;
  margin-left: 5%;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 35px 20px 15px 20px;
  margin-top: 45px;
  font-size: 1.8rem;
  position: relative;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .con_problem ul li {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_problem ul li {
    width: 100%;
    margin-left: 0;
    padding: 15px;
    margin-top: 30px;
    font-size: 1.3rem;
    padding-top: 30px;
  }
}
.con_problem ul li .bg_line {
  font-size: 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, #fffacc 50%);
}
@media only screen and (max-width: 767px) {
  .con_problem ul li .bg_line {
    font-size: 1.5rem;
  }
}
.con_problem ul li .tag {
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  left: -25px;
}
@media only screen and (max-width: 767px) {
  .con_problem ul li .tag {
    left: -15px;
  }
}
.con_problem ul li.wide {
  width: 95%;
}
@media only screen and (max-width: 767px) {
  .con_problem ul li.wide {
    width: 100%;
  }
}

.tag {
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  background: #6180b8;
  color: #fff;
  padding: 2px 8px;
}
@media only screen and (max-width: 767px) {
  .tag {
    font-size: 1.6rem;
  }
}
.tag span {
  display: inline-block;
  width: 30px;
  line-height: 30px;
  height: 30px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  color: #6180b8;
  text-align: center;
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .tag span {
    width: 20px;
    line-height: 20px;
    height: 20px;
  }
}

/* -----------------------------------------------------------
	.con_resolution
----------------------------------------------------------- */
.con_resolution {
  background: url(../images/bg_resolution.jpg) center no-repeat;
  background-size: cover;
  margin-top: 80px;
  padding: 80px 0 100px 0;
}
@media only screen and (max-width: 767px) {
  .con_resolution {
    margin-top: 50px;
    padding: 50px 0;
  }
}
.con_resolution .wrap li {
  padding: 60px 30px 25px 30px;
  position: relative;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  margin-bottom: 40px;
  background: #fff;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .con_resolution .wrap li {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_resolution .wrap li {
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding: 40px 20px 15px 20px;
  }
}
.con_resolution .wrap li:last-child {
  margin-bottom: 0;
}
.con_resolution .wrap li .tag {
  background: #ed87ab;
  padding-left: 10px;
  padding-right: 10px;
}
.con_resolution .wrap li .tag span {
  color: #ed87ab;
}
.con_resolution .wrap li .txt_att {
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .con_resolution .wrap li .txt_att {
    font-size: 1rem;
  }
}
.con_resolution .box_company {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company {
    margin-top: 50px;
  }
}
.con_resolution .box_company h3 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company h3 {
    font-size: 2rem;
    padding-left: 90px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.con_resolution .box_company h3 span {
  width: 110px;
  line-height: 110px;
  height: 110px;
  border: 1px solid #fff;
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  font-size: 2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company h3 span {
    width: 80px;
    line-height: 80px;
    height: 80px;
    font-size: 1.3rem;
    bottom: auto;
    top: 50%;
    margin-top: -40px;
  }
}
.con_resolution .box_company dl {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  background: #fff7b2;
  padding: 30px 40px 40px 40px;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl {
    padding: 20px 10px 25px 10px;
  }
}
.con_resolution .box_company dl dt {
  text-align: center;
  color: #e55487;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl dt {
    font-size: 1.85rem;
    letter-spacing: 0;
  }
}
.con_resolution .box_company dl dt em {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl dt em {
    font-size: 1.3rem;
  }
}
.con_resolution .box_company dl ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.con_resolution .box_company dl ul li {
  -webkit-flex: 0 1 30%;
  flex: 0 1 30%;
  font-size: 2rem;
  padding-left: 15px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl ul li {
    font-size: 1.2rem;
    flex: 0 1 45% !important;
    padding-left: 10px;
  }
  .con_resolution .box_company dl ul li:nth-child(even) {
    flex: 0 1 55% !important;
  }
}
.con_resolution .box_company dl ul li:nth-child(3n+2) {
  -webkit-flex: 0 1 40%;
  flex: 0 1 40%;
}
.con_resolution .box_company dl ul li span {
  font-size: 1rem;
  color: #e55487;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl ul li span {
    -moz-transform: scale(0.6, 0.6) translateY(-88%);
    -ms-transform: scale(0.6, 0.6) translateY(-88%);
    -webkit-transform: scale(0.6, 0.6) translateY(-88%);
    transform: scale(0.6, 0.6) translateY(-88%);
    -moz-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    -webkit-transform-origin: 0 center;
    transform-origin: 0 center;
  }
}
.con_resolution .box_company dl ul li:last-child {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .con_resolution .box_company dl ul li:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.1rem;
  }
}

/* -----------------------------------------------------------
	.con_points
----------------------------------------------------------- */
.con_points {
  margin-top: 100px;
}
.con_points .st_pink {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .con_points .con_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.con_points .wrap {
  margin-left: -4%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.con_points .wrap li:not(.large) {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  width: 46%;
  margin-left: 4%;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 20px 15px 15px 15px;
  margin-top: 35px;
  font-size: 1.8rem;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li:not(.large) {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li:not(.large) {
    padding: 15px 5px;
    margin-top: 20px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .con_points .wrap li:not(.large).small {
    width: 29.3333333%;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.con_points .wrap li .num {
  position: absolute;
  top: 0;
  left: 0;
  -moz-transform: translate(-30%, -30%);
  -ms-transform: translate(-30%, -30%);
  -webkit-transform: translate(-30%, -30%);
  transform: translate(-30%, -30%);
}
.con_points .wrap li .num img {
  width: auto;
  height: 111px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li .num img {
    width: auto;
    height: 70px;
  }
}
.con_points .wrap li h3 {
  text-align: center;
}
.con_points .wrap li h3 span {
  display: block;
}
.con_points .wrap li h3 .ic {
  margin-bottom: 20px;
  min-height: 86px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li h3 .ic {
    margin-bottom: 0;
  }
  .con_points .wrap li h3 .ic img {
    -moz-transform: scale(0.65, 0.65);
    -ms-transform: scale(0.65, 0.65);
    -webkit-transform: scale(0.65, 0.65);
    transform: scale(0.65, 0.65);
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
.con_points .wrap li h3 .ic.cpu em {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  color: #1e4a99;
  font-size: 12px;
  font-weight: bold;
  top: 50px;
  letter-spacing: 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li h3 .ic.cpu em {
    font-size: 8px;
    top: 47px;
  }
}
.con_points .wrap li h3 .title {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li h3 .title {
    font-size: 1.3rem;
  }
}
.con_points .wrap li .txt_att {
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li .txt_att {
    font-size: 1rem;
  }
}
.con_points .wrap li.large {
  width: 96%;
  margin-left: 4%;
  position: relative;
  margin-bottom: -20px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large {
    margin-bottom: 0;
  }
}
.con_points .wrap li.large .bg {
  border: 4px solid #e55487;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
.con_points .wrap li.large .bg h3 {
  padding: 15px 0;
  background: #ffe600;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #e55487;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg h3 {
    font-size: 3rem;
    padding-top: 5px;
  }
}
.con_points .wrap li.large .bg h3 span {
  display: block;
}
.con_points .wrap li.large .bg h3 span.ic {
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg h3 span.ic {
    margin-bottom: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg h3 span.ic img {
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
}
.con_points .wrap li.large .bg h3 .title {
  font-size: 4rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg h3 .title {
    font-size: 3rem;
  }
}
.con_points .wrap li.large .bg .txt {
  background: #e55487;
  text-align: center;
  padding: 20px 0;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg .txt {
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 15px 0;
  }
}
.con_points .wrap li.large .bg .txt em {
  font-size: 1.9rem;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li.large .bg .txt em {
    font-size: 1.3rem;
  }
}
.con_points .wrap li.large .bg .txt strong {
  color: #ffe600;
}
.con_points .wrap li.large .txt_att {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .con_points .wrap li:last-child {
    width: 100%;
    padding-bottom: 0;
  }
  .con_points .wrap li:last-child h3 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}

/* -----------------------------------------------------------
	.con_cm
----------------------------------------------------------- */
.con_cm {
  margin-top: 50px;
}
.con_cm.notitle {
  margin-top: 0;
}
.con_cm .box_title {
  background: #e55487;
  padding: 40px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .con_cm .box_title {
    padding: 30px 0;
  }
}
.con_cm .box_title:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 25px 0 25px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
}
@media only screen and (max-width: 767px) {
  .con_cm .box_title:after {
    border-width: 13px 17px 0 17px;
    margin-left: -17px;
  }
}
.con_cm .box_title .st_catch {
  margin-bottom: 0;
}
.con_cm .box_content {
  background: url(../images/bg_cm.jpg) center no-repeat;
  background-size: cover;
  padding: 22vw 0 50px 0;
}
@media only screen and (max-width: 767px) {
  .con_cm .box_content {
    padding-top: 42vw;
    background-image: url(../images/bg_cm_sp.jpg);
  }
}
.con_cm .box_content .txt {
  font-weight: bold;
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0px 0px 20px rgba(35, 24, 21, 0.6);
}
@media only screen and (max-width: 767px) {
  .con_cm .box_content .txt {
    text-shadow: 0px 0px 10px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_cm .box_content .txt {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.con_cm .box_content .txt em {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .con_cm .box_content .txt em {
    font-size: 1.2rem;
  }
}

/* -----------------------------------------------------------
	.con_items
----------------------------------------------------------- */
.con_items {
  margin-top: 100px;
}
.con_items .nav_category {
  border-bottom: 5px solid #1e4a99;
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .con_items .nav_category {
    border-bottom-width: 3px;
  }
}
.con_items .nav_category ul {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}
.con_items .nav_category ul li {
  flex: 1;
  -webkit-flex: 1;
}
.con_items .nav_category ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  position: relative;
  padding-top: 15px;
  padding-bottom: 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .con_items .nav_category ul li a {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.con_items .nav_category ul li a:hover:after {
  margin-bottom: -5px;
}
.con_items .nav_category ul li a:before {
  content: "";
  display: block;
  width: 1px;
  height: 75%;
  background: #bdbcbc;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.con_items .nav_category ul li a:after {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  left: 50%;
  bottom: 0;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 2rem;
  color: #1e4a99;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
@media only screen and (max-width: 767px) {
  .con_items .nav_category ul li a:after {
    font-size: 1.6rem;
  }
}
.con_items .nav_category ul li a .ic {
  margin-bottom: 10px;
  min-height: 59px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .con_items .nav_category ul li a .ic {
    margin-bottom: -5px;
  }
}
@media only screen and (max-width: 767px) {
  .con_items .nav_category ul li a .ic img {
    -moz-transform: scale(0.7, 0.7);
    -ms-transform: scale(0.7, 0.7);
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
  }
}
.con_items .nav_category ul li a .title {
  color: #1e4a99;
  font-size: 1.8rem;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .con_items .nav_category ul li a .title {
    font-size: 3vw;
  }
}
.con_items .sec_item {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item {
    padding: 50px 0;
  }
}
.con_items .sec_item.recommended {
  background: url(../images/bg_recommended.jpg) center 0 no-repeat #d3daec;
  background-size: 100% auto;
}
.con_items .sec_item.desktop {
  background: url(../images/bg_desktop.jpg) center 0 no-repeat #e9e9e9;
  background-size: 100% auto;
}
.con_items .sec_item.note {
  background: url(../images/bg_note.jpg) center 0 no-repeat #ffffff;
  background-size: 100% auto;
}
.con_items .sec_item.options {
  background: url(../images/bg_options.jpg) center 0 no-repeat #e9e9e9;
  background-size: 100% auto;
}
.con_items .sec_item.options .box_title h3 {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item.options .box_title h3 {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}
.con_items .sec_item .con_inner {
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .con_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.con_items .sec_item .box_title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .box_title {
    margin-bottom: 25px;
  }
}
.con_items .sec_item .box_title h3 {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 3rem;
  padding: 15px 80px 15px 40px;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .box_title h3 {
    font-size: 1.8rem;
    padding: 10px 50px 10px 15px;
  }
}
.con_items .sec_item .box_title h3 > img {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .box_title h3 > img {
    -moz-transform: scale(0.65, 0.65);
    -ms-transform: scale(0.65, 0.65);
    -webkit-transform: scale(0.65, 0.65);
    transform: scale(0.65, 0.65);
    -moz-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    -webkit-transform-origin: 0 center;
    transform-origin: 0 center;
    margin-right: -5px;
  }
}
.con_items .sec_item .box_title h3:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 300%;
  height: 100%;
  -moz-transform: skewX(-35deg);
  -ms-transform: skewX(-35deg);
  -webkit-transform: skewX(-35deg);
  transform: skewX(-35deg);
}
.con_items .sec_item .box_title h3 .title {
  color: #1e4a99;
  white-space: nowrap;
}
.con_items .sec_item .box_title h3 .ic_circle {
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .box_title h3 .ic_circle {
    margin-left: 10px;
  }
}
.con_items .sec_item .box_title.black h3:after {
  background: rgba(34, 31, 32, 0.7);
}
.con_items .sec_item .box_title.black h3 .title {
  color: #fff;
}
.con_items .sec_item .ic_circle {
  width: 110px;
  height: 110px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  background: #1e4a99;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .ic_circle {
    width: 70px;
    height: 70px;
  }
}
.con_items .sec_item .ic_circle .txt {
  font-size: 13px;
  display: block;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .ic_circle .txt {
    font-size: 10px;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
    white-space: nowrap;
  }
}
.con_items .sec_item .ic_circle img {
  display: block;
  margin: 5px auto;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .ic_circle img {
    -moz-transform: scale(0.65, 0.65);
    -ms-transform: scale(0.65, 0.65);
    -webkit-transform: scale(0.65, 0.65);
    transform: scale(0.65, 0.65);
    margin: -5px auto;
  }
}
.con_items .sec_item .ic_circle.pink {
  background: #e55487;
}
.con_items .sec_item .ic_circle.note {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .ic_circle.note {
    top: 5%;
    left: 4%;
    width: 55px;
    height: 55px;
  }
}
.con_items .sec_item .ic_circle.note .num {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .ic_circle.note .num {
    font-size: 28px;
  }
}
.con_items .sec_item .ic_circle.note .txt {
  font-size: 10px;
}
.con_items .sec_item .wrap_itemlist {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.con_items .sec_item .wrap_itemlist .box_item {
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  padding: 30px;
  display: -webkit-flex;
  display: flex;
  margin-top: 50px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item {
    padding: 15px 15px 20px 15px;
    margin-top: 20px;
    display: block;
  }
}
.con_items .sec_item .wrap_itemlist .box_item.yellow {
  background: #ffe600;
}
.con_items .sec_item .wrap_itemlist .box_item:first-child {
  margin-top: 0;
}
.con_items .sec_item .wrap_itemlist .box_item .img {
  min-width: 210px;
  padding-right: 20px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .img {
    padding-right: 0;
  }
  .con_items .sec_item .wrap_itemlist .box_item .img.note {
    text-align: left;
  }
  .con_items .sec_item .wrap_itemlist .box_item .img.note.center {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .img.note.center .ic_circle.note {
    left: auto;
    right: 50%;
    margin-right: 14%;
  }
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .img.note img {
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_content {
  flex: 1;
  -webkit-flex: 1;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_content {
    margin-top: 10px;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_content h4 {
  font-weight: bold;
  color: #221f20;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_content h4 {
    font-size: 2rem;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_content h4 em {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_content h4 em {
    font-size: 1.3rem;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_content .ic_point {
  position: absolute;
  top: -30px;
  right: 30px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_content .ic_point {
    right: 15px;
    top: 15px;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_price {
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .content {
  line-height: 1.3;
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .content .txt {
  font-weight: bold;
  letter-spacing: 0;
  color: #221f20;
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .content .price {
  font-size: 2rem;
  color: #e55487;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_price .content .price {
    font-size: 1.3rem;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .content .price em {
  font-size: 4rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_price .content .price em {
    font-size: 2.6rem;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .fuki {
  background: #e55487;
  padding: 10px 10px 10px 20px;
  position: relative;
  margin-left: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_price .fuki {
    padding: 5px 5px 5px 10px;
    margin-left: 10px;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .fuki:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 14px 10px 0;
  border-color: transparent #e55487 transparent transparent;
  position: absolute;
  top: 50%;
  left: -14px;
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_price .fuki:after {
    border-width: 8px 9px 8px 0;
    left: -9px;
    margin-top: -8px;
  }
}
.con_items .sec_item .wrap_itemlist .box_item .box_price .fuki .txt {
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_itemlist .box_item .box_price .fuki .txt {
    font-size: 1rem;
  }
}
.con_items .sec_item .wrap_optionlist {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -4%;
  margin-top: -35px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist {
    margin-left: 0;
    display: block;
    margin-top: 0;
  }
}
.con_items .sec_item .wrap_optionlist .box_option {
  width: 46%;
  margin-left: 4%;
  margin-top: 35px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  padding: 30px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option {
    padding: 15px 15px 20px 15px;
    margin-top: 20px;
    display: block;
    margin-left: 0;
    width: 100%;
  }
  .con_items .sec_item .wrap_optionlist .box_option:first-child {
    margin-top: 0;
  }
}
.con_items .sec_item .wrap_optionlist .box_option.wide {
  width: 96%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option.wide {
    width: 100%;
    display: block;
  }
}
.con_items .sec_item .wrap_optionlist .box_option.wide .box_title {
  margin-bottom: 0;
}
.con_items .sec_item .wrap_optionlist .box_option.wide .box_price {
  flex: 1;
  -webkit-flex: 1;
}
.con_items .sec_item .wrap_optionlist .box_option .box_title .ribbon span {
  display: inline-block;
  color: #fff;
  margin-left: -40px;
  padding: 0px 30px 0 40px;
  background: #1e4a99;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_title .ribbon span {
    font-size: 1.3rem;
    margin-left: -25px;
    padding-left: 25px;
  }
}
.con_items .sec_item .wrap_optionlist .box_option .box_title .ribbon span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #221f20 transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.con_items .sec_item .wrap_optionlist .box_option .box_title h4 {
  color: #221f20;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_title h4 {
    font-size: 2rem;
  }
}
.con_items .sec_item .wrap_optionlist .box_option .box_title h4 em {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_title h4 em {
    font-size: 1.3rem;
  }
}
.con_items .sec_item .wrap_optionlist .box_option .box_title .txt_att {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_title .txt_att {
    font-size: 1rem;
    margin-top: 5px;
  }
}
.con_items .sec_item .wrap_optionlist .box_option .box_spec {
  margin-top: 15px;
}
.con_items .sec_item .wrap_optionlist .box_option .box_price {
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.con_items .sec_item .wrap_optionlist .box_option .box_price .content {
  line-height: 1.3;
}
.con_items .sec_item .wrap_optionlist .box_option .box_price .content .txt {
  font-weight: bold;
  color: #221f20;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_price .content .txt {
    font-size: 1rem;
  }
}
.con_items .sec_item .wrap_optionlist .box_option .box_price .content .price {
  font-size: 2rem;
  color: #e55487;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_price .content .price {
    font-size: 1.3rem;
  }
}
.con_items .sec_item .wrap_optionlist .box_option .box_price .content .price em {
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {
  .con_items .sec_item .wrap_optionlist .box_option .box_price .content .price em {
    font-size: 2.6rem;
  }
}

.box_spec {
  background: #fff;
}
.box_spec dl {
  position: relative;
  display: table;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .box_spec dl {
    display: block;
  }
}
.box_spec dl:after {
  content: "";
  display: block;
  height: 2px;
  width: 95%;
  background: url(../images/bg_line_dot.png) 0 center repeat-x;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
  background-size: auto 2px;
}
@media only screen and (max-width: 767px) {
  .box_spec dl:after {
    display: none;
  }
}
.box_spec dl:last-child:after {
  display: none;
}
.box_spec dl dt {
  width: 140px;
  background: #d3d2d2;
  font-size: 1.4rem;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .box_spec dl dt {
    width: 100%;
    display: block;
    font-size: 1.2rem;
  }
}
.box_spec dl dd {
  font-size: 1.6rem;
  background: #fff;
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .box_spec dl dd {
    display: block;
    font-size: 1.3rem;
  }
}
.box_spec dl dt, .box_spec dl dd {
  padding: 10px 15px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .box_spec dl dt {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

/* -----------------------------------------------------------
	.con_contact
----------------------------------------------------------- */
.con_contact {
  padding: 100px 0;
  background: #d2dbeb;
}
@media only screen and (max-width: 767px) {
  .con_contact {
    padding: 80px 0 50px 0;
  }
}
.con_contact .box_error {
  margin-bottom: 30px;
}
.con_contact .box_error .txt_error {
  text-align: center;
}
.con_contact .box_error .error_messe {
  text-align: center;
}
.con_contact .box_error .box_btn {
  margin-top: 30px;
}
.con_contact .box_thanks {
  margin-bottom: 30px;
}
.con_contact .box_thanks .txt_thanks {
  text-align: center;
}
.con_contact .box_thanks .btn_pink {
  margin-top: 30px;
}
.con_contact .wrap_form {
  position: relative;
  z-index: 2;
  max-width: 880px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  -moz-box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(35, 24, 21, 0.4);
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
    box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.con_contact .wrap_form .txt_confirm {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form .txt_confirm {
    margin-top: 15px;
  }
}
.con_contact .wrap_form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e4a99;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form h3 {
    margin-bottom: 0;
  }
}
.con_contact .wrap_form h3 span {
  display: block;
}
.con_contact .wrap_form h3 span.fuki {
  font-size: 1.4rem;
}
.con_contact .wrap_form h3 span.jp {
  font-size: 2.0rem;
}
.con_contact .wrap_form table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table {
    display: block;
  }
  .con_contact .wrap_form table tr, .con_contact .wrap_form table tbody, .con_contact .wrap_form table th, .con_contact .wrap_form table td {
    display: block;
  }
}
.con_contact .wrap_form table tr {
  border-bottom: 1px solid #D3D2D2;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr {
    padding: 15px 20px;
  }
}
.con_contact .wrap_form table tr:last-child {
  border-bottom: none;
}
.con_contact .wrap_form table tr th, .con_contact .wrap_form table tr td {
  vertical-align: top;
}
.con_contact .wrap_form table tr.baseline th, .con_contact .wrap_form table tr.baseline td {
  vertical-align: baseline;
}
.con_contact .wrap_form table tr th {
  padding: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  position: relative;
  padding-top: 45px;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr th {
    font-size: 1.3rem;
    padding: 0;
    width: 100%;
    margin-bottom: 5px;
  }
}
.con_contact .wrap_form table tr th.th_required:after {
  content: "必須";
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  right: 30px;
  top: 60px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 1em;
  background: #e55487;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr th.th_required:after {
    position: static;
    display: inline;
    margin-left: 5px;
  }
}
.con_contact .wrap_form table tr td {
  padding: 30px;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr td {
    padding: 0;
  }
}
.con_contact .wrap_form table tr td input, .con_contact .wrap_form table tr td textarea {
  display: block;
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #d8d8d8;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr td input, .con_contact .wrap_form table tr td textarea {
    padding: 12px;
    font-size: 16px;
  }
}
.con_contact .wrap_form table tr td input.err, .con_contact .wrap_form table tr td textarea.err {
  color: red;
}
.con_contact .wrap_form table tr td .input {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr td .input {
    margin-bottom: 5px;
  }
}
.con_contact .wrap_form table tr td .txt_example {
  color: #908f8f;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr td .txt_example {
    font-size: 1.1rem;
  }
}
.con_contact .wrap_form table tr td a {
  font-size: 1.8rem;
}
.con_contact .wrap_form table tr td a img {
  margin-right: 0.5em;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table tr td a {
    font-size: 1.4rem;
  }
}
.con_contact .wrap_form table.tbl_confirm th, .con_contact .wrap_form table.tbl_confirm td {
  vertical-align: middle;
}
.con_contact .wrap_form table.tbl_confirm th {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form table.tbl_confirm th {
    padding-top: 0;
  }
}
.con_contact .wrap_form .box_btn {
  margin-top: 20px;
  text-align: center;
}
.con_contact .wrap_form .box_btn .btn_submit {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form .box_btn .btn_submit {
    padding: 0 20px;
  }
}
.con_contact .wrap_form .box_btn .btn_submit button {
  min-width: 580px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form .box_btn .btn_submit button {
    min-width: 250px;
  }
}
.con_contact .wrap_form .box_btn .txt {
  margin-top: 15px;
}
.con_contact .wrap_form .box_btn.con_confirm {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form .box_btn.con_confirm {
    display: block;
  }
}
.con_contact .wrap_form .box_btn.con_confirm .btn_back, .con_contact .wrap_form .box_btn.con_confirm .btn_submit {
  width: 49%;
}
@media only screen and (max-width: 767px) {
  .con_contact .wrap_form .box_btn.con_confirm .btn_back, .con_contact .wrap_form .box_btn.con_confirm .btn_submit {
    padding: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.con_contact .wrap_form .box_btn.con_confirm .btn_back > *, .con_contact .wrap_form .box_btn.con_confirm .btn_submit > * {
  line-height: 1.8;
  min-width: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .con_contact.confirm .wrap_form table tr th {
    padding-top: 30px;
  }
  .con_contact.confirm .wrap_form table tr th:after {
    top: 43px;
  }
}
.con_contact #thanks {
  display: none;
  text-align: center;
  margin-top: 20px;
}
.con_contact .align-center {
  margin-top: 15px;
}

/* -----------------------------------------------------------
	.con_faq
----------------------------------------------------------- */
.con_faq {
  background: url(../images/bg_faq.jpg) center no-repeat;
  background-size: cover;
  padding: 80px 0 100px 0;
  margin-top: -1px;
}
.con_faq .con_inner {
  max-width: 1000px;
}
.con_faq .box_intro h3, .con_faq .box_intro .txt {
  color: #fff;
}
.con_faq dl {
  margin-bottom: 30px;
  border: 2px solid #fff;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .con_faq dl {
    margin-bottom: 20px;
  }
}
.con_faq dl:last-child {
  margin-bottom: 0;
}
.con_faq dl dt {
  position: relative;
  cursor: pointer;
  background: #6180b8;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.6;
  padding: 20px 60px 20px 65px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dt {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .con_faq dl dt {
    padding: 15px 50px 15px 35px;
  }
}
.con_faq dl dt:before {
  content: "Q.";
  display: inline-block;
  position: absolute;
  left: 30px;
  top: 21px;
  color: #ffe600;
  font-size: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dt:before {
    font-size: 1.6rem;
    left: 11px;
    top: 15px;
  }
}
.con_faq dl dt:after {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/ic_accordion.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -15px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dt:after {
    width: 20px;
    height: 20px;
    right: 15px;
    margin-top: -10px;
  }
}
.con_faq dl dt.active:after {
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.con_faq dl dd {
  padding: 20px 35px 20px 65px;
  position: relative;
  font-size: 2rem;
  display: none;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd {
    font-size: 1.3rem;
    padding-left: 30px;
  }
}
.con_faq dl dd:before {
  content: "A.";
  display: inline-block;
  position: absolute;
  left: 35px;
  top: 20px;
  font-weight: bold;
  font-size: 2rem;
  color: #e55487;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd:before {
    font-size: 1.3rem;
    left: 15px;
    top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd {
    padding: 15px 20px 15px 35px;
  }
}
.con_faq dl dd .ansewr {
  margin-bottom: 0;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd .ansewr {
    margin-bottom: 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.con_faq dl dd .ansewr span {
  font-weight: normal;
}
.con_faq dl dd .txt {
  padding-left: 1em;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd .txt {
    padding-left: 1.2em;
  }
}
.con_faq dl dd .box_flow {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #e9e9e9;
  font-weight: bold;
  padding: 25px 30px;
  margin-top: 20px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd .box_flow {
    padding: 20px;
  }
}
.con_faq dl dd .box_flow ul li {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd .box_flow ul li {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.1ex;
  }
}
.con_faq dl dd .box_flow ul li:last-child {
  margin-bottom: 0;
}
.con_faq dl dd .box_flow ul li span {
  color: #e55487;
}
.con_faq dl dd .box_flow ul li:after {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  position: absolute;
  bottom: -40px;
  left: 40px;
  font-size: 2rem;
  color: #1e4a99;
}
@media only screen and (max-width: 767px) {
  .con_faq dl dd .box_flow ul li:after {
    font-size: 1.6rem;
    bottom: -28px;
    left: 28px;
  }
}
.con_faq dl dd .box_flow ul li:last-child:after {
  display: none;
}

.box_intro {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .box_intro {
    margin-bottom: 30px;
  }
}
.box_intro h3, .box_intro h2 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .box_intro h3, .box_intro h2 {
    margin-bottom: 20px;
  }
}
.box_intro .txt {
  text-align: center;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .box_intro .txt {
    font-size: 1.3rem;
  }
}
.box_intro.white h2, .box_intro.white h3 {
  color: #fff;
}
.box_intro.white .txt {
  color: #fff;
}

/* -----------------------------------------------------------
	#footer
----------------------------------------------------------- */
#footer .con_footer {
  background: url(../images/bg_footer.jpg) center no-repeat;
  background-size: cover;
  padding: 80px 0 100px 0;
}
@media only screen and (max-width: 767px) {
  #footer .con_footer {
    padding: 40px 0 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  #footer .con_footer .box_intro {
    margin-bottom: 25px;
  }
}
#footer .con_footer .btn_white a {
  width: 80%;
}
#footer #copyright {
  color: #fff;
  text-align: center;
  background: #1e4a99;
  padding: 15px 0;
  font-size: 1.2rem;
}

/* -----------------------------------------------------------
	Animations
----------------------------------------------------------- */
.slideIn-left {
  opacity: 0;
}
.slideIn-left.inview-in {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.slideIn-right {
  opacity: 0;
}
.slideIn-right.inview-in {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in {
  opacity: 0;
}
.fade-in.inview-in {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.opacity-in {
  opacity: 0;
}
.opacity-in.inview-in {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: opacityIn;
  animation-name: opacityIn;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

@-webkit-keyframes slideInLeft {
  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);
  }
}
@keyframes slideInLeft {
  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);
  }
}
@-webkit-keyframes slideInRight {
  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);
  }
}
@keyframes slideInRight {
  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);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes opacityIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacityIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in-stairs > * {
  opacity: 0;
}
.fade-in-stairs.inview-in > * {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in-stairs.inview-in > *:nth-child(2) {
  animation-delay: .2s;
}
.fade-in-stairs.inview-in > *:nth-child(3) {
  animation-delay: .4s;
}
.fade-in-stairs.inview-in > *:nth-child(4) {
  animation-delay: .6s;
}
.fade-in-stairs.inview-in > *:nth-child(5) {
  animation-delay: .8s;
}
.fade-in-stairs.inview-in > *:nth-child(6) {
  animation-delay: 1s;
}
.fade-in-stairs.inview-in > *:nth-child(7) {
  animation-delay: 1.2s;
}
.fade-in-stairs.inview-in > *:nth-child(8) {
  animation-delay: 1.4s;
}
.fade-in-stairs.inview-in > *:nth-child(9) {
  animation-delay: 1.6s;
}
.fade-in-stairs.inview-in > *:nth-child(10) {
  animation-delay: 1.8s;
}
.fade-in-stairs.inview-in > *:nth-child(11) {
  animation-delay: 2s;
}
