@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

td {
  text-align: left;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select, textarea, img {
  vertical-align: middle;
}

ul, dl, ol {
  list-style: none;
}

em {
  font-style: normal;
}

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

/* ========================================
    ■ 必須設定
======================================== */
/* 文字色 */
.font_blue {
  color: #1447a7;
}
.font_orange {
  color: #fb7a29;
}
.font_color03 {
  color: #F0DDBD;
}

/* 関数
----------------------------- */
.kenten, .kenten_half {
  /* 圏点 */
  padding: 0.35em 0;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  background-position: top left;
  background-image: radial-gradient(0.4rem 0.4rem at center center, #222 50%, transparent 50%);
  font-feature-settings: normal;
}

.kenten_half {
  background-size: 0.65em 0.5em;
}

.is_sp {
  display: block;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .is_sp {
    display: none;
  }
}

.is_pc {
  display: none;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .is_pc {
    display: block;
  }
}

img.is_sp,
br.is_sp {
  display: inline-block;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  img.is_sp,
  br.is_sp {
    display: none;
  }
}

img.is_pc,
br.is_pc {
  display: none;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  img.is_pc,
  br.is_pc {
    display: inline-block;
  }
}

/* ========================================
    ■ General
======================================== */
html {
  font-size: 3.90625vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  html {
    font-size: 1.4973958333vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.8;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #0033cc;
  text-decoration: underline;
  transition: 0.2s ease;
}
a::before, a::after {
  transition: 0.2s ease;
}
a:hover {
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover::before, a:hover::after {
  transition: 0.2s ease;
}

img,
video,
object {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

section {
  position: relative;
}

mark {
  background: none;
  color: inherit;
  font-weight: normal;
  font-style: normal;
}

/* utility class
----------------------------- */
.wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hover:hover {
  transition: 0.2s ease;
}
.hover:hover:hover {
  transform: scale(0.98, 0.98);
  transition: 0.2s ease;
}

.scrollbar::-webkit-scrollbar {
  background: #ccc;
  width: 10px;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #aaa;
}

table.tbl_block {
  display: block;
  text-align: left;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  table.tbl_block {
    display: table;
  }
}
table.tbl_block tbody {
  display: block;
  text-align: left;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  table.tbl_block tbody {
    display: table-row-group;
  }
}
table.tbl_block tr {
  display: block;
  text-align: left;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  table.tbl_block tr {
    display: table-row;
  }
}
table.tbl_block th, table.tbl_block td {
  display: block;
  text-align: left;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  table.tbl_block th, table.tbl_block td {
    display: table-cell;
  }
}

#sec04::before, .sec05_slide_img::before {
  /* before・after設定 */
  content: '';
  display: block;
}

/* マーカー */
.marker_yellow {
  background: linear-gradient(0deg, #ffda13 20%, rgba(255, 255, 255, 0) 20%);
}

/* ・リスト */
.list_dot > li {
  position: relative;
  padding-left: 1em;
}
.list_dot > li::before {
  content: '・';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

/* ※リスト */
.list_kome > li {
  position: relative;
  padding-left: 1em;
}
.list_kome > li::before {
  content: '※';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

/* ========================================
    ■ ページトップボタン
======================================== */
#page_top {
  position: fixed;
  right: 20px;
  bottom: -100px;
  transition: 0.2s ease;
}
#page_top.show {
  bottom: 150px;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #page_top.show {
    bottom: 20px;
  }
}
#page_top a {
  display: block;
  width: 12vw;
  height: 12vw;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  /* メディアクエリ用 */
}
#page_top a:hover {
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  #page_top a {
    width: 44px;
    height: 44px;
  }
}
#page_top .material-icons {
  line-height: 12vw;
  font-size: 9vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #page_top .material-icons {
    line-height: 44px;
    font-size: 20px;
  }
}

