@charset "UTF-8";
/* Scss Document */
:root {
  --_main-font-family: "Noto Sans JP",
      sans-serif;
  --_sub-font-family: "EB Garamond", serif;
  --_main-font-size: 16px;
  --_main-font-weight: 400;
  --_main-font-color: #000;
  --_main-line-hlight: 1.6;
  --_main-letter-spacing: 0;
  --_main-link-color: #000;
  --_main-color: #000;
  --_sub-color: #000;
  --_inner-width: 1000px;
  --_inner-padding: 0 20px;
  --_anime-speed: 750ms;
  --_anime-delay: 0.6s;
}
.attention-scam {
	padding: 10px;
	margin: 0;
	border: 3px solid #dc3545;
}
.attention-scam p {
	text-align: center;
	font-size: 10px;
	line-height: 1rem;
	color: #333;
		font-weight: bold;
}
.attention-scam span {
	font-size: 16px;
	display: inline-block;
	border-bottom: 1px dotted #fff;
	margin-bottom: 10px;
	color: #dc3545;
}
.bg-primary-dark h1 {
	text-align: center;
}
.spbr {
	display: none;
}
@media (max-width: 767px){
	.spbr {
		display: block;
	}
}
@media (max-width: 750px) {
  :root {
    --_font-size: 16px;
    --_line-hlight: 1.6;
    --_letter-spacing: 0;
    --_inner-width: 100%;
    --_inner-padding: 0 15px;
  }
}
/* Scss Document */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

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

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

body {
  font-family: var(--_main-font-family);
  font-size: var(--_main-font-size);
  line-height: var(--_line-hlight);
  font-weight: var(--_main-font-weight);
  color: var(--_main-font-color);
  letter-spacing: var(--_letter-spacing);
  -webkit-text-size-adjust: 100%;
}

img, svg {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  line-height: 1;
}

a {
  color: var(--_main-link-color);
  text-decoration: none;
}

input, textarea, button, select {
  font-family: var(--_main-font-family);
  font-size: var(--_main-font-size);
  line-height: var(--_line-hlight);
  font-weight: var(--_main-font-weight);
  color: var(--_main-font-color);
}

@media screen and (max-width: 750px) {
  body {
    font-weight: var(--_main-font-weight);
    line-height: var(--_line-hlight);
  }
  input, textarea, button, select {
    font-weight: var(--_main-font-weight);
  }
}
/* Scss Document */
/*　header
----------------------------------------------- */
.header {
  background: #FFF;
  position: relative;
  z-index: 1;
}

.header__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 26px 20px 12px;
  display: grid;
  grid-template-columns: 1fr 100px 40px;
  gap: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__line a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__line a:hover {
    opacity: 0.7;
  }
}

.header-btn {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 13;
}

.menu {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: #0E58B8;
  border: none;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.menu span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 8px;
  width: 24px;
  height: 3px;
  background-color: #FFF;
}
.menu span:nth-of-type(1) {
  top: 10px;
}
.menu span:nth-of-type(2) {
  top: 18px;
}
.menu span:nth-of-type(3) {
  bottom: 10px;
}
.menu.active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.menu.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.menu.active span:nth-of-type(3) {
  opacity: 0;
}

.header-menu-area {
  width: 375px;
  height: 100%;
  padding: 93px 40px 0;
  position: absolute;
  top: 0;
  right: -377px;
  background: #0E58B8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header-menu-area.active {
  right: 0;
}

.header-menu__item {
  border-bottom: 1px solid #FFF;
}
.header-menu__item:last-child {
  border-bottom: none;
}
.header-menu__item a {
  padding: 24px 0;
  color: #FFF;
  display: block;
  position: relative;
}
.header-menu__item a::after {
  content: "";
  width: 7px;
  height: 10px;
  display: block;
  background: url(../../img/header_arrow.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  pointer-events: none;
}

.header-menu__item--contact {
  margin-top: 32px;
}
.header-menu__item--contact a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 700;
  color: #0E58B8;
  letter-spacing: 0.04em;
  text-align: center;
  background: #FFF;
  border-radius: 10px;
}

