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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.8;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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


input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
setting
=================================== */
body {
  font-family:
    -apple-system, BlinkMacSystemFont,
    "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", "Meiryo",
    sans-serif;
  color: #2C2523;
  font-size: 16px;
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  body {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  body.thanks_body {
    margin-bottom: 0px;
  }
}

/* ===================================
Utility
=================================== */
/* テキスト
==============================　*/
.bold {
  font-weight: bold;
}

/* PC/SP切り替え
  ==============================　*/
.sp,
.tb {
  display: none;
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* 改行
  ==============================　*/
/*任意の位置で改行させる*/
.ib {
  display: inline-block;
}

/*PCのみ*/
.pc-br {
  display: inline;
}

/*TBのみ*/
.tb-br {
  display: none;
}

/*PC〜TBにかけて*/
.pc-tb-br {
  display: inline;
}

/*TB〜SPにかけて*/
.tb-sp-br {
  display: none;
}

/*SPのみ*/
.sp-br {
  display: none;
}

/*iphoneSE用*/
.se-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
  .tb-br {
    display: inline;
  }
  .tb-sp-br {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .pc-tb-br {
    display: none;
  }
  .tb-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
}
@media screen and (max-width: 374px) {
  .se-br {
    display: inline;
  }
}
/* ===================================
layout
=================================== */
/* inner
==============================　*/
.inner_l {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner_m {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner_s {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* section
==============================　*/
section {
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  section {
    padding: 60px 0;
  }
}

/* ===================================
parts
=================================== */
/* CTA
==============================　*/
.cta {
  width: 100%;
  z-index: 2;
}
.cta > .inner_s {
  padding: 40px 20px 100px;
}
@media screen and (max-width: 600px) {
  .cta > .inner_s {
    padding: 10px 30px 60px;
  }
}
.cta.curve {
  background-image: url(../img/cta_bg02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .cta.curve {
    background-image: url(../img/cta_curve_sp.svg);
  }
}
.cta.square {
  position: relative;
}
.cta.cta_fv {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.cta .cta_msg {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
  letter-spacing: 0.96px;
  color: #00698c;
  text-align: center;
  margin: 0 0px 40px -30px;
}
@media screen and (max-width: 600px) {
  .cta .cta_msg {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 31.2px */
    letter-spacing: 0.72px;
    margin: 0 auto 30px;
  }
}
.cta .cta_msg::before {
  content: "";
  width: 130px;
  height: 100px;
  display: inline-block;
  vertical-align: bottom;
  background-image: url(../img/cta_badge.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  .cta .cta_msg::before {
    background-image: url(../img/cta_badge_sp.svg);
    display: block;
    margin: 0 auto 15px;
    width: 134px;
    height: 26px;
  }
}
.cta .cta_msg span {
  margin-left: -12px;
}

.btn_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .btn_wrap {
    flex-direction: column;
  }
}
.btn_wrap .btn {
  max-width: 308px;
  width: 32%;
  height: 88px;
  border-radius: 88px;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .btn_wrap .btn {
    max-width: initial;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .btn_wrap .btn:not(:last-child) {
    margin-bottom: 20px;
  }
}
.btn_wrap .btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_wrap .btn.tel {
  background-color: #FF5C28;
  color: #FAF7F4;
  position: relative;
  z-index: 1;
  box-shadow: 6px 6px 0px 0px #FAF7F4;
}
.btn_wrap .btn.tel:hover {
  box-shadow: 0px 0px 0px 0px #FAF7F4;
  transform: translate(6px, 6px);
}
@media screen and (max-width: 1024px) {
  .btn_wrap .btn.tel:hover {
    box-shadow: 6px 6px 0px 0px #FAF7F4;
    transform: translate(0px, 0px);
  }
}
.btn_wrap .btn.tel a {
  flex-direction: column;
}
.btn_wrap .btn.tel a .s {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}
.btn_wrap .btn.tel a .m {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
}
.btn_wrap .btn.tel .num {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
  margin-bottom: 2px;
}
.btn_wrap .btn.tel .num::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 6px;
  vertical-align: bottom;
}
.btn_wrap .btn.tel .time .s {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  margin-right: 4px;
}
.btn_wrap .btn.tel .time .m {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 14px */
}
.btn_wrap .btn.mail {
  background-color: #FAF7F4;
  color: #FF5C28;
  border: 3px solid #FF5C28;
  position: relative;
  z-index: 1;
  box-shadow: 6px 6px 0px 0px #FF5C28;
}
.btn_wrap .btn.mail:hover {
  box-shadow: 0px 0px 0px 0px #FF5C28;
  transform: translate(6px, 6px);
}
@media screen and (max-width: 1024px) {
  .btn_wrap .btn.mail:hover {
    box-shadow: 6px 6px 0px 0px #FF5C28;
    transform: translate(0px, 0px);
  }
}
.btn_wrap .btn.mail a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 6px;
  vertical-align: bottom;
}
.btn_wrap .btn.mail a .s {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}
.btn_wrap .btn.mail a .m {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
}
.btn_wrap .btn.line {
  background-color: #06C755;
  color: #FAF7F4;
  position: relative;
  z-index: 1;
  box-shadow: 6px 6px 0px 0px #FAF7F4;
}
.btn_wrap .btn.line:hover {
  box-shadow: 0px 0px 0px 0px #FAF7F4;
  transform: translate(6px, 6px);
}
@media screen and (max-width: 1024px) {
  .btn_wrap .btn.line:hover {
    box-shadow: 6px 6px 0px 0px #FAF7F4;
    transform: translate(0px, 0px);
  }
}
.btn_wrap .btn.line .btn_ico {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn_wrap .btn.line .btn_top {
  margin-bottom: -5px;
}
.btn_wrap .btn.line a::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/ico_line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: bottom;
}
.btn_wrap .btn.line a .ss {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}
.btn_wrap .btn.line a .s {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}
.btn_wrap .btn.line a .m {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
}

/* fixed_btn_sp
==============================　*/
.fixed_btn_sp {
  display: none;
}
@media screen and (max-width: 920px) {
  .fixed_btn_sp {
    display: block;
    position: fixed;
    bottom: env(safe-area-inset-bottom);
    left: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .fixed_btn_sp > .btn.line .block:first-child {
    line-height: 2.2;
    margin-bottom: -10px;
  }
  .fixed_btn_sp > .btn {
    width: 50%;
    height: 60px;
    text-align: center;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0 0 0 0;
    border: 0px;
  }
  .fixed_btn_sp > .btn .block:first-child {
    margin-bottom: -12px;
  }
  .fixed_btn_sp > .btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
  }
  .fixed_btn_sp .l {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 18px */
  }
  .fixed_btn_sp .ml {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 18px */
  }
  .fixed_btn_sp .m {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 14px */
  }
  .fixed_btn_sp .s {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .fixed_btn_sp .tel {
    background-color: #ffffff;
    color: #000000;
  }
  .fixed_btn_sp .tel a::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/icn-tel.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
  }
  .fixed_btn_sp .mail {
    background-color: #00698c;
    color: #ffffff;
  }
  .fixed_btn_sp .mail a::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/icn-mail.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    filter: brightness(0) invert(1);
  }
  .fixed_btn_sp .line {
    background-color: #06C755;
    color: #FAF7F4;
  }
  .fixed_btn_sp .line a::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/ico_line.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    margin-bottom: -8px;
  }
}

/* fixed_btn_pc
==============================　*/
.fixed_btn_pc {
  opacity: 0;
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  padding-bottom: calc(env(safe-area-inset-bottom) + 20px);
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 120px;
  transition: 0.5s;
}
.fixed_btn_pc.show {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .fixed_btn_pc.show {
    display: none;
  }
}

.fixed_btn_pc .btn {
  height: 80px;
  border-radius: 8px 0px 0px 8px;
  transition: 0.5s;
}
.fixed_btn_pc .btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .fixed_btn_pc .btn:hover {
    opacity: 1;
  }
}

.fixed_btn_pc .btn:not(:last-child) {
  margin-bottom: 10px;
}

.fixed_btn_pc .btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fixed_btn_pc .tel {
  background: var(--orange-100, #FF5C28);
  color: #fff;
}
.fixed_btn_pc .tel .block:first-child::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url(../img/ico_tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.fixed_btn_pc .mail {
  border-top: 2px solid var(--orange-100, #FF5C28);
  border-bottom: 2px solid var(--orange-100, #FF5C28);
  border-left: 2px solid var(--orange-100, #FF5C28);
  background: var(--cream-100, #FAF7F4);
  color: #FF5C28;
}
.fixed_btn_pc .mail a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.fixed_btn_pc .line {
  background: var(--green, #06C755);
  color: #fff;
}
.fixed_btn_pc .line a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.fixed_btn_pc .btn .s {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
}

.fixed_btn_pc .btn .m {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 14px */
}

.fixed_btn_pc .btn .l {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}

.fixed_btn_pc .btn.tel .l {
  letter-spacing: 0.48px;
}

.fixed_btn_pc .btn .num {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}

.fixed_btn_pc .mail .block,
.fixed_btn_pc .line .block {
  line-height: 1.2;
}

/* 見出し
==============================　*/
.sec_ttl {
  color: #00698C;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .sec_ttl {
    margin-bottom: 40px;
  }
}
.sec_ttl .s {
  font-size: 28px;
  line-height: 190%;
  /* 36.4px */
  letter-spacing: 0.84px;
}
@media screen and (max-width: 600px) {
  .sec_ttl .s {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 23.4px */
    letter-spacing: 0.54px;
  }
}
@media screen and (max-width: 365px) {
  .sec_ttl .s {
    font-size: 16px;
  }
}
.sec_ttl .m {
  font-size: 32px;
  line-height: 190%;
  /* 41.6px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 600px) {
  .sec_ttl .m {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 31.2px */
    letter-spacing: 0.72px;
  }
}
@media screen and (max-width: 365px) {
  .sec_ttl .m {
    font-size: 22px;
  }
}
.sec_ttl .l {
  font-size: 40px;
  line-height: 190%;
  letter-spacing: 1.2px;
    position: relative; /* 追加 */
    z-index: 2; /* 追加 */
}
@media screen and (max-width: 600px) {
  .sec_ttl .l {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.84px;
  }
}
@media screen and (max-width: 365px) {
  .sec_ttl .l {
    font-size: 26px;
  }
}
.sec_ttl::before {
    content: attr(data-en);
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    font-weight: 700;
    color: rgb(0 105 140 / 9%);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
}
.sec_ttl[data-en="CONTACT"]::before {
    color: rgb(255 255 255 / 14%);
}
@media screen and (max-width: 600px) {
  .sec_ttl::before {
    font-size: 13vw;
    top: 0%;
}
}


.cta .sec_ttl {
  color: #FAF7F4;
  margin: 60px 0;
}
@media screen and (max-width: 600px) {
  .cta .sec_ttl {
    margin: 30px 0 40px;
  }
}


/* ===================================
header
=================================== */
header {
  z-index: 1;
  position: relative;
}
header > .inner {
  padding: 20px 22px;
}
@media screen and (max-width: 600px) {
  header > .inner {
    padding: 20px 12px;
  }
}
header .logo {
  width: 170px;
  height: auto;
}
@media screen and (max-width: 1204px) {
  header .logo {
    width: 130px;
  }
}
header.thanks_header > .inner {
  padding: 50px 22px;
}
@media screen and (max-width: 600px) {
  header.thanks_header > .inner {
    padding: 20px 12px;
  }
}
header.thanks_header .logo {
  margin: 0 auto;
}

/* ===================================
footer
=================================== */
footer .f_contact {
    color: #000000;
    width: 100%;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #b1deeb;
}
footer .f_logo,
footer .text_wrap {
  margin-bottom: 30px;
}
footer .f_logo {
  width: 190px;
  height: auto;
}
@media screen and (max-width: 600px) {
  footer .f_logo {
    width: 164px;
    margin-bottom: 10px;   
  }
  footer .f_contact {
    padding: 30px 20px 0px;
}
}
footer .text_wrap {
  text-align: center;
}
footer .text_wrap .flex {
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  footer .text_wrap .flex {
    flex-direction: column;
    margin-bottom: 5px;
  }
}
footer .text_wrap .ad {
  margin-right: 14px;
}
@media screen and (max-width: 600px) {
  footer .text_wrap .ad {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
footer .text_wrap .map {
  text-decoration: underline;
  transition: 0.5s;
}
footer .text_wrap .map:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  footer .text_wrap .map:hover {
    opacity: 1;
  }
}
footer .text_wrap .map a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_blank.svg);
  margin-right: 5px;
}
footer .text_wrap .tel {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: 0.5s;
}
footer .text_wrap .tel:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  footer .text_wrap .tel:hover {
    opacity: 1;
  }
}
footer .site_btn {
  border-radius: 100px;
  border: 1px solid rgba(250, 247, 244, 0.2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.48px;
  max-width: 348px;
  width: 100%;
  height: 60px;
  transition: 0.5s;
}
footer .site_btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  footer .site_btn:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  footer .site_btn {
    height: 70px;
  }
}
footer .site_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .site_btn a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_blank.svg);
  margin-right: 5px;
}
footer .copyright {
  background: #111;
  width: 100%;
  padding: 30px 20px;
  color: rgba(250, 247, 244, 0.6);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 15.6px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 600px) {
  footer .copyright {
    padding: 10px;
  }
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

body {
  font-family: sans-serif;
}

/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* ===================================
fixed_bg
=================================== */
.fixed_bg {
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .fixed_bg {
    background-image: url(../img/bg_pc.png);
  }
}


.msg {
  background: #fff5c1;
  position: relative;
}
.msg::after {
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../img/msg_brush.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: absolute;
  bottom: -42px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .msg::after {
    height: 12px;
    background-image: url(../img/msg_brush_sp.svg);
    bottom: -12px;
  }
}
.msg .img01 {
  margin: -40px auto 0;
}
@media screen and (max-width: 600px) {
  .msg .img01 {
    margin: -46px auto 0;
  }
}
.msg .img01 img {
  margin: 0 auto;
}
.msg .arrow {
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .msg .arrow {
    width: 100px;
    margin: 28px auto;
  }
}
.msg .arrow img {
  margin: 0 auto;
}
.msg .cont_ttl {
  background-color: #00698C;
  padding: 10px 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
  letter-spacing: 0.96px;
  border-radius: 40px;
  z-index: 2;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #FAF7F4;
}
@media screen and (max-width: 1024px) {
  .msg .cont_ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .msg .cont_ttl {
    border-radius: 82px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 23.4px */
    letter-spacing: 0.54px;
  }
}
@media screen and (max-width: 365px) {
  .msg .cont_ttl {
    font-size: 16px;
    padding: 10px 30px;
  }
}
.msg .cont_ttl .flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .msg .cont_ttl .flex {
    flex-direction: column;
    align-items: center;
  }
}
.msg .cont_ttl .big {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 52px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1024px) {
  .msg .cont_ttl .big {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .msg .cont_ttl .big {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 31.2px */
    letter-spacing: 0.72px;
  }
}
@media screen and (max-width: 365px) {
  .msg .cont_ttl .big {
    font-size: 20px;
  }
}
.msg .msg_box {
  border-radius: 20px;
  border: 5px solid #00698C;
  background: #FAF7F4;
  padding: 90px 30px 58px;
  max-width: 1000px;
  margin: -30px auto 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .msg .msg_box {
    border-radius: 14px;
    padding: 80px 20px 30px;
  }
}
.msg .msg_box .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 824px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .msg .msg_box .flex {
    flex-direction: column;
  }
}
.msg .msg_box .img_area {
  width: 50%;
  padding-right: 6%;
}
@media screen and (max-width: 600px) {
  .msg .msg_box .img_area {
    width: 100%;
    padding-right: 0%;
    margin-bottom: 30px;
  }
}
.msg .msg_box .img_area img {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 600px) {
  .msg .msg_box .img_area img {
    margin: 0 auto;
  }
}
.msg .msg_box .text_area {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .msg .msg_box .text_area {
    width: 100%;
  }
}
.msg .msg_box .text_area .ttl {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.72px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .msg .msg_box .text_area .ttl {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 26px */
    letter-spacing: 0.6px;
  }
}
.msg .msg_box .text_area .text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.48px;
}

/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
/* ===================================
reason
=================================== */
.reason .cont_list li {
  display: flex;
  padding: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #FAF7F4;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li {
    border-radius: 14px;
    padding: 24px 20px 30px;
  }
}
@media screen and (max-width: 600px) {
  .reason .cont_list li:nth-child(odd) {
    flex-direction: column;
  }
}
.reason .cont_list li:nth-child(odd) .text_area {
  width: 67%;
  padding-left: 50px;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li:nth-child(odd) .text_area {
    width: 100%;
    padding-left: 0px;
  }
}
.reason .cont_list li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li:nth-child(even) {
    flex-direction: column;
  }
}
.reason .cont_list li:nth-child(even) .text_area {
  width: 67%;
  padding-right: 50px;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li:nth-child(even) .text_area {
    width: 100%;
    padding-right: 0px;
  }
}
.reason .cont_list li:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.reason .cont_list li .img_area {
  width: 33%;
  max-width: 300px;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li .img_area {
    max-width: initial;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .reason .cont_list li .img_area img {
    width: 100%;
  }
}
.reason .cont_list li .ttl {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 33.8px */
  letter-spacing: 0.78px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .reason .cont_list li .ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .reason .cont_list li .ttl {
    font-size: 20px;
    margin-bottom: 22px;
    letter-spacing: 0px;
  }
}
.reason .cont_list li .ttl::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-top;
}
@media screen and (max-width: 600px) {
  .reason .cont_list li .ttl::before {
    display: block;
    margin-right: 0px;
    margin-bottom: 5px;
  }
}
.reason .cont_list li .ttl01::before {
  content: "";
  background-image: url(../img/ico_reason01.svg);
}
.reason .cont_list li .ttl02::before {
  content: "";
  background-image: url(../img/ico_reason02.svg);
}
.reason .cont_list li .ttl03::before {
  content: "";
  background-image: url(../img/ico_reason03.svg);
}
.reason .cont_list li .ttl04::before {
  content: "";
  background-image: url(../img/ico_reason04.svg);
}
.reason .cont_list li .text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.48px;
}
.reason .cont_list li .text .blue {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.54px;
  color: #00698C;
}