/* ========================================
    ■ header
======================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 1.0416666667vw 1.6927083333vw rgba(0, 0, 0, 0.33);
  padding: 1.95313vw 5% 1.95313vw 2.5%;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  header {
    box-shadow: 0 0.5208333333vw 0.8463541667vw rgba(0, 0, 0, 0.33);
    padding: 0.78125vw 5%;
  }
}

.header_logo {
  width: 30vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .header_logo {
    width: 35vw;
  }
}
.header_logo > img {
  vertical-align: middle;
}

.header_sub {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_sub_point {
  width: 13.0208333333vw;
  margin-right: 1.3020833333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .header_sub_point {
    width: 8.4635416667vw;
    margin-right: 1.953125vw;
  }
}

.header_sub_tel {
  width: 45.3125vw;
  /* メディアクエリ用 */
}
.header_sub_tel-wrapper { position: relative; }
.header_sub_tel-wrapper span.phone-number {
position: absolute;
font-size: 5.5vw;
width: 47vw;
bottom: -2.5vw;
left: 3vw;
text-align: left;
font-weight: 900;
color: #004774;
font-family: "Arial",sans-serif;
transform: scale(0.9, 1);
}


@media screen and (min-width: 769px) {
  .header_sub_tel {
    width: 25.2604166667vw;
  }
  .header_sub_tel-wrapper span.phone-number {
    position: absolute;
    font-size: 3.25vw;
    width: 28vw;
    bottom: -1.5vw;
    left: 1vw;
    text-align: left;
    font-weight: 900;
    color: #004774;
    font-family: "Arial",sans-serif;
    transform: scale(0.9, 1);
  }
}

/* ========================================
    ■ keyv
======================================== */
#keyv {
  background: url(../images/keyv_bg01.png) no-repeat right bottom;
  background-size: cover;
  padding: 0 0 2.6041666667vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #keyv {
    background: url(../images/keyv_bg01_pc.png) no-repeat right bottom;
    background-size: cover;
    padding: 0 0 6.5104166667vw;
  }
}

.keyv_head {
  background: #004774;
  padding: 1.3020833333vw 0;
  color: #fff;
  font-size: 3.2552083333vw;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .keyv_head {
    padding: 0.6510416667vw 0;
    font-size: 1.6276041667vw;
  }
}
.keyv_head strong {
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .keyv_head strong {
    margin-right: 1em;
  }
}
.keyv_head > img {
  width: 33.8541666667vw;
  margin: 0 0 0 0.5em;
  vertical-align: middle;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .keyv_head > img {
    width: 16.9270833333vw;
  }
}

.keyv_tit {
  width: 61.1979166667vw;
  margin: 3.2552083333vw 5% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .keyv_tit {
    width: 38.671875vw;
    margin: 2.6041666667vw 0 0 7.8125vw;
  }
}

.keyv_txt {
  display: block;
  margin: 1.3020833333vw 5% 0;
  font-size: 2.6041666667vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .keyv_txt {
    margin: 0.6510416667vw 0 0 7.8125vw;
    font-size: 1.6276041667vw;
  }
}

.keyv_point {
  width: 93.75vw;
  margin: 1.953125vw auto 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .keyv_point {
    position: absolute;
    left: 45.5729166667vw;
    top: 30.5989583333vw;
    width: 46.875vw;
    margin: 0;
  }
}

/* ========================================
    ■ cta_fixed
======================================== */
.cta_fixed {
  position: fixed;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #1447a7;
  padding: 3.2552083333vw 0 0;
}

.cta_fixed_btn {
  display: block;
}
.cta_fixed_btn .cta-image-wrapper { position: relative; }
.cta_fixed_btn .cta-image-wrapper span.phone-number {
position: absolute;
font-size: 7vw;
width: 59vw;
bottom: 7.5vw;
left: 36vw;
text-align: left;
font-weight: 900;
color: #ffffff;
-webkit-text-stroke: 0.4vw #089c1d;
text-stroke: 0.4vw #089c1d;
font-family: "Arial",sans-serif;
transform: scale(0.8, 1);
}

