@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
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;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* ========================================
    ■ 必須設定
======================================== */
/* 関数
----------------------------- */
.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.4em 0.4em at center center, #343434 50%, transparent 50%);
  -webkit-font-feature-settings: normal;
          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
======================================== */
/* 1px = 0.01remに変換（100px = 1rem）*/
html {
  font-size: 13.02083vw;
}

@media screen and (min-width: 769px) {
  html {
    font-size: 6.51042vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #343434;
  line-height: 1.6;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 0.3rem;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 0.23rem;
  }
}

a {
  color: #0033cc;
  text-decoration: underline;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

a::before, a::after {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

a:hover {
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

a:hover::before, a:hover::after {
  -webkit-transition: 0.2s ease;
  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;
}

picture {
  display: block;
}

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

@media screen and (min-width: 769px) {
  .wrap {
    max-width: 1536px;
  }
}

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hover:hover {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

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

.scrollbar::-webkit-scrollbar {
  background: #ccc;
  width: 0.1rem;
}

.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;
  }
}

/* マーカー */
mark {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f3f3f3), color-stop(50%, transparent));
  background: linear-gradient(0deg, #f3f3f3 50%, transparent 50%);
}

/* ・リスト */
.list_dot > li {
  position: relative;
  padding-left: 1em;
}

.list_dot > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

/* ========================================
    ■ General
======================================== */
/* 1px = 0.01remに変換（100px = 1rem）*/
html {
  font-size: 13.02083vw;
}

@media screen and (min-width: 769px) {
  html {
    font-size: 6.51042vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #343434;
  line-height: 1.6;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 0.3rem;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 0.23rem;
  }
}

a {
  color: #0033cc;
  text-decoration: underline;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

a::before, a::after {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

a:hover {
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

a:hover::before, a:hover::after {
  -webkit-transition: 0.2s ease;
  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;
}

picture {
  display: block;
}

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

@media screen and (min-width: 769px) {
  .wrap {
    max-width: 1536px;
  }
}

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hover:hover {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

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

.scrollbar::-webkit-scrollbar {
  background: #ccc;
  width: 0.1rem;
}

.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;
  }
}

/* マーカー */
mark {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f3f3f3), color-stop(50%, transparent));
  background: linear-gradient(0deg, #f3f3f3 50%, transparent 50%);
}

/* ・リスト */
.list_dot > li {
  position: relative;
  padding-left: 1em;
}

.list_dot > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

html {
  scroll-behavior: smooth;
}

/* ========================================
    ■ header
======================================== */
.header {
  max-width: 6.9rem;
  margin: 0 auto;
  padding: 0.04rem 0 0.16rem;
}

@media screen and (min-width: 769px) {
  .header {
    max-width: 10rem;
  }
}

.header_logo {
  max-width: 2rem;
}

/* ========================================
    ■ keyv
======================================== */
.keyv_top {
  font-size: 0.24rem;
  text-align: center;
  color: white;
  background-color: #3b4c6a;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.16rem 0px;
}

/* ========================================
    ■ cta
======================================== */
.cta_head {
  text-align: center;
  color: white;
  font-size: 0.29rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.cta_head_strong {
  font-size: 0.43rem;
}

.cta_head_strong_kenten {
  position: relative;
}

.cta_head_strong_kenten::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #fffe26;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

.cta_head_kenten {
  position: relative;
}

.cta_head_kenten::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #fffe26;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

.cta_image {
  max-width: 6.14rem;
  margin: 0.32rem auto;
  display: block;
}

@media screen and (min-width: 769px) {
  .cta_image {
    width: 50%;
  }
}

@media screen and (min-width: 769px) {
  .cta_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 10rem;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cta_lead {
  text-align: center;
  color: white;
  font-size: 0.22rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta_lead::before {
  background-image: url(../images/cta_leftdec.png);
  content: "";
  width: 0.16rem;
  height: 0.24rem;
  background-size: cover;
  background-position: center center;
}

@media screen and (min-width: 769px) {
  .cta_lead::before {
    left: 32%;
  }
}

.cta_lead::after {
  background-image: url(../images/cta_rightdec.png);
  content: "";
  width: 0.16rem;
  height: 0.24rem;
  background-size: cover;
  background-position: center center;
}

@media screen and (min-width: 769px) {
  .cta_lead::after {
    right: 32%;
  }
}

.cta_btn {
  max-width: 6.14rem;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.cta_btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate3d(0, 3px, 0);
          transform: translate3d(0, 3px, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cta_note {
  color: white;
  text-align: center;
  color: white;
  font-size: 0.2rem;
  letter-spacing: 0.08em;
}

.bg-navy {
  background-color: #3b4c6a;
  padding: 0.24rem 0;
}

.bg-buil {
  background-image: url(../images/cta_bg.png);
  background-size: cover;
  padding: 0.8rem 0;
}

.letterspace16 {
  letter-spacing: 0.16em;
}

/* ========================================
    ■ sec01
======================================== */
/* ========================================
    ■ sec02
======================================== */
.sec02 {
  padding: 0.64rem 0;
}

.sec02_top {
  max-width: 0.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  display: block;
}

.sec02_stop {
  font-size: 0.28rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.16em;
  color: #3b4c6a;
  margin-top: 0.16rem;
}

.sec02_stop::after {
  content: "";
  width: 2.2rem;
  height: 0.08rem;
  position: absolute;
  background-color: #efefef;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.sec02_head {
  font-size: 0.4rem;
  text-align: center;
  font-weight: 700;
  color: #3b4c6a;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-top: 0.24rem;
}

.sec02_lead {
  color: #3b4c6a;
  text-align: center;
  font-size: 0.26rem;
  font-weight: 700;
  border: dotted 1px #efefef;
  width: 6.1rem;
  margin: 0.4rem auto 0;
  letter-spacing: 0.08em;
  padding: 0.08rem 0;
}

.sec02_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .sec02_content {
    max-width: 6.9rem;
    margin: 0 auto;
  }
}

.sec02_content_image {
  width: 50%;
}

.sec02_content_text {
  width: 45%;
  font-size: 0.25rem;
  font-weight: 700;
  position: relative;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 769px) {
  .sec02_content_text {
    width: 50%;
  }
}

.sec02_content_text::before {
  content: "";
  background-image: url(../images/sec02_leftdec.png);
  background-size: cover;
  width: 0.23rem;
  height: 0.4rem;
  position: absolute;
  left: -0.32rem;
  top: -0.08rem;
}

.sec02_content_text::after {
  content: "";
  background-image: url(../images/sec02_rightdec.png);
  background-size: cover;
  width: 0.23rem;
  height: 0.4rem;
  position: absolute;
  right: 0rem;
  bottom: -0.08rem;
}

.sec02_content_text_green {
  color: #8bd1c7;
}

/* ========================================
    ■ sec03
======================================== */
.sec03 {
  background-color: #f3fbfd;
  padding: 0.64rem 0;
}

@media screen and (min-width: 769px) {
  .sec03 {
    padding: 0.64rem 0px 4rem;
    background: url(../images/sec03_bg_pc.png) no-repeat bottom, #f3fbfd;
  }
}

.sec03_content {
  max-width: 6.89rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sec03_content {
    max-width: 9rem;
  }
}

.sec03_content_head {
  font-size: 0.28rem;
  color: #3b4c6a;
  font-weight: 700;
  text-align: center;
  background-color: #d8e1e7;
  border: solid 2px #3b4c6a;
  background-image: url(../images/common_lefttopdec.png), url(../images/common_righttopdec.png), url(../images/common_rightbottomdec.png), url(../images/common_leftbottomdec.png);
  background-repeat: no-repeat;
  background-position: left top, right top, right bottom, left bottom;
  background-size: 2%;
  padding: 0.16rem 0;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.sec03_content_body {
  border: solid 2px #3b4c6a;
  border-top: none;
  padding: 0.24rem 0;
  background-color: white;
}

.sec03_content_body_title {
  font-size: 0.27rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

.sec03_content_body_title_strong {
  font-size: 0.48rem;
}

.sec03_content_body_title_strong_green {
  color: #8bd1c7;
}

.sec03_content_body_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: self-start;
      align-items: self-start;
  background-color: #efefef;
  max-width: 6.14rem;
  margin: 0.32rem auto 0;
  padding: 0.24rem 0.16rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .sec03_content_body_about {
    max-width: 7.92rem;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.sec03_content_body_about_image {
  max-width: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec03_content_body_about_text {
  font-size: 0.24rem;
  width: 4.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 769px) {
  .sec03_content_body_about_text {
    width: 5.6rem;
  }
}

.sec03_content_body_about_text_br {
  content: "";
  margin-top: 0.16rem;
  display: block;
}

.sec03_lead {
  font-size: 0.28rem;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 0.4rem;
}

@media screen and (min-width: 769px) {
  .sec03_lead {
    letter-spacing: 0.12em;
  }
}

.sec03_map {
  max-width: 6.89rem;
  display: block;
  margin: 0.32rem auto 0;
}

.sec03_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: self-start;
      align-items: self-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.32rem auto;
  max-width: 6.9rem;
}

@media screen and (min-width: 769px) {
  .sec03_note {
    margin: 0.64rem auto 0.8rem;
  }
}

.sec03_note_image {
  max-width: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec03_note_text {
  font-size: 0.24rem;
  width: 5.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: white;
  padding: 0.32rem 0;
  line-height: 1.6;
}

.sec03_note_text > p {
  width: 4.4rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sec03_note_text {
    position: relative;
  }
  .sec03_note_text::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -22px;
    margin-top: -15px;
    border-top: 8px solid transparent;
    border-right: 24px solid white;
    border-bottom: 8px solid transparent;
  }
}

.sec03_house {
  position: relative;
}

.sec03_house_image {
  max-width: 9rem;
  margin: 0 auto;
  display: block;
}

.sec03_house_text {
  color: #3b4c6a;
  font-size: 0.32rem;
  font-weight: 700;
  border: solid 2px #3b4c6a;
  max-width: 5.4rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  letter-spacing: 0.12em;
  padding: 0.24rem 0;
  bottom: -0.56rem;
  background-color: white;
}

@media screen and (min-width: 769px) {
  .sec03_house_text {
    border: solid 3px #3b4c6a;
  }
}

.sec03_result {
  margin-top: 0.96rem;
}

.sec03_result_title {
  text-align: center;
  font-size: 0.28rem;
  font-weight: 700;
}

.sec03_result_image {
  margin-top: 0.4rem;
}

@media screen and (min-width: 769px) {
  .sec03_result_image {
    max-width: 9rem;
    margin: 0.4rem auto 0;
    display: block;
  }
}

.sec03_point {
  padding: 0.48rem 0 0;
}

@media screen and (min-width: 769px) {
  .sec03_point {
    max-width: 10rem;
    margin: 0 auto;
    position: relative;
  }
}

.sec03_point_title {
  text-align: center;
  font-size: 0.28rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sec03_point_title_kenten {
  position: relative;
}

.sec03_point_title_kenten::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #8bd1c7;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
}

.sec03_point_image {
  margin-top: 0.4rem;
}

@media screen and (min-width: 769px) {
  .sec03_point_image {
    max-width: 7.7rem;
    margin-left: auto;
    display: block;
  }
}

.sec03_point_main {
  width: 6.89rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sec03_point_main {
    position: absolute;
    top: 55%;
  }
}

.sec03_point_main_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding: 0.24rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 0.24rem;
}

@media screen and (min-width: 769px) {
  .sec03_point_main_point {
    padding: 0.16rem 0;
  }
}

.sec03_point_main_point_image {
  max-width: 0.88rem;
}

@media screen and (min-width: 769px) {
  .sec03_point_main_point_image {
    max-width: 0.76rem;
  }
}

.sec03_point_main_point_text {
  font-size: 0.24rem;
  font-weight: 700;
  width: 4rem;
  position: relative;
}

.sec03_point_main_point_text_green {
  font-size: 0.29rem;
  color: #8bd1c7;
}

.sec03_point_main_point_text_green::after {
  content: "";
  position: absolute;
  width: 0.11rem;
  height: 0.11rem;
  background-image: url(../images/sec03_point_dec.png);
  background-size: 80%;
  display: inline-block;
  background-repeat: no-repeat;
  top: 0.42rem;
}

.border-none {
  border: none;
}

.p-y-4rem {
  padding: 0.4rem 0;
}

.top-6rem::after {
  top: 0.06rem;
}

@media screen and (min-width: 769px) {
  .text-39_pc {
    font-size: 0.39rem;
  }
}

.bg-none {
  background: none;
}

/* ========================================
    ■ sec04
======================================== */
.sec04 {
  background-color: #f3fbfd;
  padding: 0.48rem 0;
}

.sec04_head {
  font-size: 0.28rem;
  color: #3b4c6a;
  font-weight: 700;
  text-align: center;
  background-color: #d8e1e7;
  border: solid 2px #3b4c6a;
  background-image: url(../images/common_lefttopdec.png), url(../images/common_righttopdec.png), url(../images/common_rightbottomdec.png), url(../images/common_leftbottomdec.png);
  background-repeat: no-repeat;
  background-position: left top, right top, right bottom, left bottom;
  background-size: 2%;
  padding: 0.16rem 0;
  line-height: 1.5;
  letter-spacing: 0.16em;
  max-width: 6.89rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sec04_head {
    max-width: 9rem;
  }
}

.sec04_content {
  max-width: 6.89rem;
  margin: 0.4rem auto 0;
  background-color: white;
}

@media screen and (min-width: 769px) {
  .sec04_content {
    max-width: 9rem;
  }
}

.sec04_content_wrap {
  max-width: 6.14rem;
  margin: 0 auto;
  padding: 0.4rem 0;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 7.92rem;
  }
}

.sec04_content_wrap_head {
  text-align: center;
  font-size: 0.27rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap_head {
    width: 50%;
  }
}

.sec04_content_wrap_head_strong {
  font-size: 0.48rem;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap_head_strong {
    font-size: 0.36rem;
  }
}

.sec04_content_wrap_head_strong_green {
  color: #8bd1c7;
}

.sec04_content_wrap_image {
  margin-top: 0.32rem;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap_image {
    width: 50%;
    margin-top: 0;
  }
}

.sec04_content_wrap_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: self-start;
      align-items: self-start;
  background-color: #efefef;
  max-width: 6.14rem;
  margin: 0.32rem auto 0;
  padding: 0.24rem 0.16rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap_about {
    max-width: initial;
    width: 7.8rem;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.sec04_content_wrap_about_image {
  max-width: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec04_content_wrap_about_text {
  font-size: 0.24rem;
  width: 4.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap_about_text {
    width: 5.6rem;
  }
}

.sec04_content_wrap_about_text_br {
  content: "";
  margin-top: 0.16rem;
  display: block;
}

.sec04_content_wrap_note {
  font-size: 0.2rem;
  text-align: right;
  margin-top: 0.08rem;
}

@media screen and (min-width: 769px) {
  .sec04_content_wrap_note {
    margin-left: auto;
  }
}

.swiper-container {
  margin-top: 0.24rem;
}

/* ========================================
    ■ sec05
======================================== */
.sec05_head {
  background-image: url(../images/sec05_head_bg.png);
  background-size: cover;
  color: white;
  font-size: 0.28rem;
  text-align: center;
  font-weight: 700;
  padding: 0.4rem 0;
  letter-spacing: 0.08em;
}

.sec05_head_strong {
  font-size: 0.36rem;
}

.sec05_image {
  max-width: 6.14rem;
  margin: 0 auto;
  padding: 0.4rem 0;
}

@media screen and (min-width: 769px) {
  .sec05_image {
    max-width: 10rem;
  }
}

.sec05_image > picture + picture {
  margin-top: 0.4rem;
}

/* ========================================
    ■ sec06
======================================== */
.sec06 {
  background-image: url(../images/sec06_bg.png);
  background-size: cover;
  padding-bottom: 0.48rem;
}

@media screen and (min-width: 769px) {
  .sec06 {
    background-image: url(../images/sec06_bg_pc.png);
  }
}

@media screen and (min-width: 769px) {
  .sec06_message {
    max-width: 10rem;
    display: block;
    margin: 0 auto;
  }
}

.sec06_title {
  font-size: 0.48rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3b4c6a;
  margin-top: 0.24rem;
}

.swiper-slide-active {
  -webkit-box-shadow: 0px 5px 17.4px 2.6px rgba(57, 57, 57, 0.1);
          box-shadow: 0px 5px 17.4px 2.6px rgba(57, 57, 57, 0.1);
}

.swiper-slide-active .swiper-slide_image {
  border: solid 0.06rem #3b4c6a;
  -webkit-transition: border 0.4s ease;
  transition: border 0.4s ease;
}

#pagination {
  position: static;
}

#pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  border: solid 0.01rem #3b4c6a;
  background: none;
  opacity: 1;
  margin: 0 0.05rem;
}

#pagination .swiper-pagination-bullet-active {
  background: #3b4c6a;
}

/* ========================================
    ■ conact
======================================== */
.contact {
  background-color: #efefef;
  padding: 0.64rem 0;
}

.contact_head {
  font-size: 0.4rem;
  text-align: center;
  color: #3b4c6a;
  font-weight: 700;
}

.contact_form {
  max-width: 6.89rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .contact_form {
    max-width: 10rem;
  }
}

@media screen and (min-width: 769px) {
  .contact_form_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-top: 0.4rem;
  }
}

.contact_form_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.4rem;
}

@media screen and (min-width: 769px) {
  .contact_form_title {
    width: 3.4rem;
    margin-top: 0rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact_form_title_list {
  font-size: 0.26rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 769px) {
  .contact_form_title_list {
    font-size: 0.25rem;
  }
}

.contact_form_title_must {
  background-color: #ff8201;
  color: white;
  border-radius: 12px;
  font-size: 0.16rem;
  text-align: center;
  letter-spacing: 0.32em;
  line-height: 1;
  padding: 0.032rem 0px;
  width: 0.88rem;
  margin-left: 0.08rem;
}

@media screen and (min-width: 769px) {
  .contact_form_title_must {
    margin-top: 0.1rem;
  }
}

.contact_form_title_note {
  font-size: 0.2rem;
  margin-left: 0.08rem;
}

@media screen and (min-width: 769px) {
  .contact_form_title_note {
    text-align: left;
    margin-left: 0rem;
  }
}

.contact_form_radio {
  padding: 0.4rem;
  background-color: white;
}

@media screen and (min-width: 769px) {
  .contact_form_radio {
    max-width: 6.4rem;
  }
}

.contact_form_radio_title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  font-size: 0.24rem;
  font-weight: 700;
}

.contact_form_radio_title::before {
  background: #fff;
  border: 1px solid #c7c7c9;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.contact_form_radio_title::after {
  background: #c7c7c9;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

.contact_form_radio_about {
  font-size: 0.24rem;
  width: 5.9rem;
  margin: 0 auto;
}

.contact_form_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_form_unit_input_title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  font-size: 0.24rem;
  font-weight: 700;
}

.contact_form_unit_input_title::before {
  background: #fff;
  border: 1px solid #c7c7c9;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.contact_form_unit_input_title::after {
  background: #c7c7c9;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

.contact_form_text, .contact_form_textarea {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0.16rem 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact_form_text::-webkit-input-placeholder, .contact_form_textarea::-webkit-input-placeholder {
  color: #c7c7c9;
  font-size: 0.24rem;
}

.contact_form_text:-ms-input-placeholder, .contact_form_textarea:-ms-input-placeholder {
  color: #c7c7c9;
  font-size: 0.24rem;
}

.contact_form_text::-ms-input-placeholder, .contact_form_textarea::-ms-input-placeholder {
  color: #c7c7c9;
  font-size: 0.24rem;
}

.contact_form_text::placeholder, .contact_form_textarea::placeholder {
  color: #c7c7c9;
  font-size: 0.24rem;
}

.contact_form_textarea {
  width: 100%;
  max-width: none;
  min-height: 2.5rem;
  resize: none;
}

@media screen and (min-width: 769px) {
  .contact_form_textarea {
    width: 6.4rem;
  }
}

.contact_form_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .contact_form_box {
    width: 6.4rem;
  }
}

.contact_form_select {
  background-color: white;
  position: relative;
}

.contact_form_select::after {
  position: absolute;
  content: "▼";
  right: 5%;
  top: 10%;
  z-index: 998;
}

@media screen and (min-width: 769px) {
  .contact_form_select::after {
    top: 25%;
  }
}

.contact_form_select > select {
  z-index: 999;
  background-color: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8em;
  padding: 0.16rem 0.4rem;
  border: none;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .contact_form_select > select {
    width: 6.4rem;
    padding: 0.23rem 0.4rem;
    font-size: 1em;
  }
}

.contact_form_select > select::-ms-expand {
  display: none;
}

.contact_form_note {
  font-size: 0.24rem;
  text-align: center;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.contact_form_note > a {
  color: #343434;
}

.contact_form_submit {
  border: none;
  margin: 0.24rem auto 0;
  display: block;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .contact_form_submit {
    max-width: 6.3rem;
  }
}

.contact_form_submit:hover {
  -webkit-transform: translate3d(0, 3px, 0);
          transform: translate3d(0, 3px, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact_form_aleat {
  text-align: center;
  font-size: 0.2rem;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .contact_form_radio_title::after {
  opacity: 1;
}

input[type="radio"]:checked + .contact_form_unit_input_title::after {
  opacity: 1;
}

.half {
  width: 48%;
}

@media screen and (min-width: 769px) {
  .half {
    width: 3rem;
  }
}

.max {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .max {
    width: 6.4rem;
  }
}

.max-pc {
  width: 48%;
}

@media screen and (min-width: 769px) {
  .max-pc {
    width: 6.4rem;
  }
}

.text-left {
  text-align: left;
}

.space {
  margin-left: 0.24rem;
}

.inline-block {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .d-none_pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .d-none_sp {
    display: none;
  }
}

/* ========================================
    ■ company
======================================== */
.company {
  padding: 0.64rem 0;
}

.company_title {
  font-size: 0.4rem;
  text-align: center;
  color: #3b4c6a;
  font-weight: 700;
  margin-bottom: 0.24rem;
  letter-spacing: 0.1em;
}

.company_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 6.14rem;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .company_list {
    max-width: 10rem;
  }
}

.company_list_title {
  font-weight: 700;
  font-size: 0.23rem;
  width: 40%;
  margin-top: 0.16rem;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 769px) {
  .company_list_title {
    width: 30%;
  }
}

.company_list_about {
  font-size: 0.23rem;
  width: 60%;
  margin-top: 0.16rem;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 769px) {
  .company_list_about {
    width: 70%;
  }
}

/* ========================================
    ■ footer
======================================== */
.footer {
  background-color: #3b4c6a;
  padding: 0.24rem 0;
}

.footer_copyright {
  color: white;
  font-size: 0.16rem;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin: 0 auto;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 769px) {
  .footer_copyright {
    font-size: 0.15rem;
    -webkit-transform: scale(1);
            transform: scale(1);
    text-align: center;
  }
}

/* ========================================
    ■ thanks
======================================== */
.thanks {
  padding-top: 0.24rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.thanks_logo {
  max-width: 2rem;
  margin: 0 auto;
}

.thanks_icon {
  max-width: 2.1rem;
  margin: 0.4rem auto 0;
  display: block;
}

.thanks_head {
  font-size: 0.28rem;
  color: #ff8301;
  text-align: center;
  margin-top: 0.4rem;
}

@media screen and (min-width: 769px) {
  .thanks_head {
    font-size: 0.38rem;
  }
}

.thanks_main {
  margin-top: 0.32rem;
  font-size: 0.25rem;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .thanks_main {
    font-size: 0.2rem;
  }
}

.thanks_aleat {
  margin: 0.4rem auto 0;
  padding: 0.32rem 0;
  background-color: #eeeeee;
  font-size: 0.24rem;
  text-align: center;
  line-height: 1.9;
  max-width: 6.12rem;
}

@media screen and (min-width: 769px) {
  .thanks_aleat {
    max-width: 8.33rem;
    line-height: 1.6;
  }
}

.thanks_aleat_orange {
  color: #ff8301;
}

.thanks_note {
  margin-top: 0.32rem;
  text-align: center;
  font-size: 0.25rem;
}

@media screen and (min-width: 769px) {
  .thanks_note {
    font-size: 0.2rem;
  }
}

.thanks_note_tel {
  font-size: 0.32rem;
  color: #ff8301;
  line-height: 2.6;
  text-decoration: none;
}

.thanks_note_tel:hover {
  text-decoration: underline;
}

.thanks_btn {
  max-width: 6.12rem;
  display: block;
  margin: 0.64rem auto;
  cursor: pointer;
}

.thanks_btn:hover {
  -webkit-transform: translate3d(0, 3px, 0);
          transform: translate3d(0, 3px, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/*# sourceMappingURL=style.css.map */