/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
/* ===================================
difference
=================================== */
.difference {
  background: rgba(250, 247, 244, 0.6);
  position: relative;
}
.difference::before {
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../img/dif_brush.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: absolute;
  top: -42px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .difference::before {
    height: 12px;
    background-image: url(../img/dif_brush_sp.svg);
    top: -12px;
  }
}
.difference .flex {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .difference .flex {
    flex-direction: column;
    align-items: center;
  }
}
.difference .dif_box {
  width: 48%;
  border-radius: 20px;
  min-height: 366px;
}
@media screen and (max-width: 1024px) {
  .difference .dif_box {
    width: 100%;
    max-width: 800px;
  }
}
@media screen and (max-width: 600px) {
  .difference .dif_box {
    min-height: initial;
  }
}
.difference .dif_box.white {
  background-color: #FAF7F4;
  padding: 50px 30px;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.white {
    padding: 30px 24px 40px;
  }
}
.difference .dif_box.white .cont_ttl {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.72px;
  margin-bottom: 54px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.white .cont_ttl {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 26px */
    letter-spacing: 0.6px;
    margin-bottom: 28px;
  }
}
.difference .dif_box.white .cont_list li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.48px;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.difference .dif_box.white .cont_list li span {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.54px;
  background: linear-gradient(transparent 60%, rgba(44, 37, 35, 0.2) 60%);
}
.difference .dif_box.white .cont_list li:not(:last-child) {
  margin-bottom: 20px;
}
.difference .dif_box.white .cont_list li:before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/ico_bad.svg);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.difference .dif_box.blue {
  background-color: #00698C;
  color: #FAF7F4;
  padding: 32px 30px;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue {
    padding: 40px 24px 50px;
  }
}
.difference .dif_box.blue .cont_ttl {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
  letter-spacing: 0.96px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_ttl {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 31.2px */
    letter-spacing: 0.72px;
    margin-bottom: 30px;
  }
}
.difference .dif_box.blue .cont_ttl::before {
  content: "";
  width: 64px;
  height: 60px;
  background-image: url(../img/reason_ttl01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 0px;
  vertical-align: text-bottom;
}
@media (max-width: 1100px) {
  .difference .dif_box.blue .cont_ttl::before {
    width: 54px;
  }
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_ttl::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 365px) {
  .difference .dif_box.blue .cont_ttl::before {
    display: none;
  }
}
.difference .dif_box.blue .cont_ttl::after {
  content: "";
  width: 52px;
  height: 58px;
  background-image: url(../img/reason_ttl02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-left: 0px;
  vertical-align: text-bottom;
}
@media (max-width: 1100px) {
  .difference .dif_box.blue .cont_ttl::after {
    width: 42px;
  }
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_ttl::after {
    width: 30px;
    height: 40px;
  }
}
@media screen and (max-width: 365px) {
  .difference .dif_box.blue .cont_ttl::after {
    display: none;
  }
}
.difference .dif_box.blue .cont_ttl .border {
  border-bottom: 4px solid #FAF7F4;
  margin: 0 5px;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_ttl .border {
    border-bottom: 3px solid #FAF7F4;
  }
}
.difference .dif_box.blue .cont_ttl .big {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 46.8px */
  letter-spacing: 1.08px;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_ttl .big {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 41.6px */
    letter-spacing: 0.96px;
  }
}
.difference .dif_box.blue .cont_list li {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.54px;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.difference .dif_box.blue .cont_list li:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_list li:not(:last-child) {
    margin-bottom: 34px;
    font-size: 16px;
  }
}
.difference .dif_box.blue .cont_list li span {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.72px;
  background: linear-gradient(transparent 60%, rgba(250, 247, 244, 0.2) 60%);
}
@media screen and (max-width: 600px) {
  .difference .dif_box.blue .cont_list li span {
    font-size: 20px;
  }
}
.difference .dif_box.blue .cont_list li:before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/ico_good.svg);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.difference .arrow {
  width: 8%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .difference .arrow {
    width: 100%;
    transform: rotate(90deg);
    margin: 30px 0;
  }
}
@media screen and (max-width: 600px) {
  .difference .arrow {
    margin: 20px auto;
    width: 36px;
  }
}
.difference .arrow img {
  margin: 0 auto;
}
.difference .dif_msg {
  max-width: 1000px;
  margin: 0 auto;
}
.difference .dif_msg .cont_img {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .difference .dif_msg .cont_img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .difference .dif_msg .cont_img {
    margin: 26px -20px 12px;
  }
}
.difference .dif_msg .cont_ttl {
  background-color: #00698C;
  padding: 14px 60px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.72px;
  border-radius: 100px;
  z-index: 2;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #FAF7F4;
  margin-top: -50px;
}
@media screen and (max-width: 600px) {
  .difference .dif_msg .cont_ttl {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 26px */
    letter-spacing: 0.6px;
    padding: 12px 40px;
    margin-top: -50px;
  }
}
.difference .dif_msg .cont_ttl .big {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 600px) {
  .difference .dif_msg .cont_ttl .big {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 26px */
    letter-spacing: 0.6px;
  }
}
.difference .dif_msg .cont_wrap {
  margin: -50px auto 0;
  padding: 108px 96px 64px;
  border-radius: 20px;
  border: 5px solid #00698C;
  background: #FAF7F4;
  background-image: url(../img/dif_map.png);
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .difference .dif_msg .cont_wrap {
    background-image: url(../img/dif_map_sp.png);
    margin: -38px auto 0;
    padding: 0px 20px 30px;
    border-radius: 14px;
  }
}
.difference .dif_msg .text_area {
  width: 56%;
  margin-left: 44%;
}
@media screen and (max-width: 1024px) {
  .difference .dif_msg .text_area {
    width: 50%;
    margin-left: 50%;
  }
}
@media screen and (max-width: 600px) {
  .difference .dif_msg .text_area {
    width: 100%;
    margin-top: 306px;
    margin-left: 0%;
  }
}
.difference .dif_msg .text_area .ttl {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.72px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .difference .dif_msg .text_area .ttl {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 26px */
    letter-spacing: 0.6px;
  }
}
.difference .dif_msg .text_area .text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.48px;
}