/* ========================================
    ■ sec01
======================================== */
#sec01 {
  background: url(../images/sec01_pattern01.png);
  padding: 5.2083333333vw 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec01 {
    padding: 2.2786458333vw 0 3.2552083333vw;
  }
}

.sec01_area {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: dotted 3px #004069;
  margin: 6.5104166667vw 5% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec01_area {
    border-width: 5px;
    margin: 3.2552083333vw 14.9739583333vw 0;
  }
}
.sec01_area dt {
  position: absolute;
  left: -3px;
  top: -4.5572916667vw;
  background: #004069;
  width: calc(100% + 6px);
  padding: 1.953125vw 0;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec01_area dt {
    left: -5px;
    top: -1.7578125vw;
    width: calc(100% + 10px);
    padding: 0.9765625vw 0;
  }
}
.sec01_area dt img {
  width: 22.3958333333vw;
  vertical-align: middle;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec01_area dt img {
    width: 11.1979166667vw;
  }
}
.sec01_area dd {
  padding: 9.765625vw 2% 7.1614583333vw;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec01_area dd {
    padding: 4.8828125vw 4.2317708333vw 2.2786458333vw;
    font-size: 1.6276041667vw;
  }
}

/* ========================================
    ■ sec02
======================================== */
#sec02 {
  background: url(../images/sec02_pattern01.png);
  padding: 0 0 5.859375vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec02 {
    padding: 0 0 2.9296875vw;
  }
}

.sec02_content {
  margin: 4.5572916667vw 0 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec02_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3.2552083333vw 5% 0;
  }
}

.sec02_txt01 {
  width: 90.234375vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec02_txt01 {
    flex-shrink: 0;
    width: 41.015625vw;
    margin: 0;
  }
}

.sec02_price {
  margin: 4.5572916667vw 0 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec02_price {
    width: 50%;
    margin: 0;
  }
}
.sec02_price .list_kome {
  margin: 2.6041666667vw 5% 0;
  color: #00416a;
  font-size: 2.6041666667vw;
  line-height: 1.3;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec02_price .list_kome {
    margin: 0.9765625vw 0 0;
    font-size: 1.3020833333vw;
    line-height: 1.3;
  }
}

.sec02_price_img {
  width: 90.1041666667vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec02_price_img {
    width: 100%;
    margin: 0;
  }
}

/* ========================================
    ■ sec03
======================================== */
#sec03 {
  background: url(../images/sec03_bg01.png) no-repeat center top #f4f2e5;
  background-size: 100% auto;
  padding: 0 0 11.71875vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec03 {
    background: url(../images/sec03_bg01_pc.png) no-repeat center top #f4f2e5;
    background-size: 100% auto;
    padding: 0 0 5.2083333333vw;
  }
}

.sec03_tit {
  width: 92.1875vw;
  margin: 1.953125vw auto 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec03_tit {
    width: 37.109375vw;
    margin: 2.6041666667vw auto 0;
  }
}

.sec03_trouble {
  display: flex;
  flex-wrap: wrap;
  margin: 3.2552083333vw 5% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec03_trouble {
    justify-content: center;
    margin: 2.2786458333vw 5% 0;
  }
}
.sec03_trouble > li {
  width: 44.2708333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec03_trouble > li {
    width: 21.0286458333vw;
  }
}
.sec03_trouble > li:nth-of-type(n+3) {
  margin-top: 3.90625vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec03_trouble > li:nth-of-type(n+3) {
    margin-top: 0;
  }
}

.sec03_solution {
  margin: 5.2083333333vw 5% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec03_solution {
    margin: 3.2552083333vw 15% 0;
  }
}
.sec03_solution > li:nth-of-type(n+2) {
  margin-top: 3.90625vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec03_solution > li:nth-of-type(n+2) {
    margin-top: 3.90625vw;
  }
}

/* ========================================
    ■ cta
======================================== */
.cta {
  background: url(../images/cta_pattern01.png);
  padding: 33.8541666667vw 0 5.859375vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta {
    padding: 18.2291666667vw 0 3.2552083333vw;
  }
}

