@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: #eb6100;
}

.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-ic__arrow {
  background: url(../images/ic_arrow.png) no-repeat;
  background-size: 0.7em;
  background-position: left top 0.45em;
  padding-left: 0.9em;
}

.l-ic__arrow.-center {
  background-position: left center;
}

/*
⇒ グレー
*/
.l-ic__arrow__gray {
  background: url(../images/ic_arrow_gray.png) no-repeat;
  background-size: 0.7em;
  background-position: left top 0.4em;
  padding-left: 0.9em;
}

/*
行揃え
*/
.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 {
  background: url(../images/header_bg.png) no-repeat;
  background-size: cover;
  position: relative;
  padding: 30px 0 10px 0;
  overflow: hidden;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header {
    height: auto;
    padding: 2vw;
  }
}

.l-header::before {
  content: "";
  background: url(../images/header_moon.png) no-repeat;
  background-position: top right;
  max-width: 1200px;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header::before {
    content: "";
    width: 100%;
    background: url(../images/header_moon.png) no-repeat;
    background-position: top right -5vw;
    background-size: 23%;
    max-width: none;
  }
}

.l-header--inner {
  max-width: 1024px;
  width: 92%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 50px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header--inner {
    max-width: none;
    gap: 0 3vw;
  }
}

/*
  キャラクター
  */
.l-header--inner--character {
  width: 323px;
  position: relative;
  top: 20px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header--inner--character {
    top: 3vw;
  }
}

/*
  商品名
*/
.l-header--inner--img--01 {
  width: 481px;
  padding-bottom: 0;
}


/*--------------------------------------------
ナビ
--------------------------------------------*/
.l-nav {
  background: #072856;
  padding: 10px 0;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav {
    padding: 4px 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_blue.png) no-repeat;
  background-size: 1.3em;
  background-position: right 0.4em center;
  border: solid 2px #fff;
  color: #072856;
  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_blue.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: #072856 url(../images/ic_nav_white.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%;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-ttl {
    margin: 40px auto 0 auto;
    width: 100%;
  }
}

.l-ttl::before {
  background: url(../images/ic_ttl.png) no-repeat;
  background-size: 60px;
  background-position: top left;
  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: 47px;
    background-position: top left;
    content: "";
  }
}

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

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

.l-ttl h2 {
  background: #072856;
  color: #fff;
  display: block;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding: 0.3em 1.2em 0.35em 2.5em;
}

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

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


/*--------------------------------------------
sec00 注意事項
--------------------------------------------*/
.l-sec00--wraper {
  max-width: 1024px;
  margin: 30px auto;
  width: 92%;
}

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

.l-sec00--wraper a {
  color: #072856;
  font-weight: bold;
}


/*--------------------------------------------
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__checkbox {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 15px;
}

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

.l-point__txt__checkbox__ic {
  max-width: 76px;
  width: 20%;
}

.l-point__txt__checkbox__txt {
  max-width: 370px;
  padding: 0 0.7em;
  width: 50%;
  font-size: 20px;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-point__txt__checkbox__txt {
    width: 80%;
    padding: 0 0 0 0.7em;
    font-size: 15px;
  }
}

.l-point__txt__checkbox__btn {
  max-width: 215px;
  width: 30%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-point__txt__checkbox__btn {
    max-width: none;
    width: 70%;
    padding-top: 10px;
  }
}

.l-point__txt__img {
  margin-top: 1em;
}

.l-point__txt__img img {
  width: auto;
  max-width: 100%;
}

.l-point__txt__list {
  display: flex;
  align-items: center;
}

.l-point__txt__list dt {
  background: #f592c7;
  color: #fff;
  padding: 0.2em 0.8em;
  font-weight: bold;
  margin-right: 0.8em;
}

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

/* ttl */
.l-sec02--wraper__ttl {
  background: #E3F0FA;
  border-radius: 10px;
  padding: 0.4em 0.8em;
}

.l-sec02--wraper__ttl img {
  display: inline-block;
  width: 1.8em;
  vertical-align: middle;
  margin: -0.2em 0 0 0.5em;
}

.l-sec02--wraper__ttl img.-left {
  margin-left: 0;
  margin-right: 0.5em;
}

/* 2colbox */
.l-2colbox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 15px 1%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-2colbox {
    flex-flow: column;
    margin-top: 20px;
  }
}

/*
01
*/
.l-2colbox--01 {
  border-radius: 10px;
  border: solid 2px #072856;
  padding: 0.8em 1em 0.7em 1em;
  width: 49.5%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-2colbox--01 {
    width: 100%;
  }
}

.l-2colbox--01 img {
  width: 1.5em;
  vertical-align: middle;
  margin: -0.2em 0 0 0.5em;
}

/*
02
*/
.l-2colbox--02 {
  border-radius: 10px;
  border: solid 2px #072856;
  padding: 0.8em 1em 0.7em 1em;
  width: 49.5%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-2colbox--02 {
    width: 100%;
  }
}

.l-2colbox--02 img {
  width: 1.5em;
  vertical-align: middle;
  margin: -0.2em 0 0 0.3em;
}

.l-sec02__tbl {
  border-top: solid 1px #072856;
  border-left: solid 1px #072856;
}