/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
/* ===================================
flow
=================================== */
.flow {
  background: #ddecf0;
  position: relative;
}
.flow::after {
  content: "";
  width: 100%;
  height: 42px;
  background-image: url(../img/msg_brush.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: absolute;
  bottom: -42px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .flow::after {
    height: 12px;
    background-image: url(../img/msg_brush_sp.svg);
    bottom: -12px;
  }
}
.flow .flow_list li {
  position: relative;
}
.flow .flow_list li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.flow .flow_list li:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 84px);
  border-left: #00698C 3px solid;
  top: 110px;
  left: 48px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list li:not(:last-child)::before {
    display: none;
  }
}
.flow .flow_list .flex {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list .flex {
    margin-bottom: 16px;
    justify-content: flex-start;
    align-items: center;
  }
}
.flow .flow_list .flow_num {
  border-radius: 50%;
  background-color: #00698C;
  width: 100px;
  height: 100px;
  padding: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .flow .flow_list .flow_num {
    width: 70px;
    height: 70px;
  }
}
.flow .flow_list .num_img {
  width: 50px;
  height: 50px;
}
.flow .flow_list .text_area {
  margin-left: 40px;
  width: calc(100% - 140px);
  height: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list .text_area {
    margin-left: 15px;
    width: calc(100% - 95px);
    height: 100%;
    margin-bottom: 0px;
    margin-top: 10px;
  }
}
.flow .flow_list .text_area h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list .text_area h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 20px */
    letter-spacing: 0.6px;
  }
}
.flow .flow_list .num_text {
  color: #FAF7F4;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.42px;
  margin-bottom: 6px;
  text-align: center;
}
.flow .flow_list .num_text .big {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list .num_text {
    color: #00698C;
  }
}
.flow .flow_list .cont_wrap {
  padding: 20px 40px;
  background-color: #FAF7F4;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .flow .flow_list .cont_wrap {
    padding: 20px;
  }
}
.flow .flow_list .cont_text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
}
.flow .flow_list .btn_wrap {
  margin: 20px 0 10px;
}
@media screen and (max-width: 1024px) {
  .flow .flow_list .btn_wrap .btn {
    width: 100%;
  }
}
.flow .flow_list .btn_wrap .btn.tel {
  background-color: #FF5C28;
  color: #FAF7F4;
  position: relative;
  z-index: 1;
  box-shadow: 6px 6px 0px 0px #F2DEC8;
}
.flow .flow_list .btn_wrap .btn.tel:hover {
  box-shadow: 0px 0px 0px 0px #F2DEC8;
  transform: translate(6px, 6px);
}
.flow .flow_list .btn_wrap .btn.line {
  box-shadow: 6px 6px 0px 0px #F2DEC8;
}
.flow .flow_list .btn_wrap .btn.line:hover {
  box-shadow: 0px 0px 0px 0px #F2DEC8;
  transform: translate(6px, 6px);
}
.flow .flow_list .btn_wrap .btn.mail a .s, .flow .flow_list .btn_wrap .btn.line a .s {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
}
.flow .flow_list .btn_wrap .btn.mail a .m, .flow .flow_list .btn_wrap .btn.line a .m {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
/* ===================================
faq
=================================== */
.faq .c-aco_wrap {
  border: 3px solid #00698C;
  background-color: #FAF7F4;
  position: relative;
  letter-spacing: 0.8px;
  border-radius: 10px;
  box-shadow: 4px 4px 0px 0px #00698C;
}
.faq .c-aco_wrap:not(:last-child) {
  margin-bottom: 30px;
}
.faq .c-aco_wrap .c-ttl {
  color: #00698C;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 32px */
  letter-spacing: 0.6px;
  padding: 20px 48px 20px 58px;
  text-indent: -1.5em;
}
@media screen and (max-width: 600px) {
  .faq .c-aco_wrap .c-ttl {
    padding: 20px 40px 20px 48px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 23.4px */
    letter-spacing: 0.54px;
  }
}
.faq .c-aco_wrap .c-ttl::before {
  content: "Q";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
  color: #00698C;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .faq .c-aco_wrap .c-ttl::before {
    font-size: 20px;
  }
}
.faq .c-aco_wrap .c-aco_ttl {
  position: relative;
  cursor: pointer;
}
.faq .c-aco_wrap .c-aco_ttl::before,
.faq .c-aco_wrap .c-aco_ttl::after {
  content: "";
  width: 15px;
  height: 3px;
  background-color: #00698C;
  transition: 0.5s;
  position: absolute;
  top: 34px;
  right: 28px;
}
@media screen and (max-width: 600px) {
  .faq .c-aco_wrap .c-aco_ttl::before,
.faq .c-aco_wrap .c-aco_ttl::after {
    right: 20px;
    top: 30px;
  }
}
.faq .c-aco_wrap .c-aco_ttl::after {
  transform: rotate(90deg);
}
.faq .c-aco_wrap .c-aco_ttl.open:after {
  transform: rotate(0);
}
.faq .c-aco_wrap .c-aco_item {
  display: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
  padding: 0px 30px 20px;
}
@media screen and (max-width: 600px) {
  .faq .c-aco_wrap .c-aco_item {
    padding: 4px 20px 20px;
  }
}

