@charset "UTF-8";
/*!===========================
style.cssはSassから生成されていますので、
直接編集しないようご注意ください。
===========================*/
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

html {
  -webkit-text-size-adjust: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

ul, ol {
  list-style: none; }

button, input, select, textarea {
  margin: 0; }

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

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit; }

img, embed, iframe, object, audio, video {
  height: auto;
  max-width: 100%; }

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: bottom; }

iframe {
  border: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0;
  text-align: left; }

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active,
a:hover {
  outline-width: 0; }

b,
strong {
  font-weight: bold; }

.clear {
  clear: both; }

.cf:before, .cf:after {
  content: "";
  display: block; }

.cf:after {
  clear: both; }

.cf {
  zoom: 1;
  overflow: hidden; }

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; }

.table_w {
  width: 100%;
  display: table;
  table-layout: fixed; }

.table_c {
  display: table-cell;
  vertical-align: top; }

.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

.align_left {
  text-align: left !important; }

.align_right {
  text-align: right !important; }

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }

/* ===================================================================
	utility
=================================================================== */
.mt05 {
  margin-top: 5px; }

.mt10 {
  margin-top: 10px; }

.mt20 {
  margin-top: 20px; }

.mt30 {
  margin-top: 30px; }

.mt40 {
  margin-top: 40px; }

.mt50 {
  margin-top: 50px; }

.mt60 {
  margin-top: 60px; }

.txt_c {
  text-align: center; }

/* ===================================================================
	form
=================================================================== */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0; }

legend {
  padding: 0;
  border: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

  .sp {
    display: block !important; } }
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0; }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1; }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0; } }
.form_section .form_item {
  margin-bottom: 15px; }
  .form_section .form_item label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700; }
.form_section table {
  width: 100%; }
  .form_section table th, .form_section table td {
    vertical-align: top;
    font-weight: 400;
    padding-bottom: 10px; }
  .form_section table th {
    text-align: right;
    position: relative;
    padding-right: 20px;
    padding-top: 9px; }
.form_section .require,
.form_section .option {
  display: inline-block;
  position: relative;
  padding-right: 45px; }
  .form_section .require::before,
  .form_section .option::before {
    content: "必須";
    position: absolute;
    right: 0;
    top: 2px;
    display: inline-block;
    background: #fc0a0a;
    color: #fff;
    font-size: 11px;
    font-size: 1.1rem;
    padding: 2px 7px 0;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    font-weight: 400; }
.form_section .option::before {
  content: "任意";
  background: #626363; }
.form_section [type=check],
.form_section [type=radio],
.form_section [type=submit] {
  cursor: pointer; }
.form_section [type=check] + label,
.form_section [type=radio] + label {
  display: inline-block;
  cursor: pointer; }
.form_section [type=tel],
.form_section [type=email],
.form_section [type=text],
.form_section [type=password],
.form_section [type=number],
.form_section textarea,
.form_section select {
  padding: 0.5em;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  width: 100%;
  background: #fff; }
.form_section textarea {
  height: 200px; }
.form_section input#zip1 {
  display: inline-block;
  width: 80px; }
.form_section input#zip2 {
  display: inline-block;
  width: 150px;
  margin-bottom: 7px; }
.form_section [type=submit] {
  display: block;
  border: none;
  background: #ff8105;
  color: #fff;
  width: 400px;
  padding: 20px 0 18px;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  margin: 10px auto 0;
  letter-spacing: 0.02em;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s; }
  @media only screen and (min-width: 769px) {
    .form_section [type=submit]:hover {
      filter: alpha(opacity=75);
      -moz-opacity: 0.75;
      opacity: 0.75; } }
  @media only screen and (max-width: 768px) {
    .form_section [type=submit] {
      width: 100%;
      padding: 20px 10px; } }
.form_section .checkbox input,
.form_section .radio input {
  display: none; }