@media screen and (max-width: 750px) {
  .header {
    position: relative;
    z-index: 14;
  }
  .header__inner {
    padding: 3px 4px 3px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 4px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo {
    width: 200px;
  }
  .header__tel,
  .header__line {
    width: 48px;
  }
  .header-btn {
    width: 50px;
    height: 50px;
  }
  .menu {
    border-radius: 6px;
  }
  .menu span {
    left: 10px;
    width: 30px;
    height: 3px;
  }
  .menu span:nth-of-type(1) {
    top: 15px;
  }
  .menu span:nth-of-type(2) {
    top: 23px;
  }
  .menu span:nth-of-type(3) {
    bottom: 15px;
  }
  .header-menu-area {
    width: 100%;
    padding: 72px 40px 50px;
    z-index: 11;
    overflow-y: scroll;
    right: 0;
    top: -100%;
  }
  .header-menu-area.active {
    top: 0;
  }
  .header-menu__item a {
    font-size: 15px;
    font-weight: 700;
  }
  .header-menu__item a::after {
    content: "";
    width: 7px;
    height: 10px;
    display: block;
    background: url(../../img/header_arrow.svg) no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    pointer-events: none;
  }
  .header-menu__item--contact {
    margin-top: 32px;
  }
  .header-menu__item--contact a {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 700;
    color: #0E58B8;
    letter-spacing: 0.04em;
    text-align: center;
    background: #FFF;
    border-radius: 10px;
  }
}
/*　footer
----------------------------------------------- */
.footer-copy {
  padding: 22px 0 21px;
  display: block;
  font-size: 14px;
  text-align: center;
  color: #FFF;
  background: #004786;
}

@media screen and (max-width: 750px) {
  .footer-copy {
    padding: 22px 0;
    font-size: 13px;
  }
}
/*　フェード
----------------------------------------------- */
.view01 {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}
.view01.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}

.view02 {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}
.view02.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}

.view03 {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}
.view03.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}

.view04 {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}
.view04.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}
.view05.view-on {
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
          transition-delay: var(--_anime-delay);
}

/*　スライドアニメーション
----------------------------------------------- */
.js-slide-h {
  display: grid;
  -webkit-transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s, -ms-grid-rows 0.4s;
  grid-template-rows: 0fr;
}
.js-slide-h > * {
  overflow: hidden;
}
.js-slide-h.js-active {
  grid-template-rows: 1fr;
}

.btn-anime {
  display: block;
  position: relative;
  -webkit-animation: scale 3s ease 0s infinite normal;
          animation: scale 3s ease 0s infinite normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-anime::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -webkit-animation: scale2 3s ease 0s infinite normal;
          animation: scale2 3s ease 0s infinite normal;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .btn-anime:hover {
    opacity: 0.7;
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  30% {
    -webkit-transform: scale(0.97, 0.95);
            transform: scale(0.97, 0.95);
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  30% {
    -webkit-transform: scale(0.97, 0.95);
            transform: scale(0.97, 0.95);
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes scale2 {
  35% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.95), 0 0 0 0 rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.95), 0 0 0 0 rgba(255, 255, 255, 0.9);
  }
  70% {
    -webkit-box-shadow: 0 0 0 0.3125vw rgba(255, 255, 255, 0), 0 0 0 1.5625vw rgba(255, 255, 255, 0), 0 0 0 3.125vw rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0.3125vw rgba(255, 255, 255, 0), 0 0 0 1.5625vw rgba(255, 255, 255, 0), 0 0 0 3.125vw rgba(255, 255, 255, 0);
  }
}
@keyframes scale2 {
  35% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.95), 0 0 0 0 rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.95), 0 0 0 0 rgba(255, 255, 255, 0.9);
  }
  70% {
    -webkit-box-shadow: 0 0 0 0.3125vw rgba(255, 255, 255, 0), 0 0 0 1.5625vw rgba(255, 255, 255, 0), 0 0 0 3.125vw rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0.3125vw rgba(255, 255, 255, 0), 0 0 0 1.5625vw rgba(255, 255, 255, 0), 0 0 0 3.125vw rgba(255, 255, 255, 0);
  }
}
@media screen and (max-width: 750px) {
  .btn-anime::before {
    border-radius: 10px;
  }
}
/*　共通
----------------------------------------------- */
body {
  overflow-x: clip;
}
body.js-on {
  overflow: hidden;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

.inner {
  max-width: var(--_inner-width);
  margin-inline: auto;
  padding: var(--_inner-padding);
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp-inline {
    display: inline;
  }
  .pc-inline {
    display: none;
  }
  .inner {
    margin: 0;
  }
}
/* Scss Document */
.thanks {
  height: 705px;
  padding: 50px 0;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thanks-text {
  font-size: 30px;
  text-align: center;
}

.thanks-btn {
  margin: 40px auto 0;
  text-align: center;
}
.thanks-btn a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  color: #0E58B8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .thanks-btn a:hover {
    text-decoration: none;
  }
}