.cta_tit {
  position: absolute;
  left: 0;
  top: -4.5572916667vw;
  width: 100%;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_tit {
    left: 0;
    top: -2.2786458333vw;
    width: 100%;
  }
}

.cta_content {
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.cta_txt {
  width: 88.0208333333vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_txt {
    width: 44.0104166667vw;
    margin: 0;
  }
}

.cta_box {
  position: relative;
  background: rgba(255, 255, 255, 0.89);
  margin: 7.8125vw 5% 0;
  padding: 14.9739583333vw 0 1.953125vw;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_box {
    width: 45.2473958333vw;
    margin: 0 0 0 1.953125vw;
    padding: 7.1614583333vw 0 0.6510416667vw;
  }
}

.cta_box_tit {
  position: absolute;
  left: calc(50% - 40vw);
  top: -5.859375vw;
  width: 80vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_box_tit {
    left: calc(50% - 20vw);
    top: -2.9296875vw;
    width: 40vw;
  }
}

.cta_box_txt {
  color: #8c8c8c;
  font-size: 3.6458333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_box_txt {
    font-size: 1.6276041667vw;
  }
}

.cta_box_card {
  width: 63.1510416667vw;
  margin: 1.3020833333vw auto 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .cta_box_card {
    width: 31.5755208333vw;
    margin: 0.6510416667vw auto 0;
  }
}

.cta_box_btn {
  display: block;
  width: 87.5vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
.cta_box_btn-wrapper { position: relative; }
.cta_box_btn-wrapper span.phone-number {
font-size: 8vw;
width: 74vw;
bottom: 1.25vw;
left: 17vw;
text-align: left;
position: absolute;
font-weight: 900;
color: #fff;
-webkit-text-stroke: 0.4vw #089c1d;
text-stroke: 0.4vw #089c1d;
font-family: "Arial",sans-serif;
transform: scale(0.9, 1);
}
@media screen and (min-width: 769px) {
  .cta_box_btn {
    width: 43.75vw;
  }
  .cta_box_btn-wrapper span.phone-number {
    font-size: 4vw;
    width: 36vw;
    bottom: 0.25vw;
    left: 8vw;
    text-align: left;
    position: absolute;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 0.2vw #089c1d;
    text-stroke: 0.2vw #089c1d;
    font-family: "Arial",sans-serif;
    transform: scale(0.9, 1);
  }
}

/* ========================================
    ■ warranty
======================================== */
.warranty {
  background: url(../images/warranty_pattern01.png);
  padding: 1.3020833333vw 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .warranty {
    padding: 0.9765625vw 0 2.6041666667vw;
  }
}
.warranty.underline {
  border-bottom: solid 1.3020833333vw #00416a;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .warranty.underline {
    border-bottom-width: 0.6510416667vw;
  }
}
.warranty.cta_top {
  padding-bottom: 7.8125vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .warranty.cta_top {
    padding-bottom: 3.90625vw;
  }
}

.warranty_txt01 {
  width: 93.0989583333vw;
  margin: 0 0 0 5%;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .warranty_txt01 {
    width: 68.8802083333vw;
    margin: 0 0 0 18.8802083333vw;
  }
}

.warranty_txt02 {
  margin: 1.3020833333vw 0 0;
  color: #004069;
  font-size: 3.6458333333vw;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .warranty_txt02 {
    margin: 0.6510416667vw 0 0;
    font-size: 1.4322916667vw;
  }
}

/* ========================================
    ■ sec04
======================================== */
#sec04 {
  background: url(../images/sec04_pattern01.png);
  padding: 5.859375vw 0 5.2083333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec04 {
    padding: 2.9296875vw 0;
  }
}
#sec04::before {
  position: absolute;
  right: 3.2552083333vw;
  top: 9.1145833333vw;
  background: #fff;
  border-radius: 50%;
  width: 24.7395833333vw;
  height: 24.7395833333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec04::before {
    right: 20.5078125vw;
    top: 0.3255208333vw;
    width: 8.7890625vw;
    height: 8.7890625vw;
  }
}

