@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
thead,
th,
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;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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 #000;
  cursor: help;
}

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

input,
select {
  vertical-align: middle;
}

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

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

* {
  box-sizing: border-box;
}

.cta p.link{
margin: 2rem 0 0;
text-decoration:underline;
}
.link a{
color:#fff;
}
.link a:hover{
text-decoration:underline;
}

@media screen and (max-width: 480px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}

@media screen and (min-width: 480px) {
  .sp_only {
    display: none !important;
  }
  .pc_only {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic";
  color: #333;
  -webkit-text-size-adjust: 100%;
  max-width: 1920px;
}

section {
  padding: 70px 0;
}

section .s_hdr {
  display: flex;
  width: 100%;
  align-items: center;
}

section .inner {
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 70px;
}
@media screen and (max-width: 1000px) {
  section .inner {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 5% 0;
  }
  section .inner {
    padding: 0 3%;
  }
}

figure {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}

figure img {
  max-width: 100%;
  margin: 0 auto;
}

figure:last-child {
  margin-bottom: 0;
}

p {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.65em;
}

p:last-child {
  margin-bottom: 0;
}

.box_video {
  position: relative;
  width: 100%;
  height: 56.25%;
  padding: 56.25% 0 0 0;
  text-align: center;
}

.box_video .video_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  margin: 0 auto;
}

.box_video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ripple {
  position: relative;
  display: block;
}

.ripple img {
  max-width: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.ripple span {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 90%;
  height: 100%;
  margin: auto;
  -webkit-animation-name: rippleAnimation;
  animation-name: rippleAnimation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 100px;
  background-color: #fff072;
  box-shadow: 0 0 5px white;
}
.ripple1 span {
  background-color: #ed4578;
}
.ripple2 span {
  background-color: #01c300;
}

@-webkit-keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}

@keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}

.ripple2 {
  position: relative;
  display: block;
}

.ripple2 img {
  max-width: 100%;
  margin: 0 auto;
}

.ripple2 span.clr_1,
.ripple2 span.clr_2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
  -webkit-animation-name: rippleAnimation2;
  animation-name: rippleAnimation2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 100%;
  box-shadow: 0 0 45px 1px #ff004a inset;
}

.ripple2 span.clr_2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

@keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

.bounce {
  position: relative;
}

.bounce::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto auto;
  content: "";
  background: url(../img/down.png) no-repeat center top;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.Fade-In {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.Fade-In.Fade-In-2 {
  transition-delay: 0.2s;
}

.Fade-In.Fade-In-3 {
  transition-delay: 0.3s;
}

.Fade-In.Fade-In-4 {
  transition-delay: 0.4s;
}

.Fade-In-Down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s;
}

.Fade-In-Down.Fade-In-Down-2 {
  transition-delay: 0.2s;
}

.Fade-In-Down.Fade-In-Down-3 {
  transition-delay: 0.3s;
}

.Fade-In-Down.Fade-In-Down-4 {
  transition-delay: 0.4s;
}

.Fade-In-Left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}

.Fade-In-Left.Fade-In-Left-2 {
  transition-delay: 0.2s;
}

.Fade-In-Left.Fade-In-Left-3 {
  transition-delay: 0.3s;
}

.Fade-In-Left.Fade-In-Left-4 {
  transition-delay: 0.4s;
}

.Fade-In-Right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}

.Fade-In-Right.Fade-In-Right-2 {
  transition-delay: 0.2s;
}

.Fade-In-Right.Fade-In-Right-3 {
  transition-delay: 0.3s;
}

.Fade-In-Right.Fade-In-Right-4 {
  transition-delay: 0.4s;
}

.t_1 {
  color: #c00;
}

.t_2 {
  color: #0456a4;
}

.t_3 {
  color: #ec4579;
}

.t_4 {
  color: #c00;
}

.t_5 {
  color: #c00;
}

.t_1_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_2_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_3_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_4_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_5_b {
  padding: 0.1em;
  color: #c00;
  background-color: #ff0;
}

.t_lrg {
  font-size: 30px;
  font-size: 3rem;
}

.t_stg {
  font-weight: bold;
}

.t_ul {
  text-decoration: underline;
}

.t_c {
  text-align: center;
}

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

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