/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
/* ===================================
form
=================================== */
.form {
  color: #FAF7F4;
}
.form .formWrapper {
  max-width: 800px;
  margin: 0 auto;
}


.contacts_btn {
    background-image: linear-gradient(135deg, #ff9a86, #ff5463 68%, #ff4a63);
    width: 800px;
    height: 120px;
    margin: 0 auto;
    border-radius: 10px;
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: -7px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .3s;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.1));
}
.contacts_btn::before {
    content: "";
    width: 120%;
    position: absolute;
    top: 0;
    right: -120px;
    z-index: -1;
    border-right: 120px solid transparent;
    border-bottom: 120px solid #fff;
    transform: translateX(-100%);
    transition: transform ease .3s;
}
.contacts_btn::after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(../image/contacts_btn_arrow.png) no-repeat center / 100%;
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translate(0%, -50%);
}

.contacts_btn:hover {
    opacity: 1;
    outline: 2px solid rgba(255, 84, 99, 0.7);
}
.contacts_btn:hover span {
    display: inline-block;
    background: linear-gradient(135deg, #ff9a86 0%, #ff4a63 100%);
    background: -webkit-linear-gradient(-45deg, #ff9a86 0%, #ff4a63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contacts_btn span {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}


.support-flex {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    border-radius: 20px;
    background-color: #FAF7F4;
}
.support-flex:not(:last-child) {
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .support-flex {
        flex-direction:column-reverse;
        position: relative;
    }
}

.support-flex-text {
    width: 59.8684%
}

@media screen and (max-width: 768px) {
    .support-flex-text {
        width:100%;
        margin-top: 20px
    }
}

.support-flex-text h3 {
    color: #00698c;
    padding-bottom: 10px;
    font-size: 28px;
    letter-spacing: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center right;
    border-bottom: solid 1px #00698c;
    padding-top: 10px;
    margin-right: 7px
}

@media screen and (max-width: 1222px) {
    .support-flex-text h3 {
        font-size:22px
    }
}

@media screen and (max-width: 768px) {
    .support-flex-text h3 {
        padding-bottom:15px
    }
}

@media screen and (max-width: 568px) {
    .support-flex-text h3 {
        font-size:18px
    }
}

.support-flex-text h3 span {
    margin-top: -10px;
    font-size: 60px;
    margin-right: 15px;
    line-height: 1.2;
    display: block
}

@media screen and (max-width: 768px) {
    .support-flex-text h3 span {
        font-size:40px
    }
}

@media screen and (max-width: 568px) {
    .support-flex-text h3 span {
        font-size:35px
    }
}

.support-flex-text h4 {
    font-size: 26px;
    letter-spacing: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center right;
    padding-top: 10px;
    margin-right: 7px
}

@media screen and (max-width: 1222px) {
    .support-flex-text h4 {
        font-size:20px
    }
}

@media screen and (max-width: 768px) {
    .support-flex-text h4 {
        padding-bottom:13px
    }
}

@media screen and (max-width: 568px) {
    .support-flex-text h4 {
        font-size:16px
    }
}

.support-flex-text p {
    margin-top: 6px
}

.support-flex-img {
    width: 35.714%
}
.support-flex-img img {
   border-radius: 15px;
}

@media screen and (max-width: 768px) {
    .support-flex-img {
         width: 35%;
        position: absolute;
        right: 0;
        top: -10px;
    }
    }

@media screen and (max-width: 600px) {
    .support-flex-img {
        width: 100%;
        position: static;
    }
    }

.support-flex:nth-of-type(odd) {
    flex-direction: row-reverse
}

@media screen and (max-width: 768px) {
    .support-flex:nth-of-type(odd) {
        flex-direction:column-reverse
    }
}
.support-flex-text p span {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.54px;
    color: rgb(0, 105, 140);
}

.support-list {
    display: flex;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px
}

.support-list-item {
    width: 170px;
    height: 170px;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
    background: #F9F7F1;
    font-weight: 700;
    line-height: 20px;
}
.item02 {
    width: 300px;
}

@media screen and (max-width: 768px) {
    .support-list-item {
        width:30%
    }
}

@media screen and (max-width: 568px) {
    .support-list-item {
        width:48%;
        height: auto;
        margin-top: 10px
    }
}

.support-list-item-icon {
    margin: 10px auto 0;
    width: 96px;
}

@media screen and (max-width: 568px) {
    .support-list-item-icon {
        width:85px
    }
}

.support-list-item-textSmall {
    font-size: 13px;
    line-height: 1.46;
    margin-top: -12px
}

.mt-60{
  margin-top: 60px!important;
}

.requirement .support-flex-text p {
    margin-top: 6px;
    font-size: 24px;
    font-weight: 700;
}
.requirement .support-flex-text ul {
    margin-top: 6px;
    font-size: 24px;
    font-weight: 700;
    list-style: inside;
}
.requirement .support-flex-text {
    width: 100%;
}
.requirement .support-flex-text .text-blue {
    color: rgb(0, 105, 140);
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.54px;
    font-size: 24px;
}
@media screen and (max-width: 600px) {
.requirement  .support-flex {
    padding: 10px 20px 30px 20px;
}
.requirement li{
  font-size: 16px;
}
.support-flex:not(:last-child) {
    margin-bottom: 20px;
}
.requirement .support-flex-text p{
    font-size: 16px;
}
.requirement .support-flex-text .text-blue {
    font-size: 16px;
}
}



#mv {
    position: relative;
    padding: 33px 0 30px;
    overflow: hidden;
    background: rgba(250, 247, 244, 0.6);

}
@media screen and (min-width: 1201px) {
    #mv {
        padding-bottom: 100px;
    }
}
@media (min-width: 1101px) {
    #mv {
        padding: 55px 0 60px;
    }
}
@media (min-width: 751px) {
    #mv {
        padding: 55px 0 60px;
    }
}