.sec04_tit {
  position: relative;
  width: 88.5416666667vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec04_tit {
    width: 56.3802083333vw;
  }
}

.sec04_flow {
  position: relative;
  margin: 4.5572916667vw 5% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec04_flow {
    width: 82.03125vw;
    margin: 2.9296875vw 0 0 10%;
  }
}

.sec04_txt {
  margin: 0.6510416667vw 5% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec04_txt {
    width: 82.03125vw;
    margin: 0.3255208333vw auto 0;
    text-align: right;
  }
}

/* ========================================
    ■ sec05
======================================== */
#sec05 {
  background: url(../images/sec05_pattern01.png);
  border-top: solid 1.3020833333vw #00416a;
  border-bottom: solid 1.3020833333vw #00416a;
  padding: 3.2552083333vw 0 13.0208333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec05 {
    border-top-width: 0.6510416667vw;
    border-bottom-width: 0.6510416667vw;
    padding: 2.6041666667vw 0 7.1614583333vw;
  }
}

#sec05_slide {
  position: relative;
}
#sec05_slide .flickity-prev-next-button {
  top: 55%;
  background: #00416a;
  width: 9.1145833333vw;
  height: 9.1145833333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec05_slide .flickity-prev-next-button {
    width: 4.5572916667vw;
    height: 4.5572916667vw;
  }
}
#sec05_slide .flickity-prev-next-button.previous {
  left: 8%;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec05_slide .flickity-prev-next-button.previous {
    left: 12%;
  }
}
#sec05_slide .flickity-prev-next-button.next {
  right: 8%;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec05_slide .flickity-prev-next-button.next {
    right: 12%;
  }
}
#sec05_slide .flickity-prev-next-button .flickity-button-icon {
  fill: #fff;
}
#sec05_slide .flickity-page-dots {
  bottom: -5.859375vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec05_slide .flickity-page-dots {
    bottom: -3.2552083333vw;
  }
}
#sec05_slide .flickity-page-dots .dot {
  background: #fff;
  border: solid 1px #0080ec;
  opacity: 1;
}
#sec05_slide .flickity-page-dots .dot.is-selected {
  background: #0080ec;
}

.sec05_slide_item {
  width: 80.078125vw;
  padding: 8.4635416667vw 1.953125vw 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_item {
    width: 76.8229166667vw;
    padding: 3.90625vw 2.6041666667vw 0;
  }
}
.sec05_slide_item.is-selected .sec05_slide_item_box {
  border-width: 2.0833333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_item.is-selected .sec05_slide_item_box {
    border-width: 0.6510416667vw;
  }
}

.sec05_slide_item_box {
  background: #fff;
  border: solid 0.6510416667vw #00416a;
  width: 100%;
  height: 118.4895833333vw;
  margin: 0;
  padding: 13.671875vw 8.4635416667vw 11.71875vw;
  transition: 0.2s ease;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_item_box {
    display: flex;
    border-width: 0.3255208333vw;
    height: 27.34375vw;
    padding: 4.8828125vw 2.2786458333vw 0;
  }
}

.sec05_slide_tit {
  position: absolute;
  left: calc(50% - 32vw);
  top: 0;
  background: url(../images/sec05_slide_tit_bg01.png) no-repeat center bottom;
  background-size: 100% 100%;
  width: 64vw;
  height: 20.5729166667vw;
  padding: 3.2552083333vw 6.5104166667vw 0;
  color: #fff;
  font-size: 4.1666666667vw;
  line-height: 1.4;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_tit {
    left: calc(50% - 22vw);
    top: 0;
    background: url(../images/sec05_slide_tit_bg01_pc.png) no-repeat center bottom;
    background-size: 100% 100%;
    width: 44vw;
    height: 7.9427083333vw;
    padding: 2.2786458333vw 0 0;
    font-size: 1.953125vw;
    text-align: center;
  }
}