.f_l {
  float: left;
  margin-right: 1em;
  width: auto;
}

.f_r {
  float: right;
  margin-left: 1em;
  width: auto;
}

@media screen and (max-width: 767px) {
  .f_l {
    float: none;
    margin-right: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }
  .f_r {
    float: none;
    margin-left: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mb210 {
  margin-bottom: 210px !important;
}

.mb220 {
  margin-bottom: 220px !important;
}

.mb230 {
  margin-bottom: 230px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}

.mb250 {
  margin-bottom: 250px !important;
}

.mb260 {
  margin-bottom: 260px !important;
}

.mb270 {
  margin-bottom: 270px !important;
}

.mb280 {
  margin-bottom: 280px !important;
}

.mb290 {
  margin-bottom: 290px !important;
}

.mb300 {
  margin-bottom: 300px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pb210 {
  padding-bottom: 210px !important;
}

.pb220 {
  padding-bottom: 220px !important;
}

.pb230 {
  padding-bottom: 230px !important;
}

.pb240 {
  padding-bottom: 240px !important;
}

.pb250 {
  padding-bottom: 250px !important;
}

.pb260 {
  padding-bottom: 260px !important;
}

.pb270 {
  padding-bottom: 270px !important;
}

.pb280 {
  padding-bottom: 280px !important;
}

.pb290 {
  padding-bottom: 290px !important;
}

.pb300 {
  padding-bottom: 300px !important;
}

.mv {
  padding-top: 0;
  background: url(../img/bg_01.webp) no-repeat center 85px;
  padding-bottom: 40px;
}
.mv2 {
  background-position-y: 100px;
  background: url(../img/bg_01_lp2.webp) no-repeat center 85px;
}

.mv .s_hdr {
  height: 85px;
  border-bottom: #0559a5 solid 5px;
  margin-bottom: 30px;
  background: #fff;
}

.mv .s_hdr .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
}

.mv .s_hdr .inner figure {
  margin: 0;
  width: auto;
}

@media screen and (max-width: 767px) {
  .mv {
    background-size: 250%;
    background-color: #fff;
    background-position: 54% 20px;
    padding-bottom: 5%;
  }
  .mv2 {
    background-position: 54% 60px;
  }
  .mv .s_hdr {
    height: 60px;
    border-width: 3px;
    margin-bottom: 5%;
  }
  .mv .s_hdr.ttl{
    height: 66px;
	}
  .mv2 .s_hdr {
    margin-bottom: 3%;
  }
  .mv .s_hdr .inner figure {
    width: 50%;
  }
  .mv .s_hdr .inner figure:last-child {
    width: 40%;
  }
  .mv .inner {
    padding: 0;
  }
}
.cta_top {
  background: url(../img/bg_09.jpg) no-repeat center top;
  /* background-size: cover; */
  padding: 0;
}

.cta_top .inner {
  padding: 45px 70px 45px;
}
@media screen and (max-width: 767px) {
  .cta_top {
    /* background: url(../img/bg_09.jpg) no-repeat center top; */
    background-size: 200%;
    background-position-x: 50%;
  }
  .cta_top .inner {
    padding: 3%;
  }
}

.cta {
  background: url(../img/bg_02.jpg) no-repeat center top;
  background-size: cover;
  padding: 0;
}

.cta .inner {
  padding: 50px 70px 45px;
}

.cta .ripple span {
  width: 95%;
  height: 100%;
  top: -2.5%;
  border-radius: 80px;
}

.cta p {
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;
}

.cta .box_btn {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
  align-items: center;
}

.cta .box_btn figure {
  margin: 0;
max-width:400px;
}

.cta .inner table {
  width: 100%;
  margin-bottom: 2em;
}
.cta .inner table th,
.cta .inner table td {
  padding: 0.5em;
  border-left: #c7c7c7 solid 1px;
  border-bottom: #c7c7c7 solid 1px;
  font-size: 21px;
  font-size: 2.1rem;
  text-align: center;
  background: #fff;
}
.cta .inner table th:first-child,
.cta .inner table td:first-child {
  border-left: none;
}
.cta .inner table thead th {
  background: #313131;
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .cta .inner {
    padding: 0 3%;
  }

  .cta .inner table th,
  .cta .inner table td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .cta {
    background-size: cover;
  }
  .cta .inner {
    padding: 7% 5% 5%;
  }
  .cta .inner > figure:first-child {
    width: 55%;
    margin-bottom: 4%;
  }
  .cta .ripple img {
    width: 90%;
  }
  .cta .ripple span {
    width: 80%;
  }
  .cta p {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .cta p.link {
   font-size: 4.2vw;
}

  .cta .box_btn {
    flex-flow: column;
  }
  .cta .box_btn figure {
    margin: 0 0 15px;
  }
}

.sec_1 {
  background-image: url(../img/bg_03.webp), url(../img/bg_03_2.png);
  background-repeat: no-repeat, repeat-y;
  background-position: center top, center top;
}
.sec_1 .ttl {
  margin-bottom: 8%;
  text-align: center;
}

.sec_1 .box_1 {
  position: relative;
  padding: 2%;
  background: #fff url(../img/cnr_1.png) no-repeat right bottom;
  margin-bottom: 110px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.2);
}
.sec_1 .box_1 .ttl{
  margin-bottom: 5%;
}

.sec_1 .box_1 .ttl figure {
  text-align: left;
  margin-bottom: 2em;
}

.sec_1 .box_1 .ttl figure img {
  margin-top: -55px;
}

.sec_1 .box_1 .ttl h3 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.85em;
}

.sec_1 .box_1 .ttl h3 span {
  font-size: 50px;
  font-size: 5rem;
  color: #ec4579;
  padding-top: 0.3em;
  display: block;
}

.sec_1 .box_1 .txt {
  border-top: #ec4579 solid 1px;
  padding: 2em 0 0;
  clear: both;
}
.sec_1 .box_1 .txt .point {
  /* border: #e5e5e5 solid 5px; */
  background: #f3f3f3;
  border-radius: 6px;
  padding:2.5%;
  margin-bottom: 1.0em;
}
.sec_1 .box_1 .txt .point p{
  color:#ec4579;
  margin-bottom:20px;
  font-weight: bold;
  background: url(../img/icon_2.png) no-repeat left top;
  background-size: 37px 37px;
  background-position-y: 3px;
    padding: 0.2em 0.5em 0.2em 1.8em;
    font-size: 27px;
    font-size: 2.7rem;
    margin-bottom: 0.6em;
    line-height: 1.3em;
    font-weight: bold;
}
.sec_1 .box_1.ex .txt .point p{
  color:#055aa5;
}
.sec_1 .box_1.ex .txt .point p{
  background: url(../img/icon_3.png) no-repeat left top;
  background-size: 37px 37px;
  background-position-y: 3px;
  font-size: 27px;
  font-size: 2.7rem;
}
.sec_1 .box_1 .txt .point ul{
  padding-left:3%;
}
.sec_1 .box_1 .txt .point ul li {
  /* background: url(../img/icon_2.png) no-repeat left top;
  background-size: 30px 30px;
    padding: 0.2em 0.5em 0.2em 2.5em;*/

    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 0.6em;
    line-height: 1.3em;
    font-weight: bold; 

    list-style: circle;
}
.sec_1 .box_1 .txt p {
  font-size: 22px;
  font-size: 2.2rem;
  /* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
  margin-bottom: 1em;
  /* font-weight: bold; */
  word-break: break-all;
}

.sec_1 .box_1.ex {
  background: #fff url(../img/cnr_2.png) no-repeat right bottom;
  margin-bottom: 10px;
}

.sec_1 .box_1.ex .ttl h2 span {
  color: #0559a5;
}

.sec_1 .box_1.ex .txt {
  border-top: #0559a5 solid 1px;
}

@media screen and (max-width: 767px) {
  .sec_1 {
    background-size: 180% auto;
  }
  .sec_1 .ttl {
    width: 100%;
    margin-top: 3%;
  }
  .sec_1 .box_1 {
    padding: 3%;
    background-size: 20px auto;
    margin: 60px auto 40px;
  }

  .sec_1 .box_1 .ttl figure {
    margin-bottom: 1em;
  }
  .sec_1 .box_1 .ttl figure img {
    width: 55%;
    margin-top: -35px;
  }
  .sec_1 .box_1 .ttl h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }
  .sec_1 .box_1 .ttl h2 span {
    font-size: 30px;
    font-size: 3rem;
    padding-top: 0.3em;
  }
  .sec_1 .box_1 .txt {
    padding: 1.5em 0 0;
  }

.sec_1 .box_1 .txt .point p{

  margin-bottom:3%;
  font-weight: bold;
  background: url(../img/icon_2.png) no-repeat left top;
  background-size: 23px 23px;
  background-position-y: 5px;
    padding: 0.2em 0.5em 0.2em 1.5em;
    font-size: 20px;
    font-size: 2.0rem;

}
.sec_1 .box_1.ex .txt .point p{
  background-size: 23px 23px;
  background-position-y: 5px;
}
.sec_1 .box_1 .txt .point ul{
  padding-left:7%;
}
.sec_1 .box_1 .txt .point ul li {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 0.5em;
    line-height: 1.3em;
    font-weight: bold; 

}


  .sec_1 .box_1 .txt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .sec_1 .box_1.ex {
    background-size: 20px auto;
  }
}