#mv .building {
    position: absolute;
    width: 36vw;
    max-width: 295px;
    bottom: 0;
    right: 0;
    z-index: 5;
}
@media (min-width: 751px) {
    #mv .building {
        width: 20vw;
        right: 0;
    }
}
@media (min-width: 1101px) {
    #mv .building {
        position: absolute;
        max-width: 20vw;
        bottom: 0;
        right: 30px;
    }
}
@media (min-width: 1521px) {
    #mv .building {
        right: calc(50% - 760px);
    }
}
.image img {
    width: 100%;
}

#mv .inner {
        margin: 0 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 751px) {
   #mv .inner {
        max-width: 1292px;
        margin: 0 40px;
    }
}
@media (min-width: 1101px) {
    #mv .inner {
        margin: 0 auto;
    }
}
@media (min-width: 1521px) {
    #mv .inner {
        margin: 0 auto;
    }
}

@media (min-width: 751px) {
    #mv .pc_cols {
        position: relative;
    }
}
@media (max-width: 750px) {
    #mv .pc_cols {
        position: relative;
    }
}
@media (max-width: 750px) {
    #mv .col:nth-child(1) {
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 751px) {
    #mv .texts {
        position: relative;
        z-index: 1;
        padding-top: 20px;
    }
}
@media (min-width: 1101px) {
    #mv .texts {
        margin-left: 7.5vw;
    }
}



#mv .white_lead {
    border: 2px solid #000;
    border-radius: 3px;
    background: #fff;
    padding: 2px 7px;
    display: inline-block;
    position: relative;
    font-size: 19px;
    font-weight: bold;
    line-height: 1;
}
@media (min-width: 751px) {
    #mv .white_lead {
        border: 3px solid #000;
        background: #fff;
        padding: 10px 10px;
        display: inline-block;
        position: relative;
        font-size: 3.75vw;
        font-weight: bold;
        line-height: 1;
    }
}
@media (max-width: 750px) {
    #mv .white_lead {
        height: 30px;
        line-height: 22px;
    }
}
@media (min-width: 751px) {
    #mv .white_lead:nth-of-type(1) {
        margin-bottom: 12px;
    }
}

#mv .white_lead:nth-of-type(1) {
    margin-bottom: 5px;
}
@media (min-width: 1101px) {
    #mv .white_lead {
        border: 3px solid #000;
        background: #fff;
        padding: 10px 20px;
        display: inline-block;
        position: relative;
        font-size: 48px;
        font-weight: bold;
        line-height: 1;
    }
}
@media (max-width: 750px) {
    #mv .white_lead span {
        line-height: 22px;
    }
}

#mv .white_lead span.min {
    font-size: 16px;
}
@media (min-width: 751px) {
    #mv .white_lead span.min {
        font-size: 3.281vw;
    }
}
@media (max-width: 750px) {
    #mv .white_lead span {
        line-height: 22px;
    }
}
@media (min-width: 1101px) {
    #mv .white_lead span.min {
        font-size: 42px;
    }
}

