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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* フォームの初期化を追加 */
/* テキスト */
input[type=text],
input[type=email], input[type=tel], input[type=password] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus, input[type=password]:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* テキストエリア */
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  height: 100px;
  width: 100%;
}

textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* セレクト */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  background: white;
}

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

select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

input[type=text],
input[type=email],
input[type=tel], input[type=password] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus {
  outline: none;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
}

textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit] {
  -webkit-appearance: none;
  background-image: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
}

input[type=submit]:hover,
input[type=submit]:focus {
  outline: none;
}

input[type=submit]::-moz-foucus-inner {
  border: none;
  padding: 0;
}

/* ==========================================================================
  Foundation
  ========================================================================== */
/* base */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease-in 0.3s 1 forwards;
  animation: fadeIn 0.8s ease-in 0.3s 1 forwards;
  font-size: 1.6rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.9;
  color: #212121;
  font-weight: 500;
}
@media (max-width: 999px) {
  body {
    line-height: 1.64;
  }
}
@media (max-width: 999px) {
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
}

.inner {
  margin: 0 auto;
  max-width: calc(1317px + 10%);
  padding: 0 5%;
  width: 100%;
}
.inner.is-lg {
  max-width: calc(1532px + 10%);
}
@media (max-width: 999px) {
  .inner {
    padding: 0 16px;
    max-width: 550px;
    margin: 0 auto;
  }
}
.inner.is-w1700 {
  max-width: 1700px;
  padding: 0;
}

main {
  display: block;
}

.wrapper {
  overflow: hidden;
}

.right {
  text-align: right;
}

.block {
  display: inline-block;
}