.sec05_slide_img {
  position: relative;
  padding-bottom: 3.90625vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_img {
    flex-shrink: 0;
    width: 30.5989583333vw;
    margin-right: 1.953125vw;
    padding-bottom: 0;
  }
}
.sec05_slide_img::before {
  position: absolute;
  left: calc(50% - 7vw);
  bottom: 0;
  background: linear-gradient(90deg, #00b4fa, #0075e9);
  width: 14vw;
  height: 0.390625vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_img::before {
    display: none;
  }
}

.sec05_slide_txt {
  margin: 3.90625vw 0 0;
  font-size: 3.6458333333vw;
  line-height: 1.4;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_txt {
    margin: 0;
    font-size: 1.6276041667vw;
  }
}

.sec05_slide_name {
  display: inline-block;
  position: absolute;
  right: 1.953125vw;
  bottom: 5.2083333333vw;
  background: #00416a;
  border-radius: 100px 0 0 100px;
  padding: 0.6510416667vw 4.5572916667vw;
  color: #fff;
  font-size: 3.6458333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec05_slide_name {
    right: 2.6041666667vw;
    bottom: 1.6276041667vw;
    padding: 0.3255208333vw 1.953125vw;
    font-size: 1.5625vw;
  }
}

/* ========================================
    ■ sec06
======================================== */
#sec06 {
  background: url(../images/sec06_pattern01.png);
  border-bottom: solid 1.3020833333vw #00416a;
  padding: 4.6875vw 0 5.2083333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec06 {
    border-bottom-width: 0.6510416667vw;
    padding: 2.34375vw 0 3.90625vw;
  }
}

.sec06_tit {
  width: 89.5833333333vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec06_tit {
    width: 44.7916666667vw;
  }
}

.sec06_faq {
  margin: 6.5104166667vw 5% 0;
  line-height: 1.6;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec06_faq {
    margin: 2.9296875vw 14.9739583333vw 0;
  }
}
.sec06_faq dt {
  background: url(../images/sec06_faq_ico01.png) no-repeat 1.953125vw 3.2552083333vw #00416a;
  background-size: 3.6458333333vw auto;
  padding: 1.953125vw 2.6041666667vw 1.953125vw 7.8125vw;
  color: #fff;
  font-size: 4.1666666667vw;
  font-weight: 900;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec06_faq dt {
    background-position: 3.90625vw 1.6276041667vw;
    background-size: 1.8229166667vw auto;
    padding: 0.9765625vw 3.90625vw 0.9765625vw 6.5104166667vw;
    font-size: 1.953125vw;
  }
}
.sec06_faq dt:nth-of-type(n+2) {
  margin-top: 4.5572916667vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec06_faq dt:nth-of-type(n+2) {
    margin-top: 3.2552083333vw;
  }
}
.sec06_faq dd {
  background: url(../images/sec06_faq_ico02.png) no-repeat 1.3020833333vw 4.5572916667vw #fff;
  background-size: 3.6458333333vw auto;
  border: dotted 3px #00416a;
  border-top: none;
  padding: 3.2552083333vw 2.6041666667vw 5.2083333333vw 7.8125vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec06_faq dd {
    background-position: 3.5807291667vw 0.9765625vw;
    background-size: 1.8229166667vw auto;
    padding: 0.9765625vw 3.90625vw 1.3020833333vw 6.5104166667vw;
    font-size: 1.6276041667vw;
  }
}

/* ========================================
    ■ sec07
======================================== */
#sec07 {
  background: url(../images/sec07_bg01.png) no-repeat center top #f4f2e5;
  background-size: 100% auto;
  padding: 6.5104166667vw 0 3.2552083333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec07 {
    background: url(../images/sec07_bg01_pc.png) no-repeat center top #f4f2e5;
    background-size: 100% auto;
    padding: 2.2786458333vw 0 2.9296875vw;
  }
}