.form_section .checkbox,
.form_section .radio {
  margin-top: 8px; }
  .form_section .checkbox li,
  .form_section .radio li {
    margin-top: 5px; }
    .form_section .checkbox li:first-child,
    .form_section .radio li:first-child {
      margin-top: 0; }
  .form_section .checkbox .parts,
  .form_section .radio .parts {
    position: relative;
    display: block;
    cursor: pointer;
    padding-left: 25px; }
    .form_section .checkbox .parts::before,
    .form_section .radio .parts::before {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      border: 1px solid #ccc;
      background: #fff;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
.form_section .checkbox .parts::before {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px; }
.form_section .checkbox input:checked + .parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 7px;
  height: 14px;
  margin-top: -11px;
  transform: rotate(40deg);
  border-bottom: 3px solid #0995ef;
  border-right: 3px solid #0995ef; }
.form_section .ermsg {
  font-size: 11px;
  color: #B50000; }
.form_section .radio .ermsg, .form_section .checkbox .ermsg {
  display: none; }
.form_section .radio li:first-child .ermsg, .form_section .checkbox li:first-child .ermsg {
  display: block; }
.form_section ::-webkit-input-placeholder {
  color: #b9b9b9; }
.form_section ::-moz-placeholder {
  color: #b9b9b9; }
.form_section :-moz-placeholder {
  color: #b9b9b9; }
.form_section :-ms-input-placeholder {
  color: #b9b9b9; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 768px) {
    html {
      font-size: 50%; } }

body {
  background: #fff;
  font-size: 1.6em;
  color: #252525;
  font-family: 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6; }

a {
  color: #252525; }

@media only screen and (min-width: 769px) {
  a:hover {
    color: #252525;
    text-decoration: none; }

  a, a img {
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s; }

  a img:hover {
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    opacity: 0.75; } }
.page_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-transition: 0s;
  -webkit-transition: 0s;
  -o-transition: 0s;
  -ms-transition: 0s;
  transition: 0s;
  border: solid 2px #0995ef; }
  .page_top:hover {
    background: #0045a2;
    color: #fff; }
  .page_top::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 0px;
    border-top: solid 2px #0995ef;
    border-right: solid 2px #0995ef;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -4px;
    margin-right: -6px; }
  @media only screen and (max-width: 768px) {
    .page_top {
      bottom: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
      font-size: 22px; }
      .page_top::after {
        width: 10px;
        height: 10px;
        margin-top: -3px;
        margin-right: -5px; } }

.index_header {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  padding-top: 20px; }
  .index_header .inner {
    width: 1000px;
    margin: 0 auto;
    position: relative; }
    @media only screen and (max-width: 768px) {
      .index_header .inner {
        width: 100%; } }
  .index_header .logo {
    width: 264px; }
  .index_header .header_tel {
    position: absolute;
    top: 0;
    right: 0; }

.main_ttl {
  text-align: center; }
  .main_ttl .logo {
    width: 176px;
    margin: auto; }
  .main_ttl h2 {
    font-size: 30px;
    font-size: 3rem;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 17px; }
    @media only screen and (max-width: 768px) {
      .main_ttl h2 {
        font-size: 7vw; } }
    .main_ttl h2::before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 55px;
      height: 7px;
      background: #0045a2; }

.fv {
  background-image: url("img/fv_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  .fv .inner {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 540px; }
    @media only screen and (max-width: 768px) {
      .fv .inner {
        width: 100%; } }
  .fv .fv_image {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 28px; }

.cta_section {
  background: #0045a2; }
  .cta_section .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 10px 0; }
    @media only screen and (max-width: 768px) {
      .cta_section .inner {
        width: 100%; } }
  .cta_section .heading {
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: 25px;
    font-size: 2.5rem; }
  .cta_section .wrap {
    margin: 4px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    .cta_section .wrap .btns {
      width: 515px;
      -webkit-display: flex;
      -moz-display: flex;
      -ms-display: flex;
      -o-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between; }
      .cta_section .wrap .btns .btn {
        width: 250px; }
        .cta_section .wrap .btns .btn a {
          display: block;
          text-decoration: none;
          text-align: center;
          border-radius: 7px;
          -moz-border-radius: 7px;
          -webkit-border-radius: 7px;
          -o-border-radius: 7px;
          -ms-border-radius: 7px;
          padding: 14px 0;
          color: #fff;
          font-weight: 700;
          -webkit-box-shadow: 4px 4px 7px rgba(37, 37, 37, 0.4);
          -moz-box-shadow: 4px 4px 7px rgba(37, 37, 37, 0.4);
          box-shadow: 4px 4px 7px rgba(37, 37, 37, 0.4); }
          @media only screen and (min-width: 769px) {
            .cta_section .wrap .btns .btn a:hover {
              filter: alpha(opacity=75);
              -moz-opacity: 0.75;
              opacity: 0.75; } }
          .cta_section .wrap .btns .btn a span {
            display: inline-block;
            position: relative;
            padding-left: 50px;
            font-size: 22px;
            font-size: 2.2rem; }
            .cta_section .wrap .btns .btn a span::before {
              content: "";
              position: absolute;
              width: 50px;
              height: 50px;
              background-repeat: no-repeat;
              background-position: center top;
              background-size: 100% auto;
              left: -5px;
              top: -7px;
              pointer-events: none;
              z-index: 10; }
        .cta_section .wrap .btns .btn.mail a {
          background: #ff8105; }
          .cta_section .wrap .btns .btn.mail a span::before {
            background-image: url("img/cta_ico_mail.png"); }
        .cta_section .wrap .btns .btn.line a {
          background: #06c755; }
          .cta_section .wrap .btns .btn.line a span::before {
            background-image: url("img/cta_ico_line.png"); }
    .cta_section .wrap .tel {
      width: 282px;
      margin-left: 15px; }

.section01 .inner {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 25px 0 50px; }
  @media only screen and (max-width: 768px) {
    .section01 .inner {
      width: 100%; } }
.section01 .image {
  position: relative;
  z-index: 10; }
.section01 .content {
  width: 700px;
  margin: auto;
  z-index: 1;
  position: relative;
  top: -40px;
  background: #fffee8;
  border: 3px solid #fff669;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  padding: 40px 0 30px;
  text-align: center; }
  .section01 .content ul {
    margin-top: 16px;
    text-align: left;
    display: inline-block;
    font-size: 22px;
    font-size: 2.2rem; }
    .section01 .content ul li {
      position: relative;
      padding-left: 35px; }
      .section01 .content ul li::before {
        content: "";
        position: absolute;
        width: 25px;
        height: 100%;
        background-image: url("img/section01_ico.png");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% auto;
        left: 0;
        top: 5px;
        pointer-events: none;
        z-index: 10; }
      .section01 .content ul li + li {
        margin-top: 3px; }
      .section01 .content ul li span {
        color: #fc0a0a;
        font-weight: 700; }

.section02 {
  background: #0995ef;
  background: #0995ef;
  background: -webkit-linear-gradient(right, #0995ef 0%, #3dc6ff 100%);
  background: linear-gradient(to right, #0995ef 0%, #3dc6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0995ef', endColorstr=' #3dc6ff', GradientType=1); }
  .section02 .inner {
    padding: 40px 0 55px; }
  .section02 h2 {
    width: 282px;
    margin: auto;
    text-align: center;
    padding: 12px 0 7px;
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border: 2px solid #fff;
    font-size: 30px;
    font-size: 3rem;
    position: relative; }
    .section02 h2::before, .section02 h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      border-style: solid;
      translate: -50% 100%; }
    .section02 h2::before {
      border-width: 13px 11.5px 0 11.5px;
      border-color: #fff transparent transparent; }
    .section02 h2::after {
      border-width: 10px 8.8px 0 8.8px;
      border-color: #28aff7 transparent transparent; }
  .section02 .achievement_slides {
    margin-top: 30px; }
    .section02 .achievement_slides .achievement_slide {
      width: 335px;
      margin: 0 17px;
      padding-top: 93px;
      padding-bottom: 20px; }
  .section02 .slide_inner {
    background: #fff;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -o-border-radius: 40px;
    -ms-border-radius: 40px;
    padding: 280px 25px 35px;
    position: relative;
    -webkit-box-shadow: 8px 0 20px rgba(37, 37, 37, 0.2);
    -moz-box-shadow: 8px 0 20px rgba(37, 37, 37, 0.2);
    box-shadow: 8px 0 20px rgba(37, 37, 37, 0.2); }
  .section02 .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -93px;
    width: 319px; }
  .section02 .info {
    font-size: 14px;
    font-size: 1.4rem; }
    .section02 .info .row {
      display: flex;
      align-items: flex-start; }
      .section02 .info .row .label {
        color: #0045a2;
        font-weight: 700; }
      .section02 .info .row .value {
        flex: 1;
        padding-left: 1em; }
      .section02 .info .row + .row {
        margin-top: 4px; }
  .section02 .btn {
    margin-top: 10px; }
    .section02 .btn .btn_heading {
      text-align: center;
      font-weight: 700;
      margin-bottom: 6px;
      letter-spacing: 0.08em;
      color: #fff; }
    .section02 .btn a {
      display: block;
      width: 300px;
      margin: auto;
      text-decoration: none;
      position: relative;
      background: #fff;
      font-size: 13px;
      font-size: 1.3rem;
      border-radius: 3px;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      -o-border-radius: 3px;
      -ms-border-radius: 3px;
      font-weight: 700;
      padding: 23px 0;
      padding-right: 10px;
      text-align: center;
      -webkit-box-shadow: 0 5px 9px rgba(37, 37, 37, 0.17);
      -moz-box-shadow: 0 5px 9px rgba(37, 37, 37, 0.17);
      box-shadow: 0 5px 9px rgba(37, 37, 37, 0.17); }
      .section02 .btn a::before {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -10px;
        border-style: solid;
        border-width: 10px 0 10px 12px;
        border-color: transparent transparent transparent #0995ef; }
      .section02 .btn a span {
        display: inline-block;
        position: relative;
        padding-left: 40px; }
        .section02 .btn a span::before {
          content: "";
          position: absolute;
          width: 40px;
          height: 40px;
          background-image: url("img/ico_ig.png");
          background-repeat: no-repeat;
          background-position: center top;
          background-size: 100% auto;
          left: -15px;
          top: -9px;
          pointer-events: none;
          z-index: 10; }
      @media only screen and (min-width: 769px) {
        .section02 .btn a:hover {
          filter: alpha(opacity=75);
          -moz-opacity: 0.75;
          opacity: 0.75; } }

.section03 h2 {
  width: 282px;
  margin: auto;
  text-align: center;
  padding: 12px 0 7px;
  color: #0045a2;
  font-weight: 700;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border: 2px solid #0045a2;
  font-size: 30px;
  font-size: 3rem;
  position: relative; }
  .section03 h2::before, .section03 h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    translate: -50% 100%; }
  .section03 h2::before {
    border-width: 13px 11.5px 0 11.5px;
    border-color: #0045a2 transparent transparent; }
  .section03 h2::after {
    border-width: 10px 8.8px 0 8.8px;
    border-color: #fff transparent transparent; }
.section03 .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 45px 0 60px; }
  @media only screen and (max-width: 768px) {
    .section03 .inner {
      width: 100%; } }
.section03 .items {
  margin-top: 40px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between; }
  .section03 .items .item {
    width: 480px;
    border: 3px solid #bee5fe;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    padding: 35px;
    margin-top: 40px; }
    .section03 .items .item:nth-child(1), .section03 .items .item:nth-child(2) {
      margin-top: 0; }
.section03 .info {
  position: relative; }
  .section03 .info .name {
    font-size: 13px;
    font-size: 1.3rem; }
  .section03 .info .star {
    margin-top: 10px; }
  .section03 .info .image {
    position: absolute;
    right: 0;
    bottom: -7px; }
.section03 p {
  margin-top: 20px;
  line-height: 1.7; }

.section04 {
  background: #e6f5ff; }
  .section04 .main_ttl {
    margin-bottom: 30px; }
  .section04 .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 80px 0 75px; }
    @media only screen and (max-width: 768px) {
      .section04 .inner {
        width: 100%; } }
  .section04 .content {
    background: #fff;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    padding: 40px 50px;
    margin-top: 20px; }
    .section04 .content h3 {
      text-align: center;
      font-weight: 700;
      font-size: 28px;
      font-size: 2.8rem;
      color: #0045a2; }
    .section04 .content .lead {
      margin-top: 5px;
      text-align: center;
      font-size: 18px;
      font-size: 1.8rem; }
  .section04 .air {
    width: 750px;
    margin: auto; }
    .section04 .air .items {
      margin-top: 20px;
      -webkit-display: flex;
      -moz-display: flex;
      -ms-display: flex;
      -o-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center; }
      .section04 .air .items .item {
        width: 230px;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border: 2px solid #e6e6e6;
        text-align: center;
        padding: 20px 0;
        margin-top: 15px;
        margin-left: 15px; }
        .section04 .air .items .item:nth-child(1), .section04 .air .items .item:nth-child(2), .section04 .air .items .item:nth-child(3) {
          margin-top: 0; }
        .section04 .air .items .item:nth-child(3n+1) {
          margin-left: 0; }
    .section04 .air .ttl {
      margin-top: 10px;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 700; }
    .section04 .air .price {
      color: #fc0a0a;
      font-weight: 700;
      font-size: 25px;
      font-size: 2.5rem;
      line-height: 1;
      margin-top: 5px; }
      .section04 .air .price span {
        font-size: 130%; }
    .section04 .air .txt {
      margin-top: 25px;
      background: #fffee8;
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      border: 2px solid #fc0a0a;
      padding: 15px;
      text-align: center;
      font-weight: 700;
      font-size: 20px;
      font-size: 2rem; }
      .section04 .air .txt span {
        font-size: 130%;
        color: #fc0a0a; }
  .section04 .option {
    margin-top: 30px; }
    .section04 .option .heading {
      text-align: center; }
      .section04 .option .heading span {
        display: inline-block;
        font-weight: 700;
        font-size: 23px;
        font-size: 2.3rem;
        background: #e6f5ff;
        border-radius: 100px;
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        -o-border-radius: 100px;
        -ms-border-radius: 100px;
        padding: 10px 70px 7px;
        letter-spacing: 0.07em; }
    .section04 .option .items {
      margin-top: 20px;
      -webkit-display: flex;
      -moz-display: flex;
      -ms-display: flex;
      -o-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between; }
      .section04 .option .items .item {
        width: 280px;
        text-align: center; }
        .section04 .option .items .item .ttl {
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 700;
          padding: 23px 0 6px;
          line-height: 1; }
          .section04 .option .items .item .ttl span {
            font-size: 70%;
            font-weight: 400; }
        .section04 .option .items .item:nth-child(2) .ttl {
          padding-top: 12px;
          padding-bottom: 0; }
        .section04 .option .items .item .price {
          font-size: 22px;
          font-size: 2.2rem;
          font-weight: 700; }
          .section04 .option .items .item .price span {
            font-size: 140%; }
        .section04 .option .items .item p {
          margin-top: 5px;
          text-align: left;
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.8; }
  .section04 .campaign {
    margin-top: 10px;
    text-align: center; }
  .section04 .house .items {
    margin-top: 40px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center; }
    .section04 .house .items .item {
      width: 210px;
      border-radius: 10px;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      -o-border-radius: 10px;
      -ms-border-radius: 10px;
      border: 2px solid #e6e6e6;
      text-align: center;
      padding: 20px 0;
      margin-top: 16px;
      margin-left: 19px; }
      .section04 .house .items .item:nth-child(1), .section04 .house .items .item:nth-child(2), .section04 .house .items .item:nth-child(3), .section04 .house .items .item:nth-child(4) {
        margin-top: 0; }
      .section04 .house .items .item:nth-child(4n+1) {
        margin-left: 0; }
      .section04 .house .items .item .ttl {
        margin-top: 10px;
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: 700; }
        .section04 .house .items .item .ttl.sentaku {
          margin-top: 0;
          line-height: 1.1; }
          .section04 .house .items .item .ttl.sentaku span {
            font-size: 80%; }
      .section04 .house .items .item .price {
        color: #fc0a0a;
        font-weight: 700;
        font-size: 25px;
        font-size: 2.5rem;
        line-height: 1;
        margin-top: 5px; }
        .section04 .house .items .item .price span {
          font-size: 130%; }
      .section04 .house .items .item.noimage .price {
        color: #000;
        line-height: 1.2; }
  .section04 .house .campaign {
    margin-top: 30px; }

.section05 .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 50px; }
  @media only screen and (max-width: 768px) {
    .section05 .inner {
      width: 100%; } }
.section05 .content {
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  overflow: hidden;
  border: 2px solid #fc0a0a; }
.section05 h2 {
  text-align: center;
  font-weight: 700;
  background: #fc0a0a; }
  .section05 h2 span {
    display: inline-block;
    position: relative;
    font-size: 25px;
    font-size: 2.5rem;
    padding: 20px 70px 15px;
    color: #fff;
    letter-spacing: 0.05em; }
    .section05 h2 span::before, .section05 h2 span::after {
      content: "";
      position: absolute;
      width: 48px;
      height: 100%;
      background-image: url("img/ico_attention.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 100% auto;
      top: 0;
      pointer-events: none;
      z-index: 10; }
    .section05 h2 span::before {
      left: 0; }
    .section05 h2 span::after {
      right: 0; }
.section05 .txt {
  padding: 25px 40px;
  font-size: 15px;
  font-size: 1.5rem; }
  .section05 .txt ul li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8; }
    .section05 .txt ul li::before {
      content: "●";
      position: absolute;
      top: 0;
      left: 0; }

.section06 .inner {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 50px 55px; }
  @media only screen and (max-width: 768px) {
    .section06 .inner {
      width: 100%; } }
.section06 .wrap {
  position: relative;
  margin-top: 60px; }
  .section06 .wrap::before {
    content: "";
    position: absolute;
    left: 150px;
    top: 0;
    width: 251px;
    height: 100%;
    border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    pointer-events: none;
    border: 3px solid #fc0a0a;
    z-index: 10; }
.section06 table {
  width: 100%; }
  .section06 table th, .section06 table td {
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem; }
  .section06 table thead tr th {
    width: 250px;
    vertical-align: bottom; }
    .section06 table thead tr th span {
      display: block;
      border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      color: #fff;
      font-size: 22px;
      font-size: 2.2rem;
      padding: 10px 0;
      background: #939393;
      border: 1px solid #c0c0c0;
      border-bottom: none; }
  .section06 table thead tr th:nth-child(1) {
    width: 150px; }
  .section06 table thead tr th:nth-child(2) span {
    background: #e6f5ff;
    padding: 15px 0;
    border: none; }
  .section06 table tbody tr th, .section06 table tbody tr td {
    padding: 15px 0;
    border: 1px solid #c0c0c0; }
  .section06 table tbody tr th {
    width: 150px;
    background: #0995ef;
    color: #fff; }
  .section06 table tbody tr .price span,
  .section06 table tbody tr p span {
    font-size: 140%; }
  .section06 table tbody tr td:nth-of-type(1) {
    background: #fffee8;
    font-weight: 700; }
    .section06 table tbody tr td:nth-of-type(1) .price {
      font-size: 22px;
      font-size: 2.2rem;
      color: #fc0a0a; }

.section07 {
  background: #0995ef;
  background: -webkit-linear-gradient(right, #0995ef 0%, #3dc6ff 100%);
  background: linear-gradient(to right, #0995ef 0%, #3dc6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0995ef', endColorstr=' #3dc6ff', GradientType=1); }
  .section07 .main_ttl {
    color: #fff; }
    .section07 .main_ttl h2::before {
      background: #fff; }
  .section07 .inner {
    padding: 50px 0; }
  .section07 .heading {
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
    font-size: 28px;
    font-size: 2.8rem;
    color: #fff; }
  .section07 .wrap {
    margin-top: 30px;
    position: relative;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    overflow: visible; }
    .section07 .wrap .image {
      position: absolute;
      left: 0;
      top: -70px;
      height: 450px;
      z-index: 2;
      -webkit-box-shadow: 0 17px 18px rgba(37, 37, 37, 0.15);
      -moz-box-shadow: 0 17px 18px rgba(37, 37, 37, 0.15);
      box-shadow: 0 17px 18px rgba(37, 37, 37, 0.15); }
      @media screen and (min-width: 1100px) {
        .section07 .wrap .image {
          width: 28%; } }
      @media screen and (max-width: 1099px) {
        .section07 .wrap .image {
          width: 22%; } }
      .section07 .wrap .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .section07 .wrap .content {
      width: 900px;
      background: #fff;
      position: relative;
      z-index: 1;
      padding: 40px 50px;
      padding-left: 230px; }
      .section07 .wrap .content .lead {
        font-weight: 700;
        color: #0045a2;
        font-size: 18px;
        font-size: 1.8rem; }
      .section07 .wrap .content .check {
        margin-top: 20px;
        padding: 20px 0 20px 20px;
        background: #fffee8;
        border: 3px solid #fff669;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        width: 530px; }
        .section07 .wrap .content .check ul li {
          position: relative;
          padding-left: 35px;
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 700; }
          .section07 .wrap .content .check ul li::before {
            content: "";
            position: absolute;
            width: 25px;
            height: 100%;
            background-image: url("img/section01_ico.png");
            background-repeat: no-repeat;
            background-position: center top;
            background-size: 100% auto;
            left: 0;
            top: 1px;
            pointer-events: none;
            z-index: 10; }
          .section07 .wrap .content .check ul li + li {
            margin-top: 3px; }
          .section07 .wrap .content .check ul li span {
            font-size: 80%;
            font-weight: 700; }
      .section07 .wrap .content .txt {
        margin-top: 20px;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.8; }
        .section07 .wrap .content .txt span {
          font-weight: 700;
          color: #fc0a0a;
          font-size: 140%; }

.section08 .inner {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0; }
  @media only screen and (max-width: 768px) {
    .section08 .inner {
      width: 100%; } }
.section08 .image {
  margin-top: 45px; }

.section09 .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0 0; }
  @media only screen and (max-width: 768px) {
    .section09 .inner {
      width: 100%; } }
.section09 .items {
  margin-top: 40px; }
  .section09 .items .item {
    background: #fff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -webkit-box-shadow: 0 0 18px rgba(37, 37, 37, 0.13);
    -moz-box-shadow: 0 0 18px rgba(37, 37, 37, 0.13);
    box-shadow: 0 0 18px rgba(37, 37, 37, 0.13); }
    .section09 .items .item + .item {
      margin-top: 15px; }
.section09 .question {
  cursor: pointer;
  position: relative;
  padding: 25px 30px 22px 85px;
  color: #0045a2;
  font-weight: 700; }
  .section09 .question::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("img/ico_question.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    left: 30px;
    top: 16px;
    pointer-events: none;
    z-index: 10; }
  .section09 .question::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    width: 20px;
    height: 20px;
    background-image: url("img/ico_trigger.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 10; }
  .section09 .question.active::after {
    background-image: url("img/ico_trigger_active.png"); }
.section09 .answer {
  padding: 26px 80px 20px 85px;
  position: relative; }
  .section09 .answer::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: calc(100% - 90px);
    border-top: 3px dotted #c4c4c4; }
  .section09 .answer::before {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    background-image: url("img/ico_answer.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    left: 30px;
    top: 20px;
    pointer-events: none;
    z-index: 10; }

.section10 .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 45px 0 55px; }
  @media only screen and (max-width: 768px) {
    .section10 .inner {
      width: 100%; } }
.section10 .wrap {
  margin-top: 30px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .section10 .wrap .image {
    margin-left: 20px; }
  .section10 .wrap .txt dl {
    margin-top: 10px; }
    .section10 .wrap .txt dl dt {
      font-weight: 700;
      color: #0045a2; }
    .section10 .wrap .txt dl:first-child dd {
      font-size: 120%;
      font-weight: 700; }

.section11 {
  background: #e6f5ff; }
  .section11 .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 55px 50px 100px; }
    @media only screen and (max-width: 768px) {
      .section11 .inner {
        width: 100%; } }
  .section11 .content {
    background: #fff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(207, 235, 252, 0.5);
    -moz-box-shadow: 0 0 10px rgba(207, 235, 252, 0.5);
    box-shadow: 0 0 10px rgba(207, 235, 252, 0.5);
    margin-top: 35px;
    padding: 40px 130px; }

.fixed_cta {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 50;
  background: #0045a2; }
  .fixed_cta .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 7px 0 14px; }
    @media only screen and (max-width: 768px) {
      .fixed_cta .inner {
        width: 100%; } }
  .fixed_cta .txt {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    font-size: 2.4rem;
    color: #fff; }
  .fixed_cta .wrap {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    .fixed_cta .wrap .btn_wrap {
      width: 515px; }
      .fixed_cta .wrap .btn_wrap .flex_btn {
        -webkit-display: flex;
        -moz-display: flex;
        -ms-display: flex;
        -o-display: flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        -o-justify-content: space-between;
        justify-content: space-between; }
        .fixed_cta .wrap .btn_wrap .flex_btn .btn {
          width: 250px; }
          .fixed_cta .wrap .btn_wrap .flex_btn .btn a {
            font-size: 22px;
            font-size: 2.2rem;
            padding: 0.6em 0;
            display: block;
            text-decoration: none;
            text-align: center;
            color: #fff;
            border-radius: 7px;
            -moz-border-radius: 7px;
            -webkit-border-radius: 7px;
            -o-border-radius: 7px;
            -ms-border-radius: 7px;
            font-weight: 700;
            -webkit-box-shadow: 0 4px 7px rgba(37, 37, 37, 0.4);
            -moz-box-shadow: 0 4px 7px rgba(37, 37, 37, 0.4);
            box-shadow: 0 4px 7px rgba(37, 37, 37, 0.4); }
            .fixed_cta .wrap .btn_wrap .flex_btn .btn a span {
              display: inline-block;
              position: relative;
              padding-left: 55px; }
              .fixed_cta .wrap .btn_wrap .flex_btn .btn a span::before {
                content: "";
                position: absolute;
                width: 50px;
                height: 45px;
                background-repeat: no-repeat;
                background-position: center top;
                background-size: 100% auto;
                left: 0;
                top: -5px;
                pointer-events: none;
                z-index: 10; }
          .fixed_cta .wrap .btn_wrap .flex_btn .btn.mail a {
            background: #ff8105; }
            .fixed_cta .wrap .btn_wrap .flex_btn .btn.mail a span::before {
              background-image: url("img/fixed_cta_mail.png"); }
          .fixed_cta .wrap .btn_wrap .flex_btn .btn.line a {
            background: #06c755; }
            .fixed_cta .wrap .btn_wrap .flex_btn .btn.line a span::before {
              background-image: url("img/fixed_cta_line.png"); }
    .fixed_cta .wrap .tel {
      width: 282px;
      margin-left: 20px; }

.footer {
  background: #0045a2; }
  .footer .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 16px 0;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .footer .inner {
        width: 100%; } }
  .footer .logo {
    width: 65px;
    margin: auto; }
  .footer .copyright {
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
    font-size: 1.3rem; }

.page_wrapper {
  background: #e6f5ff; }
  .page_wrapper .container {
    width: 1000px;
    margin: 0 auto;
    padding: 130px 50px 100px; }
    @media only screen and (max-width: 768px) {
      .page_wrapper .container {
        width: 100%; } }
    @media only screen and (max-width: 768px) {
      .page_wrapper .container {
        padding: 40px 15px 100px; } }

.thanks .txt {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem; }
.thanks #formWrap {
  width: 700px;
  margin: auto;
  margin-top: 40px; }
  @media only screen and (max-width: 768px) {
    .thanks #formWrap {
      width: 100%; } }
  .thanks #formWrap table {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff; }
    .thanks #formWrap table th, .thanks #formWrap table td {
      vertical-align: middle;
      padding: 1em;
      border: 1px solid #ddd; }
    .thanks #formWrap table th {
      background: #0045a2;
      color: #fff; }
  .thanks #formWrap input[type=button] {
    margin-top: 30px; }