#container {
  background: #0E58B8;
  overflow: hidden;
  position: relative;
}

.page-ttl {
  position: relative;
}
.page-ttl::after {
  content: "";
  width: 49px;
  height: 30px;
  display: block;
  background: #004786;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-ttl__text {
  position: relative;
  z-index: 1;
}

.page-ttl__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.common-parts {
  padding: 30px 0 60px;
}

@-webkit-keyframes scroll-telop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-telop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.time {
  padding: 2px 0 1px;
}

.time__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.time__text {
  overflow: hidden;
  white-space: nowrap;
}

.time__text-inner {
  padding-left: 100%;
  font-size: 30px;
  font-weight: 900;
  color: #FFF;
  display: inline-block;
  -webkit-animation: scroll-telop 11s linear infinite;
          animation: scroll-telop 11s linear infinite;
}
.time__text-inner span {
  color: #FCFA6C;
}
.time__text-inner span span {
  font-size: 38px;
}

.mv img {
  width: 100%;
}

.sec01 {
  padding-bottom: 60px;
  position: relative;
}

.sec01__01 {
  margin-top: 30px;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.sec01__wrap01 {
  width: 103.5%;
  margin-top: 30px;
  position: relative;
}

.sec01__btn01 {
  margin-top: 30px;
}

.sec01__btn02 {
  max-width: 900px;
  width: 90%;
  position: absolute;
  bottom: 275px;
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sec01__btn03 {
  width: 100%;
  position: absolute;
  bottom: 1%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.sec01__btn03 a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .sec01__btn03 a:hover {
    opacity: 0.7;
  }
}

.sec01_03 {
  margin-top: 30px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.sec02 {
  padding: 128px 0 80px;
  background: #D2F0FD;
  position: relative;
}

.sec02__contents {
  margin-top: -109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

.sec02__btnarea .js-slide-h_btn {
  position: relative;
}
.sec02__btnarea .js-slide-h_btn::after {
  content: "";
  width: 50px;
  height: 38px;
  display: block;
  background: #FFF;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  top: 57%;
  right: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec02__btnarea .js-slide-h_btn.js-active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.sec02_bg {
  position: absolute;
  top: 0;
  right: 0;
}

.sec03 {
  padding: 0 0 80px;
  background: url(../../img/sec03_bg.jpg) top left/100% 100% repeat;
  position: relative;
}

.sec03-ttl {
  padding: 20px 0 0;
  text-align: center;
}

.sec03__list {
  margin: 70px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px 10px;
  position: relative;
}
.sec03__list::after {
  content: "";
  width: calc(100% - 50px);
  height: 1px;
  display: block;
  background: url(../../img/sec03_bd.png) center center/100% 100% no-repeat;
  position: absolute;
  top: 50.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sec03__item {
  width: calc(33.3333333333% - 14px);
  position: relative;
}
.sec03__item:nth-child(4) .sec03__item-ttl, .sec03__item:nth-child(5) .sec03__item-ttl {
  top: 17%;
}

.sec03__item-ttl {
  width: 100%;
  max-height: 69px;
  height: 4.79vw;
  font-weight: 700;
  font-size: min(1.39vw, 20px);
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 14%;
  left: 0;
}

.sec03__bottom {
  width: 67.29%;
  margin: -2% auto 0;
}

.blue {
  color: #0E58B8;
}

.view06 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(60%, #FFFE03));
  background: linear-gradient(transparent 75%, #FFFE03 60%);
  background-repeat: no-repeat;
  background-size: 0%;
  background-position: left bottom 0px;
}
@-webkit-keyframes underLine {
  100% {
    background-size: 100%;
  }
}
@keyframes underLine {
  100% {
    background-size: 100%;
  }
}
.view06.view-on {
  -webkit-animation: underLine 1s ease 0.5s forwards;
          animation: underLine 1s ease 0.5s forwards;
}

.sec04 {
  padding: 0 0 80px;
  background: url(../../img/sec04_bg.jpg) top left/100% 100% repeat;
}

.sec04-ttl {
  padding: 20px 0 24px;
  text-align: center;
}

.sec04__list {
  margin: 70px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 21px;
}

.sec04__item {
  width: calc(33.3333333333% - 14px);
  position: relative;
}

.sec04__item-ttl {
  max-width: 205px;
  width: 13.89vw;
  font-weight: 700;
  font-size: min(1.5vw, 23px);
  letter-spacing: 0.004em;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  color: #004786;
  position: absolute;
  top: 8%;
  left: 27%;
}
.sec04__item-ttl span {
  font-size: min(1.81vw, 26px);
}

.sec04__item-ttl {
  max-width: 220px;
  width: 13.89vw;
  font-weight: 700;
  font-size: min(1.5vw, 22px);
  letter-spacing: 0.004em;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  color: #004786;
  position: absolute;
  top: 8%;
  left: 27%;
}
.sec04__item-ttl span {
  font-size: min(1.5vw, 22px);
}

.sec06 {
  padding: 80px 0;
  background: #FFF;
}

.sec06__img {
  text-align: center;
}

.sec07 {
  padding: 0 0 80px;
  background: #D2F0FD;
}

.sec07-ttl {
  padding: 20px 0 0;
  text-align: center;
}

.sec07__img {
  margin: 81px auto 0;
}

.sec08 {
  padding: 0 0 80px;
  background: #F6F5ED;
}

.sec08-ttl {
  padding: 24px 0 27px;
  text-align: center;
}

.sec08__img {
  margin: 81px auto 0;
}

.sec09 {
  padding: 80px 0;
  position: relative;
}

.sec09-ttl {
  text-align: center;
}

.tabs {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 13px;
  position: relative;
  z-index: 1;
}

.tab {
  width: 239px;
  padding: 14px 0;
  font-size: 30px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  display: block;
  border-radius: 8px 8px 0 0;
  background: #0E58B8;
}
.tab.active {
  background: #FF5200;
}

.sec09__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.sec09__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}

.sec10 {
  padding: 0 0 80px;
  background: #D2F0FD;
}

.sec10-ttl {
  padding: 36px 0 34px;
  text-align: center;
}

.sec10__contents {
  max-width: 960px;
  margin: 78px auto 0;
}

.js-slide-h_btn {
  width: 100%;
  display: block;
}

.sec10__q {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  gap: 0 12px;
  background: #F7F7F7;
  border: 1px solid #0E58B8;
  border-radius: 10px;
  position: relative;
}
.sec10__q::before, .sec10__q::after {
  content: "";
  width: 16px;
  height: 2px;
  display: block;
  background: #004786;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec10__q::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.sec10__q.js-active::after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}

.sec10__icon-q {
  width: 36px;
  height: 36px;
  font-family: var(--_sub-font-family);
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #004786;
  border-radius: 50%;
}

.sec10__text-q {
  padding-top: 6px;
}

.sec10__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
}

.sec10__icon-a {
  width: 36px;
  height: 36px;
  font-family: var(--_sub-font-family);
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FF5200;
  border-radius: 50%;
}

.sec10__text-a {
  width: calc(100% - 44px);
  margin-bottom: 24px;
  padding-top: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #004786;
}

input[type=text],
input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.form {
  padding: 60px 0;
  background: #D2F0FD;
}
.form input[type=text] {
  width: 100%;
  padding: 10px;
  background: #FFF;
  border-radius: 5px;
}
.form textarea {
  width: 100%;
  padding: 10px;
  background: #FFF;
  border-radius: 5px;
}

.form-ttl {
  max-width: 409px;
  margin: 0 auto;
}

.form-contents {
  max-width: 640px;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
}

.form-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}

.form-item__icon {
  padding: 3px 8px;
  font-size: 10px;
  line-height: 1;
  color: #FFF;
  display: inline-block;
  border-radius: 10px;
}

.form-item__icon--orange {
  background: #FF5200;
}

.form-item__icon--blue {
  background: #004786;
}

.form-item__ttl {
  font-weight: 500;
}

.form-item__body {
  margin-top: 16px;
}

.form-item__radio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}

.checkbox-circle {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 35px;
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative;
  width: auto;
}
.checkbox-circle::before {
  border: 1px solid #004786;
  content: "";
  display: block;
  height: 23px;
  left: 0;
  margin-top: -10px;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  width: 23px;
}
.checkbox-circle::after {
  content: "";
  display: block;
  left: 5px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #004786;
}

input[type=radio]:checked + .checkbox-circle::after {
  opacity: 1;
}

.form-btn {
  max-width: 400px;
  margin: 40px auto 0;
}

input.submit {
  max-width: 400px;
  width: 100%;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  color: #FFF;
  display: block;
  background: #FF5200;
  border-radius: 36px;
  border: 2px solid #FF5200;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  input.submit:hover {
    background: #FFF;
    color: #FF5200;
  }
}

.modal {
  display: none;
}

.modaal-overlay {
  display: none !important;
}

.modaal-content-container {
  padding: 0 !important;
}

.modaal-container {
  background: none !important;
  -webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.4) !important;
          box-shadow: 0 5px 26px rgba(0, 0, 0, 0.4) !important;
}

.modaal-close {
  position: absolute;
  right: -27px;
  top: -27px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 53px;
  height: 53px;
  line-height: 1;
  background: #FF5200 !important;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:after,
.modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 13px;
  left: 23px;
  width: 4px;
  height: 28px;
  border-radius: 0;
}

@media screen and (max-width: 750px) {
  .thanks {
    height: auto;
    padding: 220px 0;
  }
  .thanks-text {
    font-size: 20px;
  }
  .thanks-btn {
    margin: 25px auto 0;
  }
  .thanks-btn a {
    font-size: 14px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .page-ttl::after {
    width: 27px;
    height: 17px;
    bottom: -10px;
  }
  .page-ttl__bg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .common-parts {
    padding: 30px 0 60px;
  }
  .time {
    padding: 4px 0 9px;
  }
  .time__img {
    width: 41px;
  }
  .time__text {
    width: calc(100% - 115px);
    overflow: hidden;
    white-space: nowrap;
  }
  .time__text-inner {
    font-size: 14px;
  }
  .time__text-inner span span {
    font-size: 20px;
  }
  .time__area {
    width: 71px;
  }
  .mv img {
    width: 100%;
  }
  .sec01 {
    padding-bottom: 15px;
  }
  .sec01__01 {
    margin-top: 0;
  }
  .sec01__wrap01 {
    width: 100vw;
    margin: 15px calc(50% - 50vw) 0;
    padding-right: 5px;
    position: relative;
  }
  .sec01__btn01 {
    margin-top: 15px;
  }
  .sec01__btn02 {
    width: calc(100% - 50px);
    bottom: 27vw;
    left: 50%;
  }
  .sec01__btn03 {
    width: calc(100% - 30px);
    bottom: 1%;
  }
  .sec01_03 {
    margin-top: 15px;
  }
  .sec02 {
    padding: 0 0 40px;
  }
  .sec02 .inner {
    padding: 0;
  }
  .sec02__contents {
    margin-top: -7vw;
    padding: 0 15px;
    gap: 24px 0;
  }
  .sec02__btnarea .js-slide-h_btn {
    position: relative;
  }
  .sec02__btnarea .js-slide-h_btn::after {
    width: 26px;
    height: 20px;
    top: 57%;
    right: 8%;
  }
  .sec02__btnarea .js-slide-h_btn.js-active::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  .sec02_bg {
    position: absolute;
    top: 0;
    right: 0;
  }
  .sec03 {
    padding: 0 0 14px;
    background: url(../../img/sec03_bg.jpg) top left/180% auto repeat;
  }
  .sec03 .inner {
    padding: 0;
  }
  .sec03-ttl {
    width: 100%;
    padding-top: 11px;
  }
  .sec03-ttl img {
    width: 265px;
    margin: 0 auto;
    padding-left: 58px;
    display: block;
  }
  .sec03-ttl .page-ttl__bg {
    width: 100%;
    padding-left: 0;
  }
  .sec03__list {
    margin: 9px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
  .sec03__list::after {
    display: none;
  }
  .sec03__item {
    width: calc(100% - 29px);
  }
  .sec03__item:nth-child(4) .sec03__item-ttl, .sec03__item:nth-child(5) .sec03__item-ttl {
    top: 3.2vw;
  }
  .sec03__item-ttl {
    width: 70.13vw;
    max-height: 100%;
    height: 13.87vw;
    font-size: 5.33vw;
    top: 3.2vw;
    left: 21.87vw;
  }
  .sec03__bottom {
    width: 88.53%;
    margin: -6vw auto 0;
  }
  .sec04 {
    padding: 0 0 40px;
    background: url(../../img/sec04_bg_sp.jpg) top left/100% 100% repeat;
  }
  .sec04-ttl {
    padding: 8px 0 14px;
    text-align: center;
  }
  .sec04-ttl .page-ttl__text {
    width: 242px;
    margin: 0 auto;
    display: block;
  }
  .sec04-ttl .page-ttl__bg {
    width: 100%;
  }
  .sec04__list {
    margin: 36px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .sec04__item {
    width: 100%;
  }
  .sec04__item-ttl {
    max-width: 100%;
    width: 65.33vw;
    font-size: 6.4vw;
    top: 11vw;
    left: 24vw;
  }
  .sec04__item-ttl span {
    font-size: 6.4vw;
  }
  .sec06 {
    padding: 40px 0;
  }
  .sec07 {
    padding: 0 0 40px;
  }
  .sec07-ttl {
    padding: 7px 0 0;
  }
  .sec07-ttl .page-ttl__text {
    width: 313px;
    margin: 0 auto;
    padding-left: 58px;
    display: block;
  }
  .sec07__img {
    margin: 22px auto 0;
  }
  .sec08 {
    padding: 0 0 40px;
  }
  .sec08-ttl {
    padding: 9px 0 11px;
  }
  .sec08-ttl .page-ttl__text {
    width: 224px;
    margin: 0 auto;
    display: block;
  }
  .sec08__img {
    margin: 23px auto 0;
  }
  .sec09 {
    padding: 40px 0;
  }
  .sec09-ttl {
    width: 288px;
    margin: 0 auto;
  }
  .tabs {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 8px;
  }
  .tab {
    width: auto;
    padding: 8px 0;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
  }
  .sec10 {
    padding: 0 0 40px;
  }
  .sec10-ttl {
    padding: 20px 0;
  }
  .sec10-ttl .page-ttl__text {
    width: 236px;
    margin: 0 auto;
    display: block;
  }
  .sec10__contents {
    margin: 50px auto 0;
  }
  .js-slide-h_btn {
    width: 100%;
    gap: 0 12px;
  }
  .sec10__q {
    margin-bottom: 16px;
    padding-right: 44px;
  }
  .sec10__text-q {
    width: calc(100% - 48px);
    padding-top: 6px;
    text-align: left;
  }
  .sec10__text-a {
    margin-bottom: 24px;
    padding-top: 6px;
  }
  input[type=text],
  input[type=submit] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  input[type=radio] {
    display: none;
  }
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .form {
    padding: 29px 0 40px;
  }
  .form input[type=text] {
    border-radius: 8px;
  }
  .form textarea {
    height: 240px;
    border-radius: 8px;
  }
  .form-ttl {
    width: 223px;
  }
  .form-contents {
    margin: 24px auto 0;
  }
  .form-item__body {
    margin-top: 8px;
  }
  .form-item__radio-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
  .checkbox-circle {
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 35px;
    font-size: 16px;
    letter-spacing: 0.05em;
    position: relative;
    width: auto;
  }
  .checkbox-circle::before {
    border: 1px solid #004786;
    content: "";
    display: block;
    height: 23px;
    left: 0;
    margin-top: -10px;
    border-radius: 50%;
    position: absolute;
    top: 13px;
    width: 23px;
  }
  .checkbox-circle::after {
    content: "";
    display: block;
    left: 5px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 13px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #004786;
  }
  input[type=radio]:checked + .checkbox-circle::after {
    opacity: 1;
  }
  .form-btn {
    margin: 24px auto 0;
  }
  input.submit {
    max-width: 400px;
    width: 100%;
    padding: 16px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    color: #FFF;
    display: block;
    background: #FF5200;
    border-radius: 36px;
    border: 2px solid #FF5200;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .fixed {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  .fixed img {
    width: 100%;
  }
}