@charset "utf-8";

/*
注釈 1文字
*/
.l-list {
  margin-top: 15px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-list {
    margin-top: 10px;
  }
}

.l-list li {
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

/*
注釈 ＊1
*/
.l-list__02 {
  margin-top: 15px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-list__02 {
    margin-top: 10px;
  }
}

.l-list__02 li {
  line-height: 1.4;
  text-indent: -1.95em;
  padding-left: 1.95em;
}

/*
フォントカラー
*/
.l-fc__red {
  color: #d0111b;
}

.l-fc__red_02 {
  color: #ff0000;
}

.l-fc__orange {
  color: #ed9a13;
}

.l-fc__white {
  color: #fff;
}

.l-fc__green {
  color: #007f7c;
}

.l-fc__yellow {
  color: #f8b500;
}

/*
行揃え
*/
.l-txt__l {
  text-align: left;
}

.l-txt__c {
  text-align: center;
}

.l-txt__r {
  text-align: right;
}

/*
2col
*/
.l-txt__col {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}


/*--------------------------------------------
ヘッダー
--------------------------------------------*/
.l-header {
  width: 100%;
  position: relative;
  background: url(../images/header_bg.png) no-repeat;
  background-position: top right;
  background-size: 275px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header {
    background: url(../images/header_bg.png) no-repeat;
    background-position: top right;
    background-size: 25%;
  }
}

.l-header--inner {
  max-width: 1368px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4.181%;
}

/*
  キャラクター
  */
.l-header--inner--character {
  width: 50%;
  padding-top: 12px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header--inner--character {
    padding-top: 2vw;
  }
}

/*
  商品名
*/
.l-header--inner--txt {
  width: 30.701%;
  padding-top: 8px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header--inner--txt {
    padding-top: 0.8vw;
  }
}


/*--------------------------------------------
ナビ
--------------------------------------------*/
.l-nav {
  background: #ac895c;
  padding: 15px 0;
  margin-top: 12px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav {
    padding: 7px 0;
  }
}

.l-nav--inner {
  display: flex;
  margin: 0 auto;
  max-width: 1024px;
  width: 92%;
  gap: 0 2%;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav--inner {
    width: 96%;
  }
}

.l-nav--inner li {
  width: 32%;
}

.l-nav--inner li a {
  background: #fff url(../images/ic_nav.png) no-repeat;
  background-size: 1.3em;
  background-position: right 0.4em center;
  border: solid 2px #fff;
  color: #d0111b;
  display: block;
  font-weight: bold;
  line-height: 1.1;
  padding: 0.6em 1.8em 0.6em 1.5em;
  height: 100%;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav--inner li a {
    background: #fff url(../images/ic_nav.png) no-repeat;
    background-size: 1em;
    background-position: right 0.2em center;
    padding: 0.6em 1em 0.6em 0.1em;
    text-align: left;
  }
}

/*
マウスオーバー（PCのみ）
*/
@media only screen and (min-width: 751px) {
  .l-nav--inner li a:hover {
    background: #d0111b url(../images/ic_nav_hover.png) no-repeat;
    background-size: 1.3em;
    background-position: right 0.4em center;
    text-decoration: none;
    color: #fff;
  }
}


/*--------------------------------------------
コンテンツ
--------------------------------------------*/
.l-ttl {
  position: relative;
  max-width: 1024px;
  margin: 100px auto 0 auto;
  width: 92%;
  overflow: hidden;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-ttl {
    margin: 40px auto 0 auto;
    width: 100%;
  }
}

.l-ttl.-high {
  margin-top: 150px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-ttl.-high {
    margin-top: 60px;
  }
}

.l-ttl::before {
  background: url(../images/ic_ttl.svg) no-repeat;
  background-size: 95px;
  background-position: bottom -1px left -10px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-ttl::before {
    background: url(../images/ic_ttl.svg) no-repeat;
    background-size: 60px;
    background-position: bottom -1px left -6px;
  }
}

.l-ttl__top {
  margin-top: 60px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-ttl__top {
    margin-top: 30px;
  }
}

.l-ttl h2 {
  background: linear-gradient(to right, #ac895c 50%, #e6cb82 75%, #ac895c 100%);
  color: #fff;
  display: block;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding: 0.3em 1.2em 0.35em 3em;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-ttl h2 {
    font-size: 22px;
    padding: 0.3em 1.2em 0.35em 3em;
  }
}

.l-ttl h2 span {
  color: #fff;
}


/*--------------------------------------------
sec01
--------------------------------------------*/
.l-sec01--wraper {
  max-width: 1024px;
  margin: 0 auto;
  width: 92%;
}

.l-point {
  display: table;
  border-bottom: solid 2px #d8d8d8;
  padding: 20px 0;
  width: 100%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-point {
    padding: 12px 0;
  }
}

.l-point__ic {
  display: table-cell;
  width: 98px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-point__ic {
    width: 15%;
  }
}

.l-point__txt {
  display: table-cell;
  padding: 5px 2.8%;
  font-size: 26px;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .l-point__txt {
    font-size: 19px;
  }
}

.l-point__txt__dot {
  display: inline-block;
  position: relative;
}

.l-point__txt__dot::after{
  content: "";
  position: absolute;
  top: -0.15em;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background: #d0111b;
  border-radius: 3px;
}
@media only screen and (max-width: 750px) {
  .l-point__txt__dot::after {
    width: 4px;
    height: 4px;
    border-radius: 2px;
  }
}

@media only screen and (max-width: 750px) {
  .l-point__txt p br {
    display: none;
  }
}

.l-point__flex {
  display: flex;
  gap: 0 20px;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .l-point__flex {
    display: block;
  }
}


/* もしもの準備 */
.l-point__txt__moshimo {
  font-size: 26px;
  background: #fdeef1;
  border: solid 2px #e95377;
  padding: 0.2em 1.5em 0.15em 1.5em;
}
@media only screen and (max-width: 750px) {
  .l-point__txt__moshimo {
    width: fit-content;
    margin: 0.3em 0 0 auto;
    font-size: 19px;
  }
}

.l-point__txt__moshimo span {
  color: #e95377;
}


/* みらいの準備 */
.l-point__txt__mirai {
  width: fit-content;
  font-size: 26px;
  background: #fffbe3;
  border: solid 2px #8c502b;
  padding: 0.2em 1.5em 0.15em 1.5em;
  margin-left: auto;
}
@media only screen and (max-width: 750px) {
  .l-point__txt__mirai {
    margin-top: 0.3em;
    font-size: 19px;
  }
}

.l-point__txt__mirai span {
  color: #8c502b;
}


/*--------------------------------------------
特長02
--------------------------------------------*/
.l-txtbox {
  border-radius: 10px;
  overflow: hidden;
  background: #f2ede2;
  padding: 20px 25px;
}

/*
checkbox
*/
.l-checkbox {
  display: flex;
  flex-flow: column;
  gap: 1em 0;
}

.l-checkbox > li {
  background: url(../images/ic_check.svg) no-repeat;
  background-size: 1.6em;
  background-position: left top;
  padding-left: 4.5rem;
  position: relative;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-checkbox>li {
    padding-left: 3.2rem;
  }
}

.l-checkbox > li:first-child {
  border-bottom: 1px dashed rgba(153, 153, 153, 0.3);
  padding-bottom: 1em;
}

.l-obstacle {
  overflow: hidden;
  margin-top: 0.5em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-obstacle {
    margin-top: 0;
  }
}

.l-obstacle li {
  float: left;
  line-height: 1.2;
  padding: 0.3em;
  margin: 0.2em 1em 0.2em 0;
  background: #fff;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-obstacle li {
    margin-top: 0.3em;
    margin-right: 1em;
  }
}

.l-txtbox .u-list li {
  padding-left: 1.9em;
  text-indent: -1.9em;
}


/*--------------------------------------------
l-sec02
--------------------------------------------*/
.l-sec02--wraper {
  max-width: 1024px;
  margin: 30px auto 0 auto;
  width: 92%;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-sec02--wraper {
    margin: 15px auto 0 auto;
  }
}

.l-sec02--wraper__head {
  display: flex;
  align-items: end;
  gap: 0 6%;
}

.l-sec02--wraper__head__left__txt {
  padding-bottom: 0.2em;
  margin-bottom: 0.3em;
  border-bottom: solid 1px #aaa;
}

.l-sec02--wraper__man {
  background: #a1cbed;
  padding: 0.2em 0.5em;
}

.l-sec02--wraper__woman {
  background: #f5b2b2;
  padding: 0.2em 0.5em;
}

.l-sec02--wraper h3 {
  position: relative;
  z-index: 0;
}

.l-sec02--wraper h3::after {
  content: "";
  background: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.l-sec02--wraper h3 span {
  display: inline-block;
  padding-right: 0.8em;
  background: #fff;
}

.l-sec02--wraper__drawing_box {
  display: flex;
  justify-content: space-between;
}

.l-sec02--wraper__drawing_box__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  padding: 0 11px;
  text-align: center;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-sec02--wraper__drawing_box__ttl {
    width: 6vw;
    padding: 0 1vw;
  }
}

.l-sec02--wraper__drawing_box__ttl.-moshimo {
  border: solid 2px #e95377;
  background: #fdeef1;
}

.l-sec02--wraper__drawing_box__ttl.-mirai {
  border: solid 2px #8c502b;
  background: #fffbe3;
}

.l-sec02--wraper__drawing_box__img {
  width: calc(100% - 80px);
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-sec02--wraper__drawing_box__img {
    width: calc(100% - 8vw);
  }
}

.l-sec02--wraper h4 {
  display: block;
  position: relative;
  padding-left: 3.4em;
}

.l-sec02--wraper h4::before {
  content: "";
  background: url(../images/ic_4.svg) no-repeat;
  background-size: cover;
  width: 3.2em;
  height: 3.2em;
  position: absolute;
  top: -0.7em;
  left: 0;
}

/*--------------------------------------------
sec03
--------------------------------------------*/
.l-sec03--wraper {
  max-width: 1024px;
  margin: 30px auto 0 auto;
  width: 92%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-sec03--wraper {
    margin: 15px auto 0 auto;
  }
}


/*--------------------------------------------
ご契約にあたって
--------------------------------------------*/
.l-agreement_box {
  max-width: 1024px;
  margin: 30px auto 0 auto;
  width: 92%;
}

.l-ttl__agreement {
  background: linear-gradient(to right, #ac895c 50%, #fce3a1 75%, #ac895c 100%);
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 0.3em;
  font-weight: bold;
}

.l-agreement {
  border-top: solid 2px #b3b3b3;
}

.l-agreement li {
  overflow: hidden;
  border-bottom: solid 2px #b3b3b3;
  padding: 0.8em 0.2em 0.7em 0.2em;
}

.l-agreement--left {
  float: left;
  width: 30%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-agreement--left {
    width: 35%;
  }
}

.l-agreement--right {
  float: right;
  width: 65%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-agreement--right {
    width: 60%;
  }
}


/*--------------------------------------------
footer
--------------------------------------------*/
.l-footer {
  border-top: solid 6px #ac895c;
  padding-bottom: 70px;
  position: relative;
  margin-top: 80px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer {
    padding-bottom: 60px;
    margin-top: 40px;
  }
}

.l-footer--inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 0;
  width: 94%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer--inner {
    padding: 10px 0;
  }
}

.l-orix__logo {
  max-width: 317px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-orix__logo {
    max-width: 250px;
  }
}

.l-footer--link {
  position: absolute;
  top: 26px;
  right: 0;
  overflow: hidden;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer--link {
    top: 10px;
  }
}

.l-footer--link li {
  float: left;
  padding-left: 1em;
}

.l-footer--no {
  font-size: 12px;
  position: absolute;
  bottom: 45px;
  right: 0;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer--no {
    margin-top: 0.5em;
    font-size: 10px;
    position: static;
    text-align: right;
  }
}

.l-footer--copyright {
  font-size: 12px;
  position: absolute;
  bottom: 20px;
  right: 0;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer--copyright {
    font-size: 10px;
    margin-top: 0.5em;
    position: static;
    text-align: center;
  }
}


/*
閉じるボタン
*/
.l-bnt__close {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 230px;
  height: 56px;
  margin-left: -115px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-bnt__close {
    position: absolute;
    left: 20px;
    bottom: 17px;
    margin-left: 0;
    height: 36px;
  }
}

.l-bnt__close a {
  background: #003686 url(../images/ic_close.png) no-repeat;
  background-size: 1.2em;
  background-position: left 28px center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  padding: 15px 0 0 1em;
  width: 230px;
  height: 56px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-bnt__close a {
    background: #003686 url(../images/ic_close.png) no-repeat;
    background-size: 0.8em;
    background-position: left 8px center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    padding: 7px 0 0 0.5em;
    height: 36px;
  }
}


/*--------------------------------------------
page top ボタン
--------------------------------------------*/
.l-btn__pagetop {
  background: #d0111b;
  position: fixed;
  right: 20px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  border: solid 2px #fff;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-btn__pagetop {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
}



/*--------------------------------------------
オンマウスで透過（PCのみ）
--------------------------------------------*/
@media only screen and (min-width: 751px) {
  .l-ov__alpha:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}