.auto {
  width: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type=submit] {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a:focus {
  outline: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: none;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.6;
  font-weight: 400;
  color: #3E3A39;
}

@media (min-width: 1000px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

section,
.section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 999px) {
  section,
  .section {
    padding: 60px 0;
  }
}

.center {
  text-align: center;
}

@media (min-width: 1000px) {
  .show.is-sp {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .show.is-pc {
    display: none !important;
  }
}

/* ==========================================================================
  footer
  ========================================================================== */
.ft {
  padding: 100px 0 0;
}
@media (max-width: 999px) {
  .ft {
    padding: 46px 0 0;
  }
}
.ft small {
  display: block;
  font-weight: 500;
}

/* ==========================================================================
  font
  ========================================================================== */
.imgTtl {
  text-align: center;
}

.white {
  color: #fff;
}

.bold {
  font-weight: bold;
}

.font10 {
  font-size: 1rem;
}

.font11 {
  font-size: 1.1rem;
}

.font13 {
  font-size: 1.3rem;
}

.font14 {
  font-size: 1.4rem;
}

@media (max-width: 999px) {
  .font17-sp {
    font-size: 1.7rem;
  }
}

.font18 {
  font-size: 1.8rem;
}

.font19 {
  font-size: 1.9rem;
}

.font21 {
  font-size: 2.1rem;
}

.font30 {
  font-size: 3rem;
}

.font37 {
  font-size: 3.7rem;
}

.font22 {
  font-size: 2.2rem;
}

.font50 {
  font-size: 5rem;
}

@media (max-width: 999px) {
  .font10-sp {
    font-size: 1rem;
  }
}

@media (max-width: 999px) {
  .font14-sp {
    font-size: 1.4rem;
  }
}

@media (max-width: 999px) {
  .font15-sp {
    font-size: 1.5rem;
  }
}

@media (max-width: 999px) {
  .font16-sp {
    font-size: 1.6rem;
  }
}

@media (max-width: 999px) {
  .font17-sp {
    font-size: 1.7rem;
  }
}

@media (max-width: 999px) {
  .font24-sp {
    font-size: 2.4rem;
  }
}

@media (max-width: 999px) {
  .font26-sp {
    font-size: 2.6rem;
  }
}

@media (max-width: 999px) {
  .font34-sp {
    font-size: 3.4rem;
  }
}

.lh18 {
  line-height: 1.8;
}

.lh115 {
  line-height: 1.15;
}

@media (max-width: 999px) {
  .lh120-sp {
    line-height: 1.2;
  }
}

.ls20 {
  letter-spacing: 0.2em;
}

.yellow {
  color: #FFD248;
}

.primary {
  color: #075CAB;
}

.period {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.period > dt {
  width: 196px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 18px;
  border: 1px solid #fff;
}
@media (min-width: 1000px) {
  .period > dt {
    margin-bottom: 14px;
  }
}
@media (max-width: 999px) {
  .period > dt {
    margin-bottom: 20px;
    width: 169px;
    height: 31px;
  }
}

.secTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 43px;
}
@media (max-width: 999px) {
  .secTtl {
    margin-bottom: 58px;
  }
}
.secTtl .en {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  color: #3E3A39;
  font-size: 5rem;
}
@media (max-width: 999px) {
  .secTtl .en {
    font-size: 3.4rem;
  }
}
.secTtl .ja {
  font-weight: bold;
  margin-top: -3px;
}
@media (max-width: 999px) {
  .secTtl .ja {
    margin-top: 6px;
  }
}

.highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFDC7C));
  background: -webkit-linear-gradient(transparent 50%, #FFDC7C 50%);
  background: linear-gradient(transparent 50%, #FFDC7C 50%);
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.deco {
  position: absolute;
}

/* ==========================================================================
  fv
  ========================================================================== */
.fv {
  padding-top: 58.5%;
  background: url(https://sky0538.itembox.design/item/yoruneko-lp/img/bg-night.webp) no-repeat top center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 999px) {
  .fv {
    padding-top: 169%;
  }
}
.fv__part {
  position: absolute;
  top: 0;
  left: 0;
}
.fv__01 {
  width: 33.5%;
  margin: 3.5% 0 0 11.5%;
}
@media (max-width: 999px) {
  .fv__01 {
    width: 66.5%;
    margin: 10.5% 0 0 10.5%;
  }
}
.fv__02 {
  width: 15.5%;
  margin: 8% 0 0 46.5%;
}
@media (max-width: 999px) {
  .fv__02 {
    width: 38.5%;
    margin: 41.5% 0 0 53%;
  }
}
.fv__03 {
  width: 39%;
  margin: 6% 0 0 48.5%;
}
@media (max-width: 999px) {
  .fv__03 {
    width: 80%;
    margin: 23% 0 0 8.5%;
  }
}
.fv__img01 {
  width: 40.5%;
  margin: 28.5% 0 0 51.5%;
}
@media (max-width: 999px) {
  .fv__img01 {
    width: 62.5%;
    margin: 73.5% 0 0 49.5%;
  }
}
.fv__img02 {
  width: 36.5%;
  margin: 19.5% 0 0 12.5%;
}
@media (max-width: 999px) {
  .fv__img02 {
    width: 63.5%;
    margin: 100.5% 0 0 0;
  }
}
.fv__txt {
  width: 12.5%;
  margin: 53% 0 0 64.5%;
}

.copy {
  margin-top: 12px;
  display: block;
}

/* ==========================================================================
  bg
  ========================================================================== */
.nightBg {
  background: url(https://sky0538.itembox.design/item/yoruneko-lp/img/bg-night02.webp) no-repeat top center/cover;
}

.lightBg {
  background: rgba(239, 237, 232, 0.52);
}

.whiteBg {
  background: #fff;
}

.patternBg {
  background: url(https://sky0538.itembox.design/item/yoruneko-lp/img/bg-pattern.webp) no-repeat top center/cover;
}

/* ==========================================================================
  flex
  ========================================================================== */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 999px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1000px) {
  .flex__item {
    width: 50%;
  }
}
@media (max-width: 999px) {
  .flex__item {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .flex__item.is-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
  }
}
.flex__item.is-solid {
  padding: 40px 20px;
}
@media (max-width: 999px) {
  .flex__item.is-solid {
    padding: 0 21px 30px;
  }
}
.flex__item.is-solid .img {
  margin-bottom: 14px;
}
@media (max-width: 999px) {
  .flex__item.is-solid .img {
    position: relative;
    top: -21px;
    margin-bottom: -5px;
  }
}

.contBlock {
  position: relative;
}
.contBlock.is-oil .flex__item.is-solid {
  background: #EAAA86;
}
.contBlock.is-oil .btn {
  background: #EAAA86;
}
.contBlock.is-oil .btn:hover {
  background: #eeb99c;
}
.contBlock.is-kakushitsu .flex__item.is-solid {
  background: #B3A7CC;
}
.contBlock.is-kakushitsu .btn {
  background: #B3A7CC;
}
.contBlock.is-kakushitsu .btn:hover {
  background: #c1b7d5;
}
.contBlock.is-kakushitsu .chk > li::before {
  background-image: url(https://sky0538.itembox.design/item/yoruneko-lp/img/chk-kakushitsu.svg);
}
.contBlock.is-koushintou .flex__item.is-solid {
  background: #97CCC8;
}
.contBlock.is-koushintou .btn {
  background: #97CCC8;
}
.contBlock.is-koushintou .btn:hover {
  background: #a8d4d1;
}
.contBlock.is-koushintou .chk > li::before {
  background-image: url(https://sky0538.itembox.design/item/yoruneko-lp/img/chk-koushintou.svg);
}
.contBlock.is-triple .flex__item.is-solid {
  background: #E0C871;
}
.contBlock.is-triple .btn {
  background: #E0C871;
}
@media (max-width: 999px) {
  .contBlock.is-triple .btn img {
    width: 87px;
    right: -14px;
  }
}
.contBlock.is-triple .btn:hover {
  background: #e5d086;
}
@media (max-width: 999px) {
  .contBlock.is-triple .recom .flex {
    margin: -30px auto -23px;
  }
}
.contBlock.is-triple .chk > li::before {
  background-image: url(https://sky0538.itembox.design/item/yoruneko-lp/img/chk-triple.svg);
}
.contBlock.is-shiwa .flex__item.is-solid {
  background: #D8B09C;
}
.contBlock.is-shiwa .btn {
  background: #D8B09C;
}
@media (max-width: 999px) {
  .contBlock.is-shiwa .btn img {
    width: 89px;
    right: -17px;
  }
}
.contBlock.is-shiwa .btn:hover {
  background: #dfbfae;
}
.contBlock.is-shiwa .chk > li::before {
  background-image: url(https://sky0538.itembox.design/item/yoruneko-lp/img/chk-shiwa.svg);
}

.contBlock + .contBlock {
  margin-top: 180px;
}
@media (max-width: 999px) {
  .contBlock + .contBlock {
    margin-top: 167px;
  }
}

.recom {
  margin: 64px 0;
}
@media (max-width: 999px) {
  .recom {
    margin: 74px 0;
  }
}
.recom .whiteBg {
  border-radius: 30px;
  position: relative;
}
@media (max-width: 999px) {
  .recom .whiteBg {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 67px 5% 36px;
  }
}
.recom .flex {
  max-width: 800px;
  margin: -19px auto 20px;
}
@media (max-width: 999px) {
  .recom .flex {
    margin: -30px auto 22px;
  }
}
.recom__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  top: -42px;
  margin-bottom: -12px;
}
@media (max-width: 999px) {
  .recom__ttl img {
    max-width: 196px;
  }
}

.chk {
  padding-left: 40px;
}
@media (max-width: 999px) {
  .chk {
    padding-left: 15px;
  }
}
.chk > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-bottom: 5px;
}
@media (max-width: 999px) {
  .chk > li {
    margin-bottom: 12px;
  }
}
.chk > li::before {
  content: "";
  margin-top: 4px;
  background: url(https://sky0538.itembox.design/item/yoruneko-lp/img/chk.svg) no-repeat top center/21px 21px;
  margin-right: 10px;
  width: 21px;
  height: 21px;
  min-width: 21px;
  min-height: 21px;
}
@media (max-width: 999px) {
  .chk > li::before {
    margin-right: 5px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    background-size: 18px 18px;
  }
}

/* ==========================================================================
  btn
  ========================================================================== */
.btn {
  border-radius: 37px;
  max-width: 367px;
  height: 73px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #236EB4;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
}
@media (max-width: 999px) {
  .btn {
    font-size: 1.6rem;
    max-width: 257px;
    height: 65px;
  }
}
.btn:hover {
  background: #277bc9;
}
.btn img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn.is-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn.is-arrow > span {
  position: relative;
}
.btn.is-arrow > span::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  margin-left: 8px;
  position: relative;
  top: -3px;
}
.btn.is-sm {
  height: 60px;
}
.btn.is-reverse {
  background: #fff;
  color: #523597;
}
.btn.is-reverse:hover {
  background: rgba(255, 255, 255, 0.8);
}
.btn.is-reverse.is-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn.is-reverse.is-arrow > span::after {
  border-color: #523597;
}

.btnWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 999px) {
  .btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.btnWrap > li {
  max-width: 266px;
}
.btnWrap > li .btn {
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.161);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.161);
}
@media (max-width: 999px) {
  .btnWrap > li:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (min-width: 1000px) {
  .btnWrap > li {
    width: calc(33.3333333333% - 13.3333333333px);
  }
  .btnWrap > li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
}
@media (max-width: 999px) {
  .btnWrap > li {
    width: 100%;
  }
}

/* ==========================================================================
  parts
  ========================================================================== */
/* ==========================================================================
  sec
  ========================================================================== */
section {
  position: relative;
}
section .imgTtl {
  position: relative;
  top: -174px;
  margin-bottom: -174px;
  margin-left: auto;
  margin-right: auto;
}

.sec01 {
  padding-bottom: 154px;
}
@media (max-width: 999px) {
  .sec01 {
    padding-top: 73px;
    padding-bottom: 108px;
  }
}

.sec02 {
  padding-bottom: 56px;
}
@media (max-width: 999px) {
  .sec02 {
    padding-top: 102px;
    padding-bottom: 36px;
  }
}
.sec02 .period {
  margin-bottom: 22px;
}
@media (max-width: 999px) {
  .sec02 .period {
    margin-bottom: 26px;
  }
}
@media (max-width: 999px) {
  .sec02 .imgTtl {
    max-width: 316px;
    width: 100%;
  }
  .sec02 .imgTtl img {
    width: 100%;
  }
}
.sec02__txt01 {
  margin-top: 6px;
  margin-bottom: 15px;
}
@media (max-width: 999px) {
  .sec02__txt01 {
    margin-bottom: 23px;
  }
}
@media (max-width: 999px) {
  .sec02__icon img {
    max-width: 108px;
  }
}
.sec02__bnr {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -17px;
}
@media (max-width: 999px) {
  .sec02__bnr {
    margin-top: 11px;
    width: 104%;
  }
}
@media (max-width: 999px) {
  .sec02__txt02 {
    margin-top: 12px;
  }
}

.sec03 {
  padding-bottom: 100px;
}
@media (max-width: 999px) {
  .sec03 {
    padding-top: 85px;
    padding-bottom: 3px;
  }
}
@media (min-width: 1000px) {
  .sec03 .inner {
    max-width: calc(1000px + 10%);
  }
}
@media (max-width: 999px) {
  .sec03 .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.sec03__deco01 {
  right: 50px;
  top: -185px;
}
@media (max-width: 999px) {
  .sec03__deco01 {
    right: 24px;
    top: -193px;
    z-index: 1;
  }
}
@media (min-width: 1000px) {
  .sec03__deco02 {
    left: -2px;
    top: -125px;
  }
}
@media (max-width: 999px) {
  .sec03__deco02 {
    margin-left: -5%;
    top: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .sec03__deco02 img {
    width: 100px;
  }
}
.sec03__deco03 {
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 999px) {
  .sec03__deco03 {
    top: -50px;
  }
}
@media (min-width: 1000px) {
  .sec03__deco04 {
    right: -2px;
    top: -120px;
  }
}
@media (max-width: 999px) {
  .sec03__deco04 {
    left: 6%;
    top: -83px;
  }
  .sec03__deco04 img {
    width: 213px;
  }
}
.sec03__deco05 {
  left: 88px;
  top: -135px;
}
@media (max-width: 999px) {
  .sec03__deco05 {
    left: 33px;
    top: -92px;
  }
  .sec03__deco05 img {
    width: 155px;
  }
}
.sec03__deco06 {
  left: 94px;
  top: -158px;
}
@media (max-width: 999px) {
  .sec03__deco06 {
    width: 103px;
    left: 84px;
    top: -98px;
  }
}
.sec03__txt01 {
  margin-top: 24px;
}
@media (max-width: 999px) {
  .sec03__txt01 {
    margin-top: 14px;
  }
}
.sec03 .btn {
  position: relative;
  top: 29px;
  margin-bottom: -29px;
}
@media (max-width: 999px) {
  .sec03 .btn {
    top: 39px;
  }
}
@media (max-width: 999px) {
  .sec03 .btn img {
    right: -24px;
    margin-top: 7px;
  }
}

.sec04 {
  padding-top: 107px;
}
@media (max-width: 999px) {
  .sec04 {
    padding-top: 183px;
    padding-bottom: 30px;
  }
}
.sec04 .inner {
  max-width: calc(1000px + 10%);
  position: relative;
}
@media (max-width: 999px) {
  .sec04 .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 999px) {
  .sec04 .btn.is-arrow {
    max-width: 260px;
    height: 53px;
  }
}
.sec04 .patternBg {
  padding: 50px 5%;
}
@media (max-width: 999px) {
  .sec04 .patternBg {
    padding: 30px 22px 40px;
  }
}
.sec04__deco01 {
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 999px) {
  .sec04__deco01 {
    width: 129px;
    top: -49px;
    left: 48%;
  }
}
.sec04__deco02 {
  top: -264px;
  right: 8.5%;
}
@media (max-width: 999px) {
  .sec04__deco02 {
    top: -209px;
    right: 0;
  }
}
.sec04 .pic {
  max-width: 704px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 31px;
}
@media (max-width: 999px) {
  .sec04 .pic {
    margin-bottom: 18px;
    width: 86%;
  }
}
.sec04 .whiteBg {
  border-radius: 30px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 54px 5% 35px;
  line-height: 2;
}
@media (min-width: 1000px) {
  .sec04 .whiteBg {
    max-width: 824px;
  }
}
@media (max-width: 999px) {
  .sec04 .whiteBg {
    max-width: 500px;
  }
}
@media (max-width: 999px) {
  .sec04 .whiteBg {
    line-height: 1.35;
    margin-top: 18px;
    padding: 56px 5% 35px;
  }
  .sec04 .whiteBg .primary.font21 {
    line-height: 1.52;
  }
}
.sec04 .whiteBg p + p {
  margin-top: 10px;
}

.sec05 {
  padding-bottom: 170px;
}
@media (max-width: 999px) {
  .sec05 {
    padding-top: 50px;
    padding-bottom: 87px;
  }
}
.sec05 .img {
  margin: 60px 0 40px;
}
@media (max-width: 999px) {
  .sec05 .img {
    margin: 60px 0 30px;
  }
}
@media (max-width: 999px) {
  .sec05 .center.img {
    max-width: 308px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sec05 p + p {
  margin-top: 18px;
}
@media (max-width: 999px) {
  .sec05 p + p {
    margin-top: 32px;
  }
}
.sec05 .btnWrap {
  margin-top: 28px;
}
@media (max-width: 999px) {
  .sec05 .btnWrap {
    margin-top: 23px;
  }
}
.sec05__deco {
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 999px) {
  .sec05__deco img {
    max-width: 200px;
  }
}