.l-sec02__tbl th,
.l-sec02__tbl td {
  border-bottom: solid 1px #072856;
  border-right: solid 1px #072856;
  padding: 0.6em 1em;
  font-weight: 700;
}

.l-sec02__tbl th {
  background: #E3F0FA;
}

.l-sec02__tbl th {
  background: #004ea2;
  color: #fff;
}

.l-sec02__tbl th.-bg_blue,
.l-sec02__tbl td.-bg_blue {
  background: #E3F0FA;
}

.l-sec02__image {
  display: inline-block;
  color: #000;
  border: solid 1px #000;
  padding: 0.3em 0.5em;
}

/*
03
*/
.l-2colbox--03 {
  border: solid 2px #003686;
  display: flex;
  align-items: center;
  background-color: #003686;
  background-image: url(../images/ic_link_white.png);
  background-repeat: no-repeat;
  background-position: center right 1em;
  background-size: 1.7em;
  border-radius: 10px;
  width: 49.5%;
  padding: 0.8em;
  font-feature-settings: "palt";
  transition: 0.3s ease-in-out;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-2colbox--03 {
    border: solid 2px #003686;
    display: block;
    background-color: #003686;
    background-image: url(../images/ic_link_white.png);
    background-repeat: no-repeat;
    background-position: center right 1em;
    background-size: 2.5em;
    border-radius: 10px;
    text-align: left;
    width: 100%;
  }
}

.l-2colbox--03 p {
  color: #fff;
}

/********* pc *********/
@media only screen and (min-width: 751px) {
  .l-2colbox--03:hover {
    border: solid 2px #003686;
    text-decoration: none;
    background-color: #fff;
    background-image: url(../images/ic_link_blue.png);
    background-repeat: no-repeat;
    background-position: center right 1em;
    background-size: 1.7em;
    border-radius: 10px;
  }

  .l-2colbox--03:hover p {
    color: #003686;
  }
}



/*--------------------------------------------
sec04 為替リスク・諸費用
--------------------------------------------*/
.l-sec04--wraper {
  max-width: 1024px;
  margin: 30px auto 0 auto;
  width: 92%;
}

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

.l-risk {
  background: #fdf9ea;
  border: solid 2px #f39800;
}

.l-risk h3 {
  background: #f39800;
  color: #fff;
  padding: 0.3em 1em 0.35em 1em;
  font-weight: bold;
  text-align: center;
}

.l-risk--inner {
  width: 96.07%;
  margin: 20px auto 25px auto;
}

.l-ic__risk {
  background: #f39800;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  padding: 0.3em 1em 0.3em 3em;
  position: relative;
  font-weight: bold;
}

.l-ic__risk__icon {
  width: 1.7em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
}

.l-ic__risk__icon_02 {
  width: 1.4em;
  vertical-align: middle;
  margin: -0.2em 0.3em 0 0.3em;

}

.l-cost dt {
  border-left: solid 8px #003686;
  font-weight: bold;
  padding-left: 0.6em;
  margin-top: 40px;
}

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

.l-cost dt img {
  width: 1.3em;
  margin: 0 0.3em;
}

.l-cost dd {
  margin-top: 10px;
}

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

.l-list__box {
  border: solid 1px #000;
  padding: 0 20px 16px 20px;
}

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

/*
ご契約にあたって
*/
.l-ttl__agreement {
  background: #072856;
  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%;
  }
}

.l-cost--tbl {
  display: table;
  border: solid 1px #000;
  width: 100%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-cost--tbl {
    display: block;
  }
}

.l-cost--tbl li {
  display: table-cell;
  width: 50%;
  text-align: center;
  padding: 0.6em 0.5em 0.5em 0.5em;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-cost--tbl li {
    display: block;
    padding: 0.4em 0.5em 0.5em 0.5em;
    width: 100%;
  }
}

.l-cost--tbl--th {
  background: #E3F0FA;
  border-right: solid 1px #000;
  vertical-align: middle;
}
/********* sp *********/
@media only screen and (max-width: 840px) {
  .l-cost--tbl li strong {
    display: block;
  }
}
@media only print {
  .l-cost--tbl li strong {
    display: block;
  }
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-cost--tbl li strong {
    display: inline;
  }
  .l-cost--tbl--th {
    border-right: none;
    border-bottom: solid 1px #000;
  }
}


/*--------------------------------------------
footer
--------------------------------------------*/
.l-footer {
  border-top: solid 6px #003686;
  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 {
  position: fixed;
  right: 20px;
  bottom: 18px;
}

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

.l-btn__pagetop img {
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
  border: solid 2px #fff;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-btn__pagetop img {
    width: 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);
  }
}


/*--------------------------------------------
rate
--------------------------------------------*/
.l-rate {
  width: 100%;
  padding: 30px 0;
  background: #efefef;
  text-align: center;
}

.l-rate a {
  display: block;
  max-width: 686px;
  width: 90%;
  margin: 0 auto;
}


/*--------------------------------------------
pamphlet
--------------------------------------------*/
.l-pamphlet {
  width: 100%;
  padding: 60px 0 0 0;
  text-align: center;
}

.l-pamphlet__img {
  display: block;
  max-width: 693px;
  width: 90%;
  margin: 0 auto;
}

.l-pamphlet__btn {
  display: block;
  max-width: 686px;
  width: 90%;
  margin: 20px auto 0 auto;
}