@media (min-width: 751px) {
    #mv .top_mv_title {
        width: 52.516vw;
        max-width: 621.68px;
        margin-top: 2.578%;
    }
}
@media (max-width: 750px) {
    #mv .top_mv_title {
        margin: 18px -10px 0 0;
        width: 75vw;
    }
}
@media (min-width: 1101px) {
    #mv .top_mv_title {
        width: 40.8553vw;
        margin-top: 33px;
    }
}

@media (min-width: 751px) {
    #mv .kv {
        position: absolute;
        right: 0;
        top: 0;
        width: 60%;
        z-index: 0;
    }
}
@media (min-width: 1101px) {
    #mv .kv {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        z-index: 0;
    }
}

#mv .mv_frame {
    border-radius: 10px;
    border: 5px solid #ffffff;
    -webkit-box-shadow: 2px 2px 0 #ffffff;
    box-shadow: 2px 2px 0 #ffffff;
}

#mv .catchs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px auto 0;
    max-width: 792px;
    position: relative;
    z-index: 10;
}
@media (min-width: 751px) {
    #mv .catchs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 4vw auto 0;
        width: 65%;
        max-width: 792px;
    }
}
@media (min-width: 1101px) {
    #mv .catchs {
        width: 52.1053vw; 
    }
}

@media (min-width: 751px) {
    #mv .catchs .catch {
        width: 30.8%;
    }
}

#mv .catchs .catch {
    width: 32%;
}

#mv .catchs .catch img {
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.23);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.23);
}
@media (min-width: 751px) {
    #mv .catchs .catch img {
        width: 100%;
        border-radius: 5px;
        -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.23);
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.23);
    }
}

@media (max-width: 750px) {
    #mv.pc_cols .col:nth-child(1) {
        position: relative;
        z-index: 1;
    }
}
@media (max-width: 750px) {
    #mv .pc_cols .col:nth-child(2) {
        position: absolute;
        width: 250px;
        right: -55px;
        top: -18px;
        z-index: 0;
    }
}


.problem_box{
	background-color: #FAF7F4;
	padding: 70px 20px 100px;
	border-radius: 30px;
  text-align: center;
  margin-bottom: 120px;
}

.problem h2 {
	margin-bottom: 60px;
	font-size: 3rem;
	line-height: 1.5;
  font-weight: 700;
}
.problem h2 span{
  font-size: 150%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 80%, rgb(255 232 80) 80%);
}
@media (max-width: 768px) {
.problem h2 {
	font-size: 2.3rem;
}
}
.problem ul {
	display: flex;
	margin: auto;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 85px;
  gap: 20px;
  row-gap: 80px;
  margin-bottom: 50px;
}
.problem ul li {
	line-height: 1.75;
	font-weight: 700;
  width: 30%;
  padding: 30px 20px 20px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 7px 7px 0 #00698C;
  border: solid 3px #00698C;
  position: relative;
}
.problem ul li .case{
    position: absolute;
    font-size: 19px;
    font-weight: bold;
    line-height: 37px;
    width: 113px;
    background: #fff;
    border: 2px solid #00698C;
    -webkit-box-shadow: 2px 1px 0 #282828;
    box-shadow: 2px 1px 0 #00698C;
    text-align: center;
    border-radius: 10px;
    left: -3px;
    top: -24px;
    color: #00698C;
}
.problem ul li span {
	font-size: 20px;
}
.problem ul span {
	display: block;
}
.problem ul .ico {
	display: inline-block;
	margin-bottom: 15px;
	background-color: #fff;
	border-radius: 100%;
}
.problem .lead {
	margin: 50px 0;
	font-size: 3rem;
	line-height: 1.73;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.problem .lead span {
	background: linear-gradient(180deg, rgba(255,255,255,0) 77%, #ffe850 77%);
}
@media screen and (max-width: 768px) {
	.problem h2 {
		margin-bottom: 30px;
		font-size: 2rem;  
	}
	.problem ul {
		flex-wrap: wrap;
		justify-content: center;
    row-gap: 45px;
	}
	.problem ul li {
		width: 46%;
		margin-bottom: 15px;
		font-size: 1.2rem;
	}
  .problem ul li span {
	font-size: 16px;
}
	.problem ul .ico {
		max-width: 80px;
		margin-bottom: 10px;
	}
	.problem .lead {
		margin: 15px 0 30px;
		font-size: 6vw;
		letter-spacing: 0;
	}
}
@media screen and (max-width: 600px) {
  .problem ul li {
		width: 100%;
	}
  .problem ul li span {
	font-size: 20px;
}
.problem .lead {
        font-size: 7vw;
    }
}
.problem .logo-intext{
  display: inline-block;
  height: 1em;
  width: auto;
  vertical-align: -0.12em;
  margin: 0 .2em 0 .05em;
}
.problem .lockup{ white-space: nowrap; }
.problem img.logo-intext{ display:inline-block !important; }


.voice ul{
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
.voice ul {
  display: block;
}
}
.voice-box {
    padding: 40px;
    border-radius: 20px;
    background-color: #FAF7F4;
    width: 48%;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
.voice-box {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
}
}
@media screen and (max-width: 600px) {
.voice-box {
  display: block;
}
}


.voice-box-text h3 {
    color: #00698c;
    padding-bottom: 10px;
    font-size: 23px;
    letter-spacing: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center right;
    border-bottom: solid 1px #00698c;
    padding-top: 10px;
    margin-right: 7px
}

@media screen and (max-width: 1222px) {
    .voice-box-text h3 {
        font-size:20px
    }
}

@media screen and (max-width: 768px) {
    .voice-box-text h3 {
        padding-bottom:15px
    }
}

@media screen and (max-width: 568px) {
    .voice-box-text h3 {
        font-size:18px
    }
}

.voice-box-text h3 span {
    margin-top: -10px;
    font-size: 60px;
    margin-right: 15px;
    line-height: 1.2;
    display: block
}

@media screen and (max-width: 768px) {
    .voice-box-text h3 span {
        font-size:40px
    }
}

@media screen and (max-width: 568px) {
    .voice-box-text h3 span {
        font-size:35px
    }
}

.voice-box-text h4 {
    font-size: 20px;
    letter-spacing: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center right;
    padding-top: 10px;
    margin-right: 7px
}

@media screen and (max-width: 1222px) {
    .voice-box-text h4 {
        font-size:20px
    }
}

@media screen and (max-width: 568px) {
    .voice-box-text h4 {
        font-size:16px
    }
}

@media screen and (max-width: 768px) {
.voice-box-text {
  width: 60%;
}
}
@media screen and (max-width: 600px) {
.voice-box-text {
  width: 100%;
}
}

.voice-box-text p {
    font-size: 16px;
}
@media screen and (max-width: 768px) {
.voice-box-img {
  width: 38%;
}
}
@media screen and (max-width: 600px) {
.voice-box-img {
  width: 100%;
}
}

.voice-box-img img {
   border-radius: 15px;
}

.voice-box-text p span {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.54px;
    color: rgb(0, 105, 140);
}

.voice-list {
    display: flex;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px
}

.voice-list-item {
    width: 170px;
    height: 170px;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
    background: #F9F7F1;
    font-weight: 700;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    .voice-list-item {
        width:30%
    }
}

@media screen and (max-width: 568px) {
    .voice-list-item {
        width:32%;
        height: auto;
        margin-top: 10px
    }
}



.secFlow__item {
    background-color: #fff;
    border-radius: 20px;
    height: 200px;
    position: relative;
    padding-left: 105px;
    padding-right: 50px;
    display: grid;
    place-content: center start;
}
@media screen and (max-width: 768px) {
.secFlow__item {
    padding-left: 100px;
    }
}
@media screen and (max-width: 600px) {
    .secFlow__item {
       padding: 0 12px 0 60px;
    }
}
.secFlow__item:not(:last-child) {
    margin-bottom: 40px;
}
.secFlow__num {
    position: absolute;
    left: -20px;
    top: -20px;
    background: #00698c;
    width: 110px;
    height: 110px;
    border-radius: 85px;
    display: grid;
    place-items: center;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0;
}
@media screen and (max-width: 768px) {
.secFlow__num {
    width: 90px;
    height: 90px;
    left: -5px;
    top: -10px;
    font-size: 40px;
    }
}
@media screen and (max-width: 600px) {
.secFlow__num {
        width: 60px;
        height: 60px;
        left: -7px;
        top: -10px;
        font-size: 28px;
    }
}
.secFlow__num div{
    margin-bottom: -40px;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
.secFlow__num div {
    margin-bottom: -32px;
    font-size: 20px;
}
}
@media screen and (max-width: 600px) {
    .secFlow__num div {
        margin-bottom: -30px;
        font-size: 14px;
    }
}
.secFlow__ttl {
    font-size: 28px;
    font-weight: bold;
    color: #00698c;
    margin-bottom: 14px;
}
@media screen and (max-width: 600px) {
.secFlow__ttl {
    font-size: 22px;
}
}
.secFlow__txt {
    font-size: 18px;
    line-height: 1.88;
    font-weight: 700;
}
@media screen and (max-width: 600px) {
.secFlow__txt {
    font-size: 14px;
}
}
.secFlow__txt a {
    color: #00cbc7;
    text-decoration: underline;
    text-underline-offset: 7px;
    font-weight: bold;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100%;
    height: 72px;
    padding: 0 20px;
    background: #FFF;
    border-bottom: solid 3px #00698C;
}
@media screen and (min-width: 921px) {
    .header {
        justify-content: space-between;
        padding: 0 40px;
    }
}
.header .nav {
    display: none;
}
@media screen and (min-width: 921px) {
    .header .nav {
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 921px) {
    .header .nav ul {
        display: flex;
        list-style: none;
    }
}


.header .nav ul li {
        display: inline-block;
        margin-right: 32px;
        font-weight: bold;
        font-size: 18px;
    }
@media screen and (max-width: 1204px) {
    .header .nav ul li {
        font-size: 14px;  
        margin-right: 22px;
    }
}

@media screen and (min-width: 921px) {
    .header .nav ul li a {
        color: #004055;
        text-decoration: none;
    }
}

.btn {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    border: 2px solid #000000;
    border-radius: 100px;
    box-shadow: 2px 2px 0 0 #000000;
    background: var(--white);
    color: var(--gray);
    font-weight: bold;
    text-decoration: none;
    transition: all .2s;
}
@media screen and (min-width: 921px) {
    .btn {
        padding: 8px 24px;
    }
}
.btn:hover {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
    box-shadow: none;
}

.btn.btn-s {
    padding: 8px 16px;
    font-size: 18px;
}
@media screen and (max-width: 1204px) {
.btn.btn-s {
    font-size: 14px;
}
}
@media screen and (min-width: 921px) {
    .btn.btn-s {
        padding: 8px 24px;
    }
}
.btn.btn-dl {
    background: rgb(0, 105, 140);
    color: #fff;
}
.btn.btn-tel {
    background: rgb(255 245 193);
    color: #000000;
}

.icn {
    display: inline-block;
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}
.icn.icn-dl {
    background: url(../img/icn-mail.svg);
    filter: brightness(0) invert(1);
}
.icn.icn-tel {
    background: url(../img/icn-tel.svg);
}


.header .hamburger {
    display: block;
}
@media screen and (min-width: 921px) {
    .header .hamburger {
        display: none;
    }
}

.header .hamburger a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 24px;
    height: 18px;
}
.header .hamburger a span {
    display: block;
    width: 100%;
    height: 2px;
    background: #00698c;
}





/* モーダルメニューのスタイル */
.modal-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(221 236 240);;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-menu.show {
  opacity: 1;
  visibility: visible;
}

.modal-menu .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #004055;
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
}

.modal-menu .menu-content {
  text-align: center;
  color: white;
}

.modal-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-menu ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal-menu.show ul li {
  opacity: 1;
  transform: translateY(0);
}

.modal-menu.show ul li:nth-child(1) { transition-delay: 0.1s; }
.modal-menu.show ul li:nth-child(2) { transition-delay: 0.15s; }
.modal-menu.show ul li:nth-child(3) { transition-delay: 0.2s; }
.modal-menu.show ul li:nth-child(4) { transition-delay: 0.25s; }
.modal-menu.show ul li:nth-child(5) { transition-delay: 0.3s; }
.modal-menu.show ul li:nth-child(6) { transition-delay: 0.35s; }

.modal-menu ul li a {
  color: #004055;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px 20px;
  transition: color 0.3s ease;
  font-weight: 700;
}

.modal-menu ul li a:hover {
  color: #ccc;
}

.modal-menu .btn {
  display: inline-block;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 30px;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: rgb(0, 105, 140);
  border-radius: 30px;
}

.modal-menu.show .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.modal-menu .btn:hover {
  background: #0056b3;
}



#top_movie {
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40%;
    z-index: 10;
    /*margin-right: 30px;*/
    margin: 10px auto 50px;
}
@media print, screen and (max-width: 768px) {
    #top_movie {
    width: 60%;
}
}
@media print, screen and (max-width: 426px) {
    #top_movie {
    width: 80%;
}
}
#top_movie .top_movie_wrap {
    background-color: #009ddf;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.33);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.33);
    padding: 10px;
}
#top_movie .top_movie_inner {
    position: relative;
}