.sec07_header {
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec07_header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.sec07_header_tit {
  width: 89.84375vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec07_header_tit {
    width: 40.5598958333vw;
    margin: 0;
  }
}

.sec07_header_img {
  width: 95.0520833333vw;
  margin: 3.2552083333vw 0 0 1.3020833333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec07_header_img {
    width: 47.5260416667vw;
    margin: 0 1.953125vw 0 0;
  }
}

.sec07_privacy {
  width: 90.1041666667vw;
  margin: 3.90625vw auto 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec07_privacy {
    width: 69.921875vw;
    margin: 1.953125vw auto 0;
  }
}

/* ========================================
    ■ sec08
======================================== */
#sec08 {
  background: url(../images/sec08_pattern01.png);
  padding: 1.953125vw 0 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #sec08 {
    padding: 0.9765625vw 0 0;
  }
}

.sec08_btn {
  display: block;
  width: 85.0260416667vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .sec08_btn {
    width: 42.5130208333vw;
  }
}

/* ========================================
    ■ footer
======================================== */
footer {
  background: #00416a;
  padding: 1.3020833333vw 0;
  color: #fff;
  font-size: 1.5625vw;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  footer {
    padding: 0.6510416667vw 0;
    font-size: 1.3020833333vw;
  }
}
footer.main {
  padding-bottom: 36.4583333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  footer.main {
    padding-bottom: 0.6510416667vw;
  }
}

/* ========================================
    ■ recruit
======================================== */
#recruit {
  background: url(../images/recruit_pattern01.png);
  padding: 6.5104166667vw 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  #recruit {
    padding: 4.8828125vw 0;
  }
}

.recruit_head_tit {
  width: 91.40625vw;
  margin: 0 auto;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_head_tit {
    width: 45.703125vw;
  }
}

.recruit_head_txt {
  margin: 2.6041666667vw 0 0;
  color: #315fb2;
  text-align: center;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_head_txt {
    margin: 1.3020833333vw 0 0;
  }
}

.recruit_detail {
  margin: 1.3020833333vw 10% 0;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail {
    margin: 0.6510416667vw 14.9739583333vw 0;
  }
}
.recruit_detail dt {
  background: url(../images/recruit_detail_ico01.png) no-repeat left center;
  background-size: 3.515625vw auto;
  border-bottom: solid 1px #222;
  margin: 0 0 1.953125vw;
  padding: 1.3020833333vw 0 1.3020833333vw 5.2083333333vw;
  font-size: 4.1666666667vw;
  font-weight: 900;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail dt {
    background-size: 1.7578125vw auto;
    margin: 0 0 1.3020833333vw;
    padding: 0.6510416667vw 0 0.6510416667vw 2.6041666667vw;
    font-size: 2.0833333333vw;
  }
}
.recruit_detail dt:nth-of-type(n+2) {
  margin-top: 4.5572916667vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail dt:nth-of-type(n+2) {
    margin-top: 2.2786458333vw;
  }
}
.recruit_detail dd {
  background: rgba(204, 204, 204, 0.33);
  padding: 1.953125vw 3.2552083333vw;
  font-size: 3.6458333333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail dd {
    padding: 0.6510416667vw 2.6041666667vw;
    font-size: 1.6276041667vw;
  }
}
.recruit_detail dd.noback {
  background: none;
  padding: 0;
}
.recruit_detail dd p:nth-of-type(n+2) {
  margin-top: 0.7em;
}

.recruit_detail_tbl {
  width: 100%;
  font-size: 3.3854166667vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail_tbl {
    width: 65.1041666667vw;
    margin: 0.9765625vw auto 0;
    font-size: 1.6276041667vw;
  }
}
.recruit_detail_tbl th {
  border-bottom: solid 2px #222;
  padding: 1.3020833333vw;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail_tbl th {
    padding: 0.9765625vw;
  }
}
.recruit_detail_tbl td {
  border-bottom: solid 1px #222;
  padding: 1.3020833333vw;
  /* メディアクエリ用 */
}
@media screen and (min-width: 769px) {
  .recruit_detail_tbl td {
    padding: 0.9765625vw;
  }
}
