@charset "UTF-8";

/*-----
2022-09 追加
-----*/

.radioBlk.disabled > dl {
	background: #eee;
}
.radioBlk.disabled input[type="radio"] + dl::before {
	background: #eee;
}

/*---*/

* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
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;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

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%;
  background: transparent;
  color: #333;
}

/* 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;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 52.5%;
}

@media screen and (min-width: 350px) {
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 414px) {
  html {
    font-size: 72.5%;
  }
}

@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  width: 100%;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.7rem;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 6%;
  }
}

.inner_s {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
テキスト
------------------------------------*/
.bold {
  font-weight: bold;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

/* ヘッダー
-------------------------------------------*/
.header {
  width: 100%;
  z-index: 100;
  background: url(../img/header_wave.png) left top no-repeat;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  .header {
    background-image: url(../img/header_wave_sp.png);
    background-position: left bottom;
  }
}

.header_wrap {
  padding: 30px 0;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 991px) {
  .header_wrap {
    padding: 15px 0 30px;
  }
}

.header_inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .header_inner {
    min-width: 960px;
  }
}

@media screen and (max-width: 991px) {
  .header_inner {
    padding: 0 6%;
  }
}

.header_logo {
  height: 58px;
  display: flex;
  align-items: flex-end;
}


@media screen and (max-width: 991px) {
  .header_logo {
    height: auto;
    align-items: center;
  }
}

.header_logo > img {
  height: 100%;
}

.header_logo > span {
  font-weight: bold;
  padding-left: 30px;
  padding-bottom: 5px;
  color: #193547;
  font-size: 2.8rem;
  line-height: 1;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

@media screen and (max-width: 991px) {
  .header_logo > span {
    font-size: 1.4rem;
    padding: 0 0 0 5px;
  }
}

main {
  padding-bottom: 100px;
}

@media screen and (max-width: 991px) {
  main {
    padding-bottom: 70px;
  }
}

/*------------------------------------
フッター
------------------------------------*/
.footer {
  border-top: 1px solid #bbbbbb;
  padding: 70px 0 10px;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 30px 0 10px;
    margin: auto;
    width: 88%;
  }
  .footer .inner {
    padding: 0;
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    margin-bottom: 30px;
  }
}

.footer-logo img {
  height: 58px;
}

@media screen and (max-width: 991px) {
  .footer-logo img {
    height: 30px;
  }
}

.footer .t1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .footer .t1 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .footer-nav {
    justify-content: space-between;
  }
}

.footer-nav li {
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .footer-nav li {
    font-size: 1.1rem;
  }
}

.footer-nav li + li {
  margin-left: 10%;
}

@media screen and (max-width: 991px) {
  .footer-nav li + li {
    margin-left: 5%;
  }
}

.footer-nav li a:hover {
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  margin: 60px 0 0;
}

@media screen and (max-width: 991px) {
  .footer-copyright {
    margin: 40px 0 0;
  }
}

.footer-copyright small {
  color: #bbbbbb;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .footer-copyright small {
    font-size: 1rem;
  }
}