.sec_2 {
  background: #fff url(../img/bg_04.jpg) no-repeat center 320px;
  padding-bottom: 10%;
}

.sec_2 h2 {
  margin-bottom: 30px;
  text-align: center;
}

.sec_2 .box_3 {
  background: none;
  border: none;
  width: 70%;
  margin-left: auto;
}

.sec_2 .box_3 li {
  background: url(../img/icon_1.png) no-repeat left top;
}

@media screen and (max-width: 767px) {
  .sec_2 {
    background: none;
    background-color: #fff;
  }
  .sec_2 .sp_only {
    margin-bottom: 0;
  }
  .sec_2 .box_3 {
    width: 100%;
    margin-bottom: 0;
  }
  .sec_2 .box_3 li {
    background: url(../img/icon_1.png) no-repeat left top;
    background-size: 1.5em auto;
  }
}

.sec_3 {
  padding: 0 0 50px;
  background: #fff url(../img/bg_05.webp) no-repeat center 160px;
}
.sec_3 p {
  font-weight: bold;
  font-size: 25px;
  font-size: 2.5rem;
  text-align: center;
}

.sec_3 .s_hdr {
  background: url(../img/s_hdr_1.png) no-repeat center top;
  height: 375px;
  padding-bottom: 45px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .sec_3 {
    background: #88ccec url(../img/bg_05.jpg) no-repeat 8% bottom;
    background-size: 312%;
    padding-bottom: 20px;
    text-align: center;
  }
  .sec_3 p {
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 180px;
  }
  .sec_3 .s_hdr {
    background: url(../img/s_hdr_1.png) no-repeat center top;
    background-size: 180% auto;
    height: 135px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .sec_3 .s_hdr img {
    width: 80%;
  }
  .sec_3 .mb60 {
    margin-bottom: 20px !important;
  }
}

.sec_4 {
  padding: 0 0 50px;
  background: #fff url(../img/bg_06.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

.sec_4 .s_hdr {
  background: url(../img/s_hdr_2.png) no-repeat center top;
  height: 390px;
  padding-bottom: 45px;
  margin-bottom: 50px;
}

.sec_4 .ttl_box_2 {
  margin-bottom: 30px;
  text-align: left;
}
.sec_4 .ttl_box_2 img {
  margin-left: 0;
}

.sec_4 .box_2 {
  background: #fff;
  padding: 3%;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.2);
}

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

.sec_4 .box_2 figure {
  margin-bottom: 0;
}

.sec_4 .box_2 p {
  font-size: 23px;
  font-size: 2.3rem;
}

@media screen and (max-width: 767px) {
  .sec_4 {
    background: none;
  }
  .sec_4 .s_hdr {
    background: url(../img/s_hdr_2.png) no-repeat center top;
    background-size: 200% auto;
    height: 155px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .sec_4 .s_hdr img {
    width: 86%;
  }
  .sec_4 .ttl_box_2 {
    margin-bottom: 1em;
  }
  .sec_4 .ttl_box_2 img {
    height: 48px;
    margin-left: 0;
  }
  .sec_4 .box_2 {
    margin-bottom: 40px;
  }
  .sec_4 .box_2 figure {
    margin-bottom: 20px;
  }
  .sec_4 .box_2 p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec_5 {
  padding: 0 0 50px;
  background: #eee url(../img/bg_07.jpg) no-repeat center top;
}

.sec_5 .s_hdr {
  background: url(../img/s_hdr_3.png) no-repeat center top;
  height: 235px;
  padding-bottom: 35px;
  margin-bottom: 50px;
}

.sec_5 dl {
  display: flex;
  flex-flow: wrap;
}

.sec_5 dl dt,
.sec_5 dl dd {
  padding: 1em;
  margin-bottom: 20px;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.65em;
}

.sec_5 dl dt {
  width: 20%;
  background: #0559a5;
  color: #fff;
  text-align: center;
}

.sec_5 dl dd {
  width: 80%;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .sec_5 .s_hdr {
    background: url(../img/s_hdr_3.png) no-repeat center top;
    background-size: cover;
    height: 140px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .sec_5 .s_hdr img {
    width: 80%;
  }
  .sec_5 dl dt,
  .sec_5 dl dd {
    margin-bottom: 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .sec_5 dl dt {
    padding: 1em 0;
    width: 22%;
  }
  .sec_5 dl dd {
    width: 78%;
    padding: 1em 0.5em;
  }
}

.box_3 {
  border: #0559a5 solid 5px;
  background: #fff;
  padding: 3% 2%;
  margin-bottom: 30px;
}

.box_3 li {
  padding: 0.2em 0.5em 0.2em 2.5em;
  background: url(../img/icon_2.png) no-repeat left top;
  font-size: 25px;
  font-size: 2.5rem;
  margin-bottom: 1em;
  line-height: 1.3em;
  font-weight: bold;
}

.box_3 li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .box_3 li {
    font-size: 16px;
    font-size: 1.6rem;
    background-size: 1.5em auto;
  }
}

.sec_6 {
  padding: 0 0 50px;
  background-color: #fff;
}

.sec_6 .s_hdr {
  background: url(../img/s_hdr_3.png) no-repeat center top;
  height: 235px;
  padding-bottom: 35px;
  margin-bottom: 50px;
}

.sec_6 h3 {
  border-left: #0559a5 solid 5px;
  padding: 0.1em 0 0.1em 0.5em;
  font-size: 32px;
  font-size: 3.2rem;
  margin: 2em 0 1em;
}

.sec_6 p {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .sec_6 .s_hdr {
    background: url(../img/s_hdr_3.png) no-repeat center top;
    background-size: 330% auto;
    height: 150px;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
  .sec_6 .s_hdr img {
    width: 35%;
  }
  .sec_6 .t_l img {
    width: 80%;
  }
  .sec_6 figure.sp_only img {
    width: 60%;
  }
  .sec_6 h3 {
    border-left: #0559a5 solid 3px;
    padding: 0.1em 0 0.1em 0.5em;
    font-size: 20px;
    font-size: 2rem;
    margin: 1em 0 0.5em;
  }
  .sec_6 p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec_form {
  background: url(../img/bg_08.webp) center;
}
.sec_form h2 {
  margin-bottom: 5%;
  text-align: center;
}

.sec_form form {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 1% 3% 7%;
  background: #fff;
  display: block;
  width: 100%;
  /* max-width: 920px; */
  margin: 0 auto 50px;
}

.sec_form form dl {
  display: flex;
  flex-flow: wrap;
  line-height: 1.65em;
}

.sec_form form dl dt,
.sec_form form dl dd {
  border-bottom: #eee solid 1px;
  padding: 1em 0;
}

.sec_form form dl dt:last-of-type,
.sec_form form dl dd:last-of-type {
  border-bottom: none;
}

.sec_form form dl dt {
  width: 25%;
  color: #0559a5;
  font-weight: bold;
}

.sec_form form dl dt span {
  padding: 0.2em 0.4em;
  color: #fff;
  background: #ec4579;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.5em;
}

.sec_form form dl dd {
  width: 75%;
}

.sec_form form dl dd input,
.sec_form form dl dd textarea {
  font-size: 19px;
  font-size: 1.9rem;
  padding: 0.5em;
  border: #333 solid 1px;
}

.sec_form form dl dd input[type="text"] {
  width: 50%;
}

.sec_form form dl dd input[type="checkbox"]:not(:checked),
.sec_form form dl dd input[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

.sec_form form dl dd label {
  display: block;
  line-height: 1;
  padding: 0.2em 0 0 2em;
  position: relative;
  margin-bottom: 1em;
}

.sec_form form dl dd input[type="checkbox"]:not(:checked) + label:before,
.sec_form form dl dd input[type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 24px;
  height: 25px;
  background: url(../img/chk_off.png) no-repeat center top;
}

.sec_form form dl dd input[type="checkbox"]:checked + label:before {
  background: url(../img/chk_on.png) no-repeat center top;
}

.sec_form form dl dd textarea {
  width: 100%;
}

.sec_form form dl dd.form_value{
position: relative;
}
.sec_form form dl dd.form_value .placeholder {
position: absolute;
top: 30px;
left: 10px;
pointer-events: none;
opacity:0.5;
}

.sec_form form > p {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2em;
}

.sec_form form input[type="submit"] {
  background: #0559a5;
  border-radius: 48px;
  color: #fff;
  font-size: 32px;
  font-size: 3.2rem;
  display: block;
  width: 60%;
  margin: 0 auto;
  border: none;
  padding: 0.3em;
}

.sec_form form .ripple span {
  background-color: #0559a5;
  pointer-events: none;
  width: 60%;
  border-radius: 48px;
}
.sec_form .error_m{
  color:#ec4579;
}
#confirm_error{
  display: block;
margin: 10px auto;
text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_form {
    padding-top: 8%;
  }
  .sec_form figure.ttl {
    width: 70%;
    margin-bottom: 8%;
  }
  .sec_form form dl {
    flex-flow: column;
  }
  .sec_form form dl dt,
  .sec_form form dl dd {
    border-bottom: none;
    padding: 1em 0;
  }
  .sec_form form dl dt:last-of-type,
  .sec_form form dl dd:last-of-type {
    border-bottom: none;
  }
  .sec_form form dl dt {
    width: 100%;
    padding: 1em 0 0.5em;
  }
  .sec_form form dl dt br {
    display: none;
  }
  .sec_form form dl dd {
    width: 100%;
    padding: 0.5em 0 1em;
    border-bottom: #ccc solid 1px;
  }
  .sec_form form dl dd input,
  .sec_form form dl dd textarea {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .sec_form form dl dd input[type="text"] {
    width: 100%;
  }
  .sec_form form dl dd input[type="checkbox"] {
    margin-right: 0.5em;
  }
  .sec_form form > p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  .sec_form form input[type="submit"] {
    border-radius: 26px;
    font-size: 24px;
    font-size: 2.4rem;
    width: 90%;
  }
  .sec_form form .ripple span {
    width: 90%;
    border-radius: 26px;
  }
}
.sec_company{
  font-size: 1.8rem;
  background:#fff;
}
.sec_company h2 {
  font-size: 3rem;
  line-height: 150%;
  font-weight: bold;
  font-family: メイリオ, Meiryo, Verdana, Helvetica, Arial,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック";
  text-align: center;
  margin: 0px auto;
  padding: 15px 0px 11px;
  border-top: 1px solid rgb(153, 153, 153);
  border-bottom: 1px solid rgb(153, 153, 153);
}
.sec_company table.spec {
  width: 100%;
  border-collapse: separate;
  margin: 0px 0px 30px;
}
.sec_company table.spec td {
  line-height: 180%;
  letter-spacing: 1px;
  border-bottom: 1px solid rgb(153, 153, 153);
  padding: 10px;
}
.sec_company table.spec td ul {
  margin: 10px 0;
  padding-left: 23px;
}
.sec_company table.spec td ul li {
  list-style: disc;
}
.sec_company table.spec th {
  padding: 10px;
  line-height: 180%;
  letter-spacing: 1px;
  vertical-align: top;
  text-align: left;
  background-color: rgb(241, 241, 241);
  border-right: 1px solid rgb(153, 153, 153);
  border-bottom: 1px solid rgb(153, 153, 153);
}
@media screen and (max-width: 767px) {
  .sec_company table.spec th {
    width: 30%;
    border-right: none;
    text-align: center;
  }
  .sec_company table.spec td {
    display: block;
    border-bottom: none;
  }
  .sec_company table.spec td:last-child {
    border-bottom: 1px solid rgb(153, 153, 153);
  }
}

footer {
  padding: 1em;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.65em;
  text-align: center;
}

.footerNav {
  padding:0;
  text-align: left;
  border-top: 1px solid #366D94;
  background: #e3eff7;
}

.footerNav .navCol {
  text-align:center;
  margin:0 auto 0;
  padding:0 1rem;
  background: #e3eff7;
}

.footerNav .navCol ul {
  display:block;
}

.footerNav .navCol ul > li {
  vertical-align:top;
  display:inline-block;
  margin:0 0 0.5rem 0;
  padding:0 0.6rem;
  box-sizing:border-box;
  text-align:left;
  width: 32%;
  max-width:300px;
}

.footerNav .navCol ul > li span {
  display:none;
}

.footerNav .navCol ul > li a {
  color:#444;
}

.footerNav .navCol ul li,
.footerNav .navCol ul li a {
  text-align: center;
  padding:0 1rem;
}

.footerNav .navCol ul li ul.child {
  border-top:1px solid #555;
  padding:0.6rem 0;
  margin:0;
  font-size:14px;
}

.footerNav .navCol ul li ul.child li {
  display:block;
  padding:0;
  margin:0 0 0.2rem 0;
  width:100%;
  height:auto;
}

.footerNav .navCol ul li ul.child li a {
  color:#555;
  text-align: center;
  text-align-last: center;
  padding:0;
}

.footerNav .navCol .navColinner p.ncttl {
  font-size:1.1rem;
  margin:0 0 1rem 0;
}

.footerNav .navCol .navColinner ul {
  text-align:left;
}

.footerNav .navCol .navColinner ul li {
  margin:0 0 0.4rem 0;
  font-size:1.1rem;
}

.flogo {
  margin: 0 0 1.2rem;
  padding:0 0.4rem;
}

.flogo a {
  color:#444;
  line-height:1.6rem;
  padding:0 0.6rem;
}

.flogo p {
  margin:0;
  line-height: 1.4;
  text-align: center;
  display: inline-block;
}

.flogo p img {
  width:100%;
  max-width: 360px;
}

.flogo p:first-child {
  width:100%;
  margin: 0 0 1rem;
}

.flogo p.comttl {
  width: 70%;
  margin: 0 0 0.6rem;
  color:#333;
  font-weight: bold;
  line-height: 1.4;
}

.flogo span {
  display: inline-block;
}

.flogo p.comttl a {
  color:#333;
  font-weight: bold;
  line-height: 1.4;
}

.footerNav .navCol,
.footerNav .companyCol {
  display: inline-block;
  vertical-align: top;
  width:48%;
  padding:2rem 0 2rem;
}

.footerNav .navCol.companyCol {
  background: #fff;
  margin:0 auto 0;
}

.footerNav .navCol.companyCol ul,
.footerNav .navCol.companyCol ul li {
  width: 100%;
}

.footerNav .navCol,
.footerNav .navCol.companyCol .inner {
  width:100%;
  max-width:900px;
  display:block;
  margin:0 auto;
  box-sizing: border-box;
}

.footerNav .companyCol {
  max-width:none;
}

.flogo, .footerNav .navCol.companyCol ul {
  display: inline-block;
  vertical-align: top;
  width:32%;
  margin: 0 0 0.5rem 0;
}

.flogo{
  margin:2rem 0 0;
  width:66%;
}

.footerNav .navCol.companyCol ul.child {
  width: 100%;
}

.copyright {
  padding: 30px;
  color: #fff;
  text-align: center;
  background-color: #0d4a82;
}

@media screen and (max-width: 767px) {
  footer {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    position: relative;
  }
  body::before {
    display: block;
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff url(../img/bg_06.jpg) no-repeat center top;
    background-size: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
  }
}

.slider figure {
  margin-bottom: 0;
}
/*# sourceMappingURL=map/style.css.map */
/* ========================================================
矢印アイコン
=========================================================*/
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  &::after,
  &::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    vertical-align: middle;
  }
}
// 上矢印
.arrow_down::before,
.arrow_up::before {
  top: auto;
  left: auto;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}

#content {
  position: relative;
}

#topBtn {
  /*-----必須-----*/
  position: fixed;
  bottom: 10px;
  right: 10px;

  /*-----装飾-----*/
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-color: #9e9e9ebf;
  color: #fff;
  border-radius: 50%;
}