.text.noMgn {
    margin-top: 0;
}
#top_movie .text {
    margin-bottom: 10px;
    text-align: center;
}
#top_movie .popup_youtube img {
    border-radius: 4px;
    width: 100%;
}

#top_movie span[class^=size] {
    color: #fff;
    font-weight: bold;
    letter-spacing: 0;
}

#top_movie .size17 {
    font-size: 17px;
}
#top_movie .size20 {
    font-size: 20px;
}

.row {
  /*
    display: flex;
    flex-flow: row wrap;*/
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}
.right-align {
    text-align: right;
}
@media print, screen and (min-width: 641px) {
    .medium-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.small-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.columns {
    flex: 1 1 0;
    min-width: initial;
    padding-right: 12px;
    padding-left: 12px;
}
.msg .columns{
 /* display: flex;
  align-items: center;*/
      margin-top: 20px;
}
.btn-box {
    display: block;
    margin: 0 auto;
}
.msg .btn-box {
    display: flex;
}
@media print, screen and (max-width: 600px) {
    .msg .btn-box {
    display: block;
}
.msg .btn-box a:nth-child(2){
    margin-top: 20px;
}
}
.msg .btn {
  width: 100%;
  line-height: 60px;
  font-size: 32px;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
    .msg .btn {
  font-size: 28px;
}
}
@media print, screen and (max-width: 670px) {
    .msg .btn {
  font-size: 24px;
}
}
.msg .icn {
    width: 32px;
    height: 32px;
}
@media print, screen and (max-width: 670px) {
    .msg .icn {
    width: 28px;
    height: 28px;
}
}
.msg .icn.icn-tel {
    width: 38px;
    height: 38px;
}

.msg .btn.btn-tel {
    font-size: 36px;
}
@media print, screen and (max-width: 768px) {
    .msg .btn.btn-tel {
    font-size: 32px;
}
.msg .icn.icn-tel {
    width: 32px;
    height: 38px;
}
}

@media print, screen and (max-width: 670px) {
    .msg .btn.btn-tel {
    font-size: 28px;
}
.msg .icn.icn-tel {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
}
}

.microcopy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
}
.copy-br{
  display: none;
}
@media print, screen and (max-width: 600px) {
  .microcopy {
    font-size: 1.2rem;
}
    .copy02 {
    line-height: 22px;
}
.copy-br{
  display: block;
}
}
@media screen and (min-width: 641px) {
    .microcopy {
        font-size: 1.6rem;
    }
}
.microcopy::before {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    margin-right: 16px;
}
.microcopy::after {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    margin-left: 16px;
}
.microcopy::before, .microcopy::after {
    width: 2px;
    height: 24px;
    background-color: #000;
    content: "";
}



    .video-modal {
        display: none;
        position: fixed; 
        inset: 0;
        z-index: 1000;
      }
      .video-modal__bg {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
      }
      .video-modal__content {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 800px;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
      }
      .video-modal__close {
        position: absolute;
        top: 8px; right: 8px;
        font-size: 24px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
      }
      .video-modal__inner {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
      }
      .video-modal__inner iframe {
        position: absolute;
        width: 100%; height: 100%;
        left: 0; top: 0;
      }

      .cta .btn{
        width: 48%;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
      }
      .cta .icn {
        width: 25px;
        height: 29px;
    }
      .cta .btn.btn-tel {
        font-size: 32px;
    }
      .cta .icn.icn-tel {
        width: 28px;
        height: 28px;
        background-size: 28px 28px;
    }

    @media screen and (max-width: 600px) {
      .cta .btn{
        width: 100%;
      }
      .cta .btn + .btn {
  margin-top: 30px;
}
    }

    .cta_bg{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url(../img/mv_bg.jpg) center / cover no-repeat;
    position: relative;
    padding: 40px 0;
    }
    .msg_bg{
    background-image: url(../img/msg_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    }
    .problem {
    background-color: #b3dfeb; 
    background-image: 
        url(../img/problem_bg.svg),
        url(../img/bg_white.png);      
    background-repeat: no-repeat, repeat;
    background-size: cover, 30px 30px;
    background-position: center, top left;
}
    .reason{
    background-image: url(../img/bg_white.png);
    background-size: 30px 30px;
    background-color: #b3dfeb;
    }
    .voice{
      background: #fff5c1;
    }
    .cta_box {
    padding: 0;
    /*background-color: #ebfaff; */
    background-image: linear-gradient(rgb(235 250 255 / 87%), rgb(235 250 255 / 87%)), url(../img/cta_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.support-bg{
    background-image: url(../img/bg_white.png);
    background-size: 30px 30px;
    background-color: #b3dfeb;
}
.requirement {
    background-color: #ddecf0; 
    background-image: url(../img/requirement_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.faq{
    background-color: #b1deeb;
}
.form{
    background-color: #00698c;
}


.priv-text {
    height: 300px;
    overflow-y: scroll;
    background: #fff;
    font-size: 1.3rem;
    line-height: 1.8;
    padding: 10px;
    box-sizing: border-box;
    color: #000000;
    font-size: 16px;
}
    @media screen and (max-width: 600px) {
 .priv-text {
    font-size: 13px;
}
    }


.pc-popup {
    display: block;
    position: fixed;
    bottom: 50px;
    right: 15px;
    z-index: 5;
    border-radius: 10px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);

    /* フェード&スライド表示 */
    opacity: 0;                  /* 初期は非表示 */
    transform: translateY(16px); /* 下から少し持ち上がる */
    pointer-events: none;        /* 非表示時はクリック無効 */
    transition: opacity .4s ease, transform .4s ease;
    will-change: opacity, transform;
}

/* 表示時（JSで付与） */
.pc-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media screen and (max-width: 920px) {
 .pc-popup {
    display: none;
}
}

.pc-popup .head {
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFF;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #009ddf;
    text-align: center;
}

.pc-popup .wrap {
    padding: 15px 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 0 0 10px 10px;
}

.pc-popup .desc {
    font-weight: 600;
}

.pc-popup .btn {
    width: 100%;
    text-align: center;
    margin: 10px auto 0;
    box-shadow: none;
    font-size: 18px;
    padding: 10px 30px;
    transition: all .3s cubic-bezier(.19,1,.22,1);
}

.pc-popup .mail {
    background: rgb(0, 105, 140);
    color: #fff;
}

.pc-popup .tel {
    background: rgb(255 245 193);
    color: #000000;
}

.pc-popup .icn.icn-tel {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
}

/* ×ボタン */
.pc-popup__close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: #00000047;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    /* opacity: .7; */
    transition: opacity .2s ease;
    border-radius: 20px;
    appearance: none;
    color: #ffffff;
}
.pc-popup__close:hover { opacity: 1; }
.pc-popup__close:focus-visible {
    outline: 2px solid rgba(0,0,0,.35);
    outline-offset: 2px;
}


.formWrapper .text_bold{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.03em;
    display: flex;
    margin-bottom: 14px;
    align-items: center;
}
.formWrapper input{
    width: 100%;
    background-color: #FAF7F4;
    font-weight: 700;
    font-family: sans-serif;
    border: none;
    height: 54px;
    padding: 14px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.03em;
    border-radius: 4px;
    margin-bottom: 30px;
}
.formWrapper select{
    width: 100%;
    background-color: #FAF7F4;
    font-weight: 700;
    font-family: sans-serif;
    border: none;
    height: 54px;
    padding: 14px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.03em;
    border-radius: 4px;
    margin-bottom: 30px;
}
.formWrapper  textarea {
    width: 100%;
    background-color: #FAF7F4;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.03em;
    border-radius: 4px;
    margin-bottom: 30px;
}

.formWrapper .check {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px -14px 0 14px;
    cursor: pointer;
    width: 100%;
}
.formWrapper input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: #FAF7F4;
    border-radius: 4px;
    box-shadow: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: -1px;
    left: -30px;
    padding: 0;
}
.bg_privacy{
  position: relative;
}
.formWrapper input[type=checkbox]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 5px;
    display: inline-block;
    width: 12px;
    height: 8px;
    border-left: 2px solid #2C2523;
    border-bottom: 2px solid #2C2523;
    transform: rotate(-54deg);
}
.bg_privacy label{
    margin-left: 7px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.03em;
}
.formWrapper .form_submit input {
    width: 300px;
    height: 70px;
    border-radius: 100px;
    background-color: #FAF7F4;
    color: #00698c;
    border: 3px solid #b1deeb;
    box-shadow: 2px 4px 0px 0px #b1deeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 34px auto 0;
    transition: 0.5s;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.hissu:after, .nini:after {
    display: inline-block;
    padding: 6px 6px;
    line-height: 1;
    margin-left: 10px;
    border-radius: 5px;
    vertical-align: 5px;
    font-size: 1rem;
    font-weight: bold;
}
.hissu:after {
    content: "必須";
    display: inline-block;
    background: #d95a5a;
    border: 1px solid #d95a5a;
    color: #fff;
}
.nini:after {
    content: "任意";
    display: inline-block;
    background: #d1d1d1;
    border: 1px solid #d1d1d1;
    color: #000;
}


.contact td.error {
    background: #ffcdd3;
    padding: 8px;
    display: block;
    margin-bottom: 15px;
}
.contact td .error {
    color: #e60012;
    padding-top: 10px;
    font-weight: 700;
}

.contact td.error input{
  margin-bottom: 0;
}
.privacy .error {
    display: inline-block;
    margin-top: 10px;
    color: #e60012;
    padding: 15px 15px;
    background: #ffcdd3;
    font-weight: 700;
}


.pref-table-3col { width: 100%; border-collapse: collapse; }
.pref-table-3col caption { caption-side: bottom; padding-top: .5em; font-weight: 600; }
.pref-table-3col th, .pref-table-3col td { border: 1px solid #ddd; padding: 6px 8px; background-color: #f7f8fa; }
.pref-table-3col th { background: #f7f8fa; text-align: left; }
.pref-table-3col td.num { text-align: center; background-color: #fff;}