.flex-2col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .flex-2col .item {
    width: 48%;
  }
  .flex-2col .item .select {
    width: 100%;
  }
  .flex-2col .item .ttl-select {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .flex-2col .item {
    width: 100%;
  }
  .flex-2col .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

/* list
-------------------------------------------*/
.caution-right {
  display: table;
  margin: 20px 0 0 auto;
}

@media screen and (max-width: 991px) {
  .caution-right {
    margin: 15px 0 0 0;
  }
}

.caution-right > li {
  position: relative;
  padding-left: 1.3em;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .caution-right > li {
    font-size: 1.2rem;
  }
}

.caution-right > li::before {
  content: "※";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.caution {
  margin-top: 10px;
}

.caution li {
  font-size: 1.8rem;
  position: relative;
  padding-left: 1.3em;
}

@media screen and (max-width: 991px) {
  .caution li + li {
    margin-top: 5px;
  }
}

@media screen and (max-width: 991px) {
  .caution li {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.caution li::before {
  content: "※";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list-caution-no {
  margin-top: 10px;
}

.list-caution-no li {
  font-size: 1.8rem;
  position: relative;
  padding-left: 2.5em;
}
.disp_standing_order {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .list-caution-no li + li {
    margin-top: 5px;
  }
}

@media screen and (max-width: 991px) {
  .list-caution-no li {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.list-caution-no li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list-caution-no li:nth-child(1)::before {
  content: "※1";
}

.list-caution-no li:nth-child(2)::before {
  content: "※2";
}

.list-caution-no li:nth-child(3)::before {
  content: "※3";
}

.list-caution-no li:nth-child(4)::before {
  content: "※4";
}

.list-caution-no li:nth-child(5)::before {
  content: "※5";
}

.list-dot {
  margin-top: 10px;
}

.list-dot li {
  font-size: 1.8rem;
  position: relative;
  padding-left: 1.3em;
}

@media screen and (max-width: 991px) {
  .list-dot li + li {
    margin-top: 5px;
  }
}

@media screen and (max-width: 991px) {
  .list-dot li {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.list-dot li a {
  color: #005dff;
  text-decoration: underline;
}

.list-dot li a:hover {
  text-decoration: none;
}

.list-dot li::before {
  content: "・";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

/* link
-------------------------------------------*/
.link-outer {
  position: relative;
  padding-right: 35px;
  text-decoration: underline;
}

.link-outer:hover {
  text-decoration: none;
}

.link-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 31px;
  height: 27px;
  background: url(../img/icon_outer.svg) left center no-repeat;
  background-size: contain;
}

/* 現在地ナビ
-------------------------------------------*/
.stepNav {
  padding: 50px 0 80px;
}

.stepNav .inner {
  padding: 0 4%;
}

@media screen and (max-width: 991px) {
  .stepNav {
    padding: 20px 0 25px;
  }
}

.stepNav ul {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .stepNav ul {
    position: relative;
    justify-content: space-between;
  }
  .stepNav ul::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    margin: auto;
    background: #d2d5d8;
    width: 80%;
    height: 1px;
  }
}

.stepNav ul li {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .stepNav ul li {
    flex-direction: column;
    width: 25%;
    position: relative;
    z-index: 2;
  }
  .stepNav ul li::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    width: 45px;
    height: 100%;
    z-index: -1;
  }
}

.stepNav ul li .no {
  background: #d2d5d8;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: bold;
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .stepNav ul li .no {
    font-size: 1.3rem;
    width: 35px;
    height: 35px;
    margin-right: 0;
    padding: 0 5px;
    position: relative;
  }
  .stepNav ul li .no::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

.stepNav ul li .t1 {
  line-height: 1.4;
  font-size: 1.7rem;
  font-weight: bold;
  color: #b4b2b2;
}

@media screen and (max-width: 991px) {
  .stepNav ul li .t1 {
    font-size: 1rem;
    text-align: center;
    padding-top: 5px;
    white-space: nowrap;
  }
}

.stepNav ul li:not(:last-child) {
  margin-right: 20px;
}

.stepNav ul li:not(:last-child) .t1 {
  padding-right: 90px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .stepNav ul li:not(:last-child) .t1 {
    padding-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .stepNav ul li:not(:last-child) .t1::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 77px;
    height: 2px;
    background: #b4b2b2;
  }
}

.stepNav ul li.active .no {
  background: #21445b;
}

.stepNav ul li.active .t1 {
  color: #21445b;
}

/*------------------------------------
ブロック間の余白
------------------------------------*/
.section + .section {
  margin-top: 120px;
}

@media screen and (max-width: 991px) {
  .section + .section {
    margin-top: 50px;
  }
}

.section-s + .section-s {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .section-s + .section-s {
    margin-top: 45px;
  }
}

.section-ss + .section-ss {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .section-ss + .section-ss {
    margin-top: 30px;
  }
}

/*------------------------------------
タイトル
------------------------------------*/
.ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  color: #34627f;
  margin-bottom: 45px;
  padding-bottom: 35px;
  background: url(../img/title_bg.png) bottom center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .ttl {
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
}

.ttl-m {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  color: #21445b;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .ttl-m {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

.ttl-bg {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  background: #a4b1b9;
  padding: 5px 0;
  margin-bottom: 30px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .ttl-bg {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.ttl-select {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .ttl-select {
    margin-bottom: 10px;
  }
}

.ttl-select > span {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .ttl-select > span {
    font-size: 1.7rem;
  }
}

.ttl-select .hisu {
  background: #d1626e;
  color: #fff;
  line-height: 1;
  font-size: 1.6rem;
  padding: 5px;
  margin-left: 10px;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .ttl-select .hisu {
    font-size: 1rem;
  }
}

.prefSelect dl dt.ttl-select {
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .prefSelect dl dt.ttl-select {
    margin-bottom: 10px;
  }
}

.prefSelect dl dd {
  display: table;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .prefSelect dl dd {
    display: block;
    width: 95%;
  }
}

.prefSelect dl dd .select {
  width: 440px;
}

@media screen and (max-width: 991px) {
  .prefSelect dl dd .select {
    width: 100%;
  }
}

.prefSelect dl dd p {
  margin-top: 10px;
  font-size: 1.7rem;
  text-align: right;
}

@media screen and (max-width: 991px) {
  .prefSelect dl dd p {
    font-size: 1rem;
  }
}

.boxWater {
  margin: auto;
  max-width: 640px;
  background: #f1f8fc;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .boxWater {
    width: 95%;
    padding: 10px;
    display: block;
    margin-top: 20px;
  }
}

.boxWater > dl > dt {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dt {
    font-size: 1.4rem;
    text-align: center;
  }
}

.boxWater > dl > dt > span {
  color: #21445b;
  font-weight: bold;
}

.boxWater > dl > dd {
  display: flex;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item {
    letter-spacing: -0.01em;
  }
}

.boxWater > dl > dd > .item:nth-child(1) {
  margin-right: 30px;
  width: 140px;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item:nth-child(1) {
    margin-right: 10px;
    width: 30%;
  }
}

.boxWater > dl > dd > .item:nth-child(2) > span {
  font-size: 1.8rem;
  margin-bottom: 5px;
  display: block;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item:nth-child(2) > span {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

.boxWater > dl > dd > .item:nth-child(2) .price {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item:nth-child(2) .price {
    margin-top: -1em;
    letter-spacing: 0.01em;
  }
}

.boxWater > dl > dd > .item:nth-child(2) .price > .item {
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item:nth-child(2) .price > .item {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.boxWater > dl > dd > .item:nth-child(2) .price > .item .t1 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #e63245;
  padding-right: 5px;
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item:nth-child(2) .price > .item .t1 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  .boxWater > dl > dd > .item:nth-child(2) .price > .item .t2 {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
}

.boxWater-caution {
  margin-top: 10px;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .boxWater-caution {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }
}

.boxWater + p {
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .boxWater + p {
    text-align: right;
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

.listItems .item {
  display: block;
}

.listItems .item + .item {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .listItems .item + .item {
    margin-top: 20px;
  }
}

.chkBlk,
.radioBlk {
  position: relative;
}

.chkBlk input[type="checkbox"],
.radioBlk input[type="checkbox"] {
  position: absolute;
  display: none;
}

.chkBlk input[type="checkbox"]:checked + dl,
.radioBlk input[type="checkbox"]:checked + dl {
  background: #f5f5f5;
}

.chkBlk input[type="checkbox"]:checked + dl::before,
.radioBlk input[type="checkbox"]:checked + dl::before {
  background: #37759b;
  border: 1px solid #37759b;
}

.chkBlk input[type="checkbox"]:checked + dl::after,
.radioBlk input[type="checkbox"]:checked + dl::after {
  opacity: 1;
}

.chkBlk input[type="checkbox"] + dl::before,
.radioBlk input[type="checkbox"] + dl::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 20px;
  margin: auto;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #707070;
}

@media screen and (max-width: 991px) {
  .chkBlk input[type="checkbox"] + dl::before,
  .radioBlk input[type="checkbox"] + dl::before {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 15px;
  }
}

.chkBlk input[type="checkbox"] + dl::after,
.radioBlk input[type="checkbox"] + dl::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 10px;
  height: 20px;
  left: 32px;
  top: 42px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 991px) {
  .chkBlk input[type="checkbox"] + dl::after,
  .radioBlk input[type="checkbox"] + dl::after {
    width: 8px;
    height: 15px;
    top: 25px;
    left: 27px;
  }
}

.chkBlk input[type="radio"],
.radioBlk input[type="radio"] {
  position: absolute;
  display: none;
}

.chkBlk input[type="radio"]:checked + dl,
.radioBlk input[type="radio"]:checked + dl {
  background: #f5f5f5;
}

.chkBlk input[type="radio"]:checked + dl::before,
.radioBlk input[type="radio"]:checked + dl::before {
  background: #fff;
}

.chkBlk input[type="radio"]:checked + dl::after,
.radioBlk input[type="radio"]:checked + dl::after {
  opacity: 1;
}

.chkBlk input[type="radio"] + dl::before,
.radioBlk input[type="radio"] + dl::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 20px;
  margin: auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e6e5e5;
}

@media screen and (max-width: 991px) {
  .chkBlk input[type="radio"] + dl::before,
  .radioBlk input[type="radio"] + dl::before {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 15px;
  }
}

.chkBlk input[type="radio"] + dl::after,
.radioBlk input[type="radio"] + dl::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 23px;
  height: 23px;
  left: 26px;
  top: 44px;
  margin: auto;
  border-radius: 50%;
  background: #d1626e;
}

@media screen and (max-width: 991px) {
  .chkBlk input[type="radio"] + dl::after,
  .radioBlk input[type="radio"] + dl::after {
    width: 18px;
    height: 18px;
    left: 21px;
    top: 26px;
  }
}

.chkBlk > dl,
.radioBlk > dl {
  padding: 35px 25px 35px 80px;
  position: relative;
  height: 100%;
  border: 3px solid #d6d5d5;
  border-radius: 8px;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .chkBlk > dl,
  .radioBlk > dl {
    padding: 23px 20px 23px 60px;
  }
}

.chkBlk > dl dt,
.radioBlk > dl dt {
  font-size: 2.6rem;
  font-weight: bold;
  color: #21445b;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .chkBlk > dl dt,
  .radioBlk > dl dt {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}

.chkBlk > dl dt > span,
.radioBlk > dl dt > span {
  font-size: 2.2rem;
  color: #444444;
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .chkBlk > dl dt > span,
  .radioBlk > dl dt > span {
    font-size: 1.2rem;
    padding-left: 10px;
  }
}

.chkBlk > dl dd p,
.radioBlk > dl dd p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .chkBlk > dl dd p,
  .radioBlk > dl dd p {
    font-size: 1.2rem;
  }
}

.chkBlk-present,
.radioBlk-present {
  display: flex;
  align-items: center;
  border-top: 1px solid #707070;
  padding-top: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .chkBlk-present,
  .radioBlk-present {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
    margin-top: 15px;
  }
}

.chkBlk-present > span,
.radioBlk-present > span {
  font-size: 2.2rem;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .chkBlk-present > span,
  .radioBlk-present > span {
    font-size: 1.4rem;
    padding-right: 0;
    margin-bottom: 5px;
    line-height: 1.5;
  }
}

.chkBlk-present .select,
.radioBlk-present .select {
  background: #fff;
}

.chkBlk-card,
.radioBlk-card {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .chkBlk-card,
  .radioBlk-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.chkBlk-card > span,
.radioBlk-card > span {
  font-size: 1.8rem;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .chkBlk-card > span,
  .radioBlk-card > span {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

.chkBlk-card > img,
.radioBlk-card > img {
  max-width: 327px;
}

@media screen and (max-width: 991px) {
  .chkBlk-card > img,
  .radioBlk-card > img {
    width: 90%;
  }
}

.chkBlk .commission_free,
.radioBlk .commission_free {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 85px;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .chkBlk .commission_free,
  .radioBlk .commission_free {
    max-width: 60px;
    right: 10px;
    top: 10px;
  }
}

.chkBlk .baloon,
.radioBlk .baloon {
  left: 80px;
  top: -20px;
}

@media screen and (max-width: 991px) {
  .chkBlk .baloon,
  .radioBlk .baloon {
    left: 60px;
  }
}

@media screen and (max-width: 991px) {
  .chkBlk.--credit,
  .radioBlk.--credit {
    margin-top: 35px;
  }
}

@media screen and (max-width: 991px) {
  .chkBlk.--credit .baloon,
  .radioBlk.--credit .baloon {
    left: 15px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #c4af90;
  color: #c4af90;
  border-radius: 50px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 10px 20px;
  margin: 10px 0 0 auto;
  width: 60%;
  max-width: 200px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .btn {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .btn:hover {
    background: #c4af90;
    color: #fff;
  }
}

@media screen and (max-width: 991px) {
  .btn {
    font-size: 1.2rem;
    padding: 8px 15px;
    margin: 15px 0 0 auto;
  }
}

.baloon {
  position: absolute;
  padding: 0 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #32b9dc;
  line-height: 40px;
  border-radius: 50px;
  min-width: 160px;
  color: #fff;
  font-weight: bold;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .baloon {
    min-width: inherit;
    font-size: 1.2rem;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
  }
}

.baloon > span {
  position: relative;
  white-space: nowrap;
}

.baloon > span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 11px 0 11px;
  border-color: #32b9dc transparent transparent transparent;
}

@media screen and (max-width: 991px) {
  .baloon > span::after {
    bottom: -8px;
  }
}

.priceGuide {
  background: #f1f8fc;
  padding: 35px;
  max-width: 640px;
  width: 100%;
  margin: 50px auto 0;
}

@media screen and (max-width: 991px) {
  .priceGuide {
    padding: 20px;
  }
}

.priceGuide > dl > dt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .priceGuide > dl > dt {
    font-size: 1.6rem;
    margin-bottom: 7px;
  }
}

.priceGuide > dl > dd > p {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .priceGuide > dl > dd > p {
    font-size: 1.2rem;
  }
}

.priceGuide-box {
  background: #fff;
  padding: 25px 8%;
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .priceGuide-box {
    margin-top: 10px;
    padding: 20px 6%;
  }
}

.priceGuide-box > dl > dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #34627f;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dt {
    font-size: 1.4rem;
  }
}

.priceGuide-box > dl > dd .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .flex {
    justify-content: space-between;
  }
}

.priceGuide-box > dl > dd .flex > img {
  max-width: 150px;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .flex > img {
    width: 42%;
  }
}

.priceGuide-box > dl > dd .flex > div {
  padding-left: 35px;
  font-size: 2.4rem;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .flex > div {
    width: 50%;
    font-size: 1.4rem;
    padding-left: 0;
    text-align: center;
    white-space: nowrap;
  }
}

.priceGuide-box > dl > dd .flex > div > b {
  font-size: 5rem;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .flex > div > b {
    font-size: 2.5rem;
  }
}

.priceGuide-box > dl > dd .price {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .price {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.priceGuide-box > dl > dd .price .t1 {
  font-size: 4.2rem;
  font-weight: bold;
  padding-right: 3px;
  color: #e63245;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .price .t1 {
    font-size: 2.5rem;
  }
}

.priceGuide-box > dl > dd .price .t2 {
  font-size: 1.6rem;
  font-weight: normal;
  padding-left: 5px;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl > dd .price .t2 {
    font-size: 1.2rem;
  }
}

.priceGuide-box > dl + dl {
  border-top: 2px solid #e8e8e8;
  margin-top: 20px;
  padding-top: 25px;
}

@media screen and (max-width: 991px) {
  .priceGuide-box > dl + dl {
    margin-top: 15px;
    padding-top: 20px;
  }
}

.btnArea {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .btnArea {
    margin-top: 40px;
  }
}

/* btn
-------------------------------------------*/
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.btn-form {
  display: flex;
  justify-content: center;
  background: #fcb232;
  border: 2px solid #fcb232;
  color: #fff;
  border-radius: 10px;
  font-size: 2.6rem;
  line-height: 1.4;
  padding: 20px 20px;
  cursor: pointer;
  margin: auto;
  width: 85%;
  max-width: 440px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .btn-form {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .btn-form:hover {
    background: #fff;
    color: #fcb232;
  }
}

@media screen and (max-width: 991px) {
  .btn-form {
    font-size: 1.8rem;
  }
}

.btn-back {
  display: flex;
  justify-content: center;
  background: #ebf6fb;
  border: 1px solid #bbbbbb;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 15px 20px;
  margin: 60px auto 0;
  width: 55%;
  max-width: 240px;
  font-weight: normal;
  text-align: center;
  color: #333;
}

@media screen and (min-width: 992px) {
  .btn-back {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .btn-back:hover {
    background: #fff;
  }
}

@media screen and (max-width: 991px) {
  .btn-back {
    font-size: 1.4rem;
    margin: 30px auto 0;
  }
}

/* radio
-------------------------------------------*/
.radioItems {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .radioItems {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.radioItems .item {
  border: 3px solid #d6d5d5;
  border-radius: 8px;
}

@media screen and (max-width: 991px) {
  .radioItems .item {
    width: 48%;
  }
  .radioItems .item:nth-child(n + 3) {
    margin-top: 4%;
  }
}

.radioItems.--server {
  justify-content: space-between;
}

.radioItems.--server .item {
  width: 48%;
}

.radioItems.--color .item {
  width: 24%;
}

@media screen and (max-width: 991px) {
  .radioItems.--color .item {
    width: 48%;
  }
  .radioItems.--color .item:nth-child(n + 3) {
    margin-top: 4%;
  }
}

@media screen and (min-width: 992px) {
  .radioItems.--color .item + .item {
    margin-left: 2%;
  }
}

.radioItems.--plan {
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .radioItems.--plan {
    padding-top: 10px;
  }
}

.radioItems.--plan .radio > div {
  padding-top: 40px;
}

@media screen and (max-width: 991px) {
  .radioItems.--plan .radio > div {
    padding-top: 30px;
  }
}

.radioItems.--plan .item {
  width: 48%;
}

@media screen and (max-width: 991px) {
  .radioItems.--plan .item:nth-child(n + 3) {
    margin-top: 4%;
  }
}

.radioItems.--payment {
  justify-content: space-between;
}

.radioItems.--payment .item {
  width: 48%;
}

@media screen and (max-width: 991px) {
  .radioItems.--payment .item:nth-child(n + 3) {
    margin-top: 4%;
  }
}

.radio {
  position: relative;
  height: 100%;
}

.radio input[type="radio"] {
  position: absolute;
  display: none;
}

.radio input[type="radio"]:checked + div {
  background: #f5f5f5;
}

.radio input[type="radio"]:checked + div::before {
  background: #fff;
}

.radio input[type="radio"]:checked + div::after {
  opacity: 1;
}

.radio.--col2 .t1 {
  margin-top: auto;
}

.radio.--col2 > div {
  padding: 25px 0 0 0;
}

.radio.--col2 > div::before {
  content: none;
}

.radio.--col2 > div::after {
  content: none;
}

.radio .imglist {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto 10px;
}

.radio .imglist li {
  width: 50%;
}

.radio .imglist li img {
  margin: auto;
  max-width: 70px;
  display: block;
  width: 80%;
}

@media screen and (max-width: 991px) {
  .radio .imglist li img {
    max-width: 50px;
  }
}

.radio-list {
  display: flex;
  width: 100%;
  padding-top: 10px;
}

.radio-list li {
  width: 50%;
  text-align: center;
  color: #21445b;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .radio-list li {
    font-size: 1.2rem;
  }
}

.radio-list li div {
  padding: 10px 10px 60px 10px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .radio-list li div {
    padding: 10px 10px 50px 10px;
  }
}

.radio-list li div::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e6e5e5;
}

@media screen and (max-width: 991px) {
  .radio-list li div::before {
    bottom: 15px;
    width: 30px;
    height: 30px;
  }
}

.radio-list li div::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 23px;
  height: 23px;
  bottom: 26px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background: #d1626e;
}

@media screen and (max-width: 991px) {
  .radio-list li div::after {
    bottom: 21px;
    width: 18px;
    height: 18px;
  }
}

.radio .price {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .radio .price {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
    padding-top: 10px;
    letter-spacing: 0.01em;
  }
}

.radio .price > span,
.radio .price > b {
  font-size: 3rem;
  font-weight: bold;
  padding-right: 3px;
}

@media screen and (max-width: 991px) {
  .radio .price > span,
  .radio .price > b {
    font-size: 1.6rem;
  }
}

.radio .price > b {
  color: #e63245;
}

.radio .t1,
.radio .t2,
.radio .t3 {
  font-size: 2rem;
  font-weight: bold;
  color: #21445b;
  letter-spacing: 0.01em;
  margin-top: auto;
  line-height: 1.5;
  text-align: center;
  position: relative;
}

.radio .t1 sup,
.radio .t2 sup,
.radio .t3 sup {
  position: absolute;
  top: -1em;
  right: -1em;
  font-size: 1.5rem;
  color: #333333;
  font-weight: normal;
}

@media screen and (max-width: 991px) {
  .radio .t1 sup,
  .radio .t2 sup,
  .radio .t3 sup {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 991px) {
  .radio .t1,
  .radio .t2,
  .radio .t3 {
    font-size: 1.4rem;
  }
}

.radio .t2 {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .radio .t2 {
    font-size: 1.3rem;
  }
}

.radio .t3 {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 991px) {
  .radio .t3 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

.radio .t4 {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .radio .t4 {
    font-size: 1.1rem;
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
}

.radio > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px 70px 15px;
  position: relative;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .radio > div {
    padding: 10px 7px 60px 7px;
  }
}

.radio > div::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e6e5e5;
}

@media screen and (max-width: 991px) {
  .radio > div::before {
    bottom: 15px;
    width: 30px;
    height: 30px;
  }
}

.radio > div::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 23px;
  height: 23px;
  bottom: 26px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background: #d1626e;
}

@media screen and (max-width: 991px) {
  .radio > div::after {
    bottom: 21px;
    width: 18px;
    height: 18px;
  }
}

.radio .img {
  max-width: 80px;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .radio .img {
    max-width: 60px;
    margin-bottom: 10px;
  }
}

.radio .rental_free {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 85px;
}

@media screen and (max-width: 991px) {
  .radio .rental_free {
    max-width: 55px;
    right: 5px;
    top: 5px;
  }
}

.radio .baloon {
  position: absolute;
  right: 0;
  top: -20px;
  left: 0;
  margin: auto;
  width: 190px;
}

@media screen and (max-width: 991px) {
  .radio .baloon {
    max-width: 150px;
    width: 85%;
    top: -15px;
  }
}

/* accordion
-------------------------------------------*/
.js_ac_box {
  height: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  visibility: hidden;
  overflow: hidden;
}

.is_open + .js_ac_box {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.acBox {
  border: 3px solid #d6d5d5;
  border-radius: 8px;
}

.acBox > dt {
  font-weight: bold;
  position: relative;
  cursor: pointer;
  padding: 15px 60px 15px 20px;
  color: #21445b;
  font-size: 2.6rem;
}

@media screen and (max-width: 991px) {
  .acBox > dt {
    font-size: 1.6rem;
    padding: 15px 60px 15px 20px;
  }
}

.acBox > dt > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  margin: auto;
  width: 3px;
  height: 19px;
  background: #21445b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 991px) {
  .acBox > dt > span::before {
    right: 23px;
  }
}

.acBox > dt > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 19px;
  height: 3px;
  background: #21445b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 991px) {
  .acBox > dt > span::after {
    right: 15px;
  }
}

.acBox > dt.is_open > span::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.acBox > dd > div {
  padding: 0 25px 35px;
}


@media screen and (max-width: 991px) {
  .acBox > dd > div {
    padding: 0 20px 23px;
  }
}

.acBox > dd p {
  font-size: 1.8rem;
  margin: 15px 0 10px;
}

@media screen and (max-width: 991px) {
  .acBox > dd p {
    font-size: 1.2rem;
  }
}

.acBox-inputblk {
  padding-top: 5px;
}

.acBox-inputblk + .acBox-inputblk {
  padding-top: 20px;
}

@media screen and (max-width: 991px) {
  .acBox-inputblk + .acBox-inputblk {
    padding-top: 15px;
  }
}

.acBox-inputblk dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .acBox-inputblk dt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

input.chk {
  position: absolute;
  display: none;
}

input.chk:checked + span::before {
  background: #37759b;
  border: 1px solid #37759b;
}

input.chk:checked + span::after {
  opacity: 1;
}

input.chk + span {
  margin: 0 20px 0 0;
  border-radius: 4px;
  padding: 0 0 0 50px;
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
}

@media screen and (max-width: 991px) {
  input.chk + span {
    font-size: 1.4rem;
    padding: 0 0 0 40px;
  }
}

input.chk + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #707070;
}

@media screen and (max-width: 991px) {
  input.chk + span::before {
    width: 30px;
    height: 30px;
  }
}

input.chk + span::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 10px;
  height: 20px;
  top: 4px;
  left: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 991px) {
  input.chk + span::after {
    width: 8px;
    height: 15px;
    top: 7px;
  }
}

input.chk-s {
  position: absolute;
  display: none;
}

input.chk-s:checked + span::after {
  opacity: 1;
}

input.chk-s + span {
  margin: 0 20px 0 0;
  border-radius: 4px;
  padding: 0 0 0 50px;
  display: table;
  position: relative;
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  input.chk-s + span {
    font-size: 1.4rem;
    padding: 0.3em 0 0 40px;
  }
}

input.chk-s + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #707070;
}

@media screen and (max-width: 991px) {
  input.chk-s + span::before {
    width: 30px;
    height: 30px;
  }
}

input.chk-s + span::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 10px;
  height: 20px;
  top: 4px;
  left: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #21445b;
  border-bottom: 2px solid #21445b;
}

@media screen and (max-width: 991px) {
  input.chk-s + span::after {
    width: 8px;
    height: 15px;
    top: 5px;
  }
}

input.input_text {
  height: 60px;
  line-height: 60px;
  padding: 10px 15px;
  border: 1px solid #707070;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  max-width: 500px;
  border-radius: 7px;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

textarea.input_text {
  height: 180px;
  line-height: 2.7rem;
  padding: 10px 15px;
  border: 1px solid #707070;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  max-width: 500px;
  border-radius: 7px;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

input.input_text.hisu {
  background: #fbe4e8;
}

@media screen and (max-width: 991px) {
  input.input_text {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
  textarea.input_text {
    font-size: 16px;
    height: 120px;
    line-height: 2.7rem;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #aaaaaa;
}

:-ms-input-placeholder {
  color: #aaaaaa;
}

::placeholder {
  color: #aaaaaa;
}

input:focus::placeholder {
  color: transparent !important;
  transition: 0.1s;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

input:focus:-moz-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

input:focus::-moz-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

/* select設定 */
.select {
  position: relative;
  border: 1px solid #707070;
  overflow: hidden;
  width: 40%;
  height: 60px;
  text-align: center;
  border-radius: 7px;
  background: #fbe4e8;
}

@media screen and (max-width: 991px) {
  .select {
    height: 40px;
  }
}

.select.--bold > select {
  font-weight: bold;
}

.select > select {
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 15px;
  text-align: left;
  font-size: 2.4rem;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (max-width: 991px) {
  .select > select {
    font-size: 16px;
  }
}

.select::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #21445b;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .input_text,
  .select {
    font-size: 16px;
    width: 100%;
  }
  .select > select {
    padding: 8px 30px 8px 10px;
  }
  .select::after {
    right: 0.5em;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #21445b;
  }
}

/*===================================
  
  モーダル

===================================*/
.modal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}

.modal.is_open {
  opacity: 1;
  visibility: visible;
}

.modal.is_absolute {
  height: 100%;
  position: absolute;
}

.modal.is_absolute .modal_bg {
  height: 100%;
}

.modal.is_absolute .modal_inner {
  max-height: inherit;
  left: 0;
  right: 0;
  margin: auto;
  transform: inherit;
  background: none;
  height: auto;
}

.modal.is_absolute .modal_main {
  height: auto;
  overflow-y: inherit;
  max-height: inherit;
  background: #fff;
}

.modal_bg {
  background: rgba(0, 0, 0, 0.3);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 760px;
  display: flex;
  justify-content: center;
}

.modal_main {
  height: 100%;
  padding: 0;
  max-height: 100%;
  overflow-y: scroll;
  z-index: 9999;
}

.modal_main::-webkit-scrollbar {
  display: none;
}

.modal_close {
  background: #999999;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 50%;
  z-index: 99999;
}

.modal_close > span::before,
.modal_close > span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  margin: auto;
  bottom: 0;
  width: 3px;
  height: 20px;
  background: #fff;
}

.modal_close > span::before {
  transform: rotate(-45deg);
}

.modal_close > span::after {
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .modal_inner {
    width: 90%;
    height: 90%;
    max-height: 100%;
    transform: translate(-50%, -50%);
  }
  .modal_main {
    -webkit-overflow-scrolling: touch;
  }
  .modal_close {
    width: 35px;
    height: 35px;
  }
  .modal_close > span::before,
  .modal_close > span::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 16px;
    margin: auto;
    bottom: 0;
    width: 2px;
    height: 18px;
    background: #fff;
  }
}

/*------------------------------------
契約・支払情報
------------------------------------*/
.dlBox + .dlBox {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .dlBox + .dlBox {
    margin-top: 35px;
  }
}

.dlBox > dt {
  background: #f3f3f3;
  font-size: 2.6rem;
  color: #21445b;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 5px 20px;
  position: relative;
  display: flex;
  align-items: cetner;
}

@media screen and (max-width: 991px) {
  .dlBox > dt {
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding: 5px 15px;
  }
}

.dlBox > dt .qicon {
  display: flex;
  align-items: center;
  margin-left: 10px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .dlBox > dt .qicon {
    margin-left: 5px;
  }
}

.dlBox > dt .qicon img {
  width: 35px;
  display: block;
}

@media screen and (max-width: 991px) {
  .dlBox > dt .qicon img {
    width: 25px;
  }
}

.dlBox > dt .hisu,
.dlBox > dt .nin {
  color: #fff;
  font-size: 1.6rem;
  padding: 0 7px;
  line-height: 1.5em;
  height: 1.5em;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  margin: auto;
  font-weight: normal;
}

@media screen and (max-width: 991px) {
  .dlBox > dt .hisu,
  .dlBox > dt .nin {
    font-size: 1rem;
    padding: 0 5px;
    right: 10px;
  }
}

.dlBox > dt .hisu {
  background: #d1626e;
}

.dlBox > dt .nin {
  background: #b7b7b7;
}

.dlBox > dd {
  font-size: 2.2rem;
}

@media screen and (max-width: 991px) {
  .dlBox > dd {
    font-size: 1.3rem;
  }
}

.dlBox-in {
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .dlBox-in {
    padding: 0 15px;
  }
}

.dlBox .flex01,
.dlBox .flex03 {
  display: flex;
}

@media screen and (max-width: 991px) {
  .dlBox .flex01,
  .dlBox .flex03 {
    padding-right: 10px;
  }
}

.dlBox .flex01 .item,
.dlBox .flex03 .item {
  width: 70%;
}

.dlBox .flex01 .item:nth-child(1),
.dlBox .flex03 .item:nth-child(1) {
  width: 30%;
  max-width: 200px;
}

.dlBox .flex01 .item:nth-child(1) img,
.dlBox .flex03 .item:nth-child(1) img {
  margin: auto;
  display: block;
  width: 35%;
}

.dlBox .flex01 .item:nth-child(2),
.dlBox .flex03 .item:nth-child(2) {
  padding-top: 10px;
}

@media screen and (max-width: 991px) {
  .dlBox .flex01 .item:nth-child(2) {
    padding-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .dlBox .flex03 {
    flex-direction: column;
    position: relative;
  }
}

.dlBox .flex03 .item:nth-child(1) img {
  width: 70%;
}

.dlBox .flex02 {
  display: flex;
}

@media screen and (max-width: 991px) {
  .dlBox .flex02 {
    padding-right: 10px;
    position: relative;
  }
}

.dlBox .flex02 .item:nth-child(1) {
  width: 30%;
  max-width: 200px;
}

@media screen and (max-width: 991px) {
  .dlBox .flex02 .item:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.dlBox .flex02 .item:nth-child(1) img {
  margin: auto;
  display: block;
  width: 70%;
}

.dlBox .flex02 .item:nth-child(2) {
  width: 70%;
}

@media screen and (max-width: 991px) {
  .dlBox .flex02 .item:nth-child(2) {
    width: 100%;
  }
}

.dlBox .nameBlk {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

@media screen and (max-width: 991px) {
  .dlBox .nameBlk {
    width: 100%;
  }
}

.dlBox .nameBlk .item {
  width: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dlBox .birthBlk {
  display: flex;
  width: 70%;
}

@media screen and (max-width: 991px) {
  .dlBox .birthBlk {
    width: 100%;
  }
}

.dlBox .birthBlk .item {
  display: flex;
  align-items: center;
  width: 25%;
}

.dlBox .birthBlk .item:nth-child(1) {
  width: 40%;
}

.dlBox .birthBlk .item + .item {
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  .dlBox .birthBlk .item + .item {
    margin-left: 15px;
  }
}

.dlBox .birthBlk .item .select {
  margin-right: 10px;
  width: calc(100% - 1em);
}

@media screen and (max-width: 991px) {
  .dlBox .birthBlk .item .select {
    margin-right: 5px;
  }
}

.dlBox .birthBlk .item > span {
  width: 1em;
}

@media screen and (max-width: 991px) {
  .dlBox .prefBlk {
    width: 70%;
  }
}

.dlBox .timeBlk {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .dlBox .timeBlk {
    width: 100%;
  }
}

.dlBox .timeBlk .select {
  width: calc(100% - 65px);
}

@media screen and (max-width: 991px) {
  .dlBox .timeBlk .select {
    width: calc(100% - 50px);
  }
}

.dlBox .timeBlk + p {
  margin-top: 15px;
  font-weight: bold;
}

.dlBox .zipBlk {
  display: flex;
  align-items: center;
  width: 65%;
}

@media screen and (max-width: 991px) {
  .dlBox .zipBlk {
    width: 90%;
    justify-content: space-between;
  }
}

.dlBox .zipBlk .item {
  display: flex;
}

.dlBox .zipBlk .item:nth-child(1) {
  width: 60%;
}

@media screen and (max-width: 991px) {
  .dlBox .zipBlk .item:nth-child(1) {
    width: 55%;
  }
}

.dlBox .zipBlk .item:nth-child(2) {
  width: 40%;
}

@media screen and (max-width: 991px) {
  .dlBox .zipBlk .item:nth-child(2) {
    width: 44%;
  }
}

.dlBox .zipBlk .item button {
  font-size: 1.8rem;
  height: 60px;
  width: 100%;
  padding: 0 10px;
  margin-left: 10px;
  border-radius: 4px;
  border: 1px solid #999;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  cursor: pointer;
  color: #333;
}

@media screen and (min-width: 992px) {
  .dlBox .zipBlk .item button:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 991px) {
  .dlBox .zipBlk .item button {
    font-size: 1.1rem;
    height: 40px;
    line-height: 1.3;
  }
}

.dlBox .calendarBlk {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .dlBox .calendarBlk {
    width: 100%;
  }
}

.dlBox .calendarBlk .input_text {
  width: calc(100% - 65px);
  max-width: inherit;
}

@media screen and (max-width: 991px) {
  .dlBox .calendarBlk .input_text {
    width: calc(100% - 50px);
  }
}

.dlBox .calendarBlk .ui-datepicker-trigger {
  width: 50px;
  height: 50px;
  margin-left: 15px;
}

@media screen and (max-width: 991px) {
  .dlBox .calendarBlk .ui-datepicker-trigger {
    width: 35px;
    height: 35px;
  }
}

.dlBox .cardnoBlk {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

@media screen and (max-width: 991px) {
  .dlBox .cardnoBlk {
    width: 100%;
  }
}

.dlBox .cardnoBlk .item {
  width: 24%;
}

.dlBox .cardtermBlk {
  display: flex;
  width: 70%;
}

@media screen and (max-width: 991px) {
  .dlBox .cardtermBlk {
    width: 100%;
  }
}

.dlBox .cardtermBlk .item {
  display: flex;
  align-items: center;
  width: 30%;
}

.dlBox .cardtermBlk .item:nth-child(2) {
  width: 40%;
}

.dlBox .cardtermBlk .item + .item {
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  .dlBox .cardtermBlk .item + .item {
    margin-left: 15px;
  }
}

.dlBox .cardtermBlk .item .select {
  margin-right: 10px;
  width: calc(100% - 1em);
}

@media screen and (max-width: 991px) {
  .dlBox .cardtermBlk .item .select {
    margin-right: 5px;
  }
}

.dlBox .cardtermBlk .item > span {
  width: 1em;
}

.dlBox .securityBlk {
  width: 30%;
}

@media screen and (max-width: 991px) {
  .dlBox .securityBlk {
    width: 40%;
  }
}

.dlBox .list01 li + li {
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .dlBox .list01 li + li {
    margin-top: 3px;
  }
}

.dlBox .list01 li .price {
  font-size: 2.8rem;
}

@media screen and (max-width: 991px) {
  .dlBox .list01 li .price {
    font-size: 1.9rem;
  }
}

.dlBox .list01.--confirm li {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .dlBox .list01.--confirm li:nth-child(1) {
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 30%;
  }
}

.dlBox .typeselect {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .dlBox .typeselect {
    margin-bottom: 20px;
  }
}

.dlBox .typeselect > span {
  margin-bottom: 5px;
  display: block;
}

@media screen and (max-width: 991px) {
  .dlBox .typeselect > span {
    margin-bottom: 5px;
    margin-left: 30%;
  }
}

.dlBox .typeselect .select {
  width: 100%;
  max-width: 440px;
  background: #fff;
}

@media screen and (max-width: 991px) {
  .dlBox .typeselect .select {
    margin-left: 30%;
    width: 70%;
  }
}

.dlBox .typeselect > p {
  margin-top: 10px;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) and (min-width: 500px) {
  .dlBox .typeselect > p {
    margin-left: 30% !important;
    width: 70%;
  }
}

@media screen and (max-width: 991px) {
  .dlBox .typeselect > p {
    margin-top: 5px;
    font-size: 1.1rem;
    margin: 10px auto 0;
    display: table;
  }
}

@media screen and (max-width: 991px) {
  .dlBox .typeselect + .list01 {
    padding: 0 15px;
  }
}

@media screen and (max-width: 991px) {
  .contractBlk .dlBox-in {
    padding: 0 5px;
  }
}

/* radio02 */
.radio-list02 {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .radio-list02 label + label {
    margin-left: 10px;
  }
}

.radio-list02.--vertical {
  flex-direction: column;
}

.radio-list02.--vertical label + label {
  margin-top: 15px;
  margin-left: 0;
}

.radio-list02 label > input {
  position: absolute;
  display: none;
}

.radio-list02 label > span {
  margin: 0 20px 0 0;
  border-radius: 4px;
  padding: 0 15px 0 40px;
  display: inline-block;
  position: relative;
  color: #444;
  letter-spacing: 0.05em;
}

.radio-list02 label > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #707070;
}

.radio-list02 label > span::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: 6px;
  background: #d1626e;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-list02 label > input:checked + span::after {
  opacity: 1;
}

.radio-list02 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

@media screen and (max-width: 991px) {
  .radio-list02 label > span {
    font-size: 1.4rem;
    margin: 0;
    display: block;
  }
}

/* 変更する
-------------------------------------------*/
.modifyBox {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #bbbbbb;
  padding-top: 20px;
  margin-top: 35px;
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  .modifyBox {
    padding-top: 15px;
    margin-top: 20px;
    font-size: 1.4rem;
  }
}

.modifyBox-link {
  text-decoration: underline;
  color: #21445b;
}

.modifyBox-link:hover {
  text-decoration: none;
}

/* その他のオプション
-------------------------------------------*/
.opt-caution {
  border-top: 1px solid #bbbbbb;
  padding-top: 20px;
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .opt-caution {
    padding-top: 15px;
    margin-top: 20px;
  }
}

.opt-caution .list-caution-no {
  margin-top: 0;
}

.opt-caution > dl {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .opt-caution > dl {
    margin-top: 20px;
  }
}

.opt-caution > dl > dt {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .opt-caution > dl > dt {
    font-size: 1.2rem;
    margin-bottom: 5px;
    line-height: 1.5;
  }
}

.opt-caution > dl > dd .list-dot {
  margin-top: 0;
}

/* ご利用規約への同意
-------------------------------------------*/
.termsBox {
  border-top: 1px solid #BBBBBB;
  padding-top: 60px;
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .termsBox {
    padding-top: 35px;
    margin-top: 40px;
  }
}

.termsBox > dl > dt {
  font-size: 2.6rem;
  font-weight: bold;
  color: #21445b;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .termsBox > dl > dt {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.termsBox > dl > dt .hisu {
  color: #fff;
  font-size: 1.6rem;
  background: #d1626e;
  padding: 0 7px;
  line-height: 1.5em;
  height: 1.5em;
  border-radius: 5px;
  font-weight: normal;
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  .termsBox > dl > dt .hisu {
    font-size: 1rem;
    padding: 0 5px;
  }
}

.termsBox-list {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .termsBox-list {
    justify-content: flex-start;
  }
}

.termsBox-list li + li {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .termsBox-list li a {
    font-size: 1.2rem;
  }
}

.termsBox-agree {
  background: #FBE4E8;
  padding: 30px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .termsBox-agree {
    margin-top: 25px;
  }
}

.termsBox-agree input.chk-s + span {
  margin-right: 0;
}

/* 完了ページ
-------------------------------------------*/
.thanksBox {
  display: table;
  margin: auto;
}

.thanksBox-txt {
  padding-top: 10px;
}

@media screen and (max-width: 991px) {
  .thanksBox-txt {
    padding: 0 5%;
  }
}

.thanksBox-txt p {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .thanksBox-txt p {
    text-align: left;
  }
}

.thanksBox-txt p + p {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .thanksBox-txt p + p {
    margin-top: 15px;
  }
}

.thanksBox + .btnArea {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .thanksBox + .btnArea {
    margin-top: 50px;
  }
}

