@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-feature-settings: "palt";
  overflow-y: scroll;
}
html.lock {
  overflow: hidden;
}

body {
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #1b1b1b;
  line-height: 1;
  background-color: #f3f0e4;
}

a {
  color: #225b96;
}

@media screen and (min-width: 901px) {
  body {
    padding-top: 85px;
  }

  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  body {
    padding-top: 50px;
  }

  .pc {
    display: none !important;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.contents-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1060px) {
  .contents-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

#globalHeader {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 85px;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #globalHeader {
    height: 50px;
  }
  #globalHeader .contents-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#globalHeader .logo {
  margin-left: -30px;
}
#globalHeader .logo img {
  width: 170px;
}
@media screen and (max-width: 900px) {
  #globalHeader .logo img {
    width: 115px;
  }
}
@media screen and (max-width: 1120px) {
  #globalHeader .logo {
    margin-left: 0;
  }
}
@media screen and (max-width: 900px) {
  #globalHeader .logo {
    margin-left: 0;
    font-size: 80%;
  }
}

#contents .main-headline {
  position: relative;
  height: 180px;
  background-color: #cb4e6f;
}
@media screen and (max-width: 900px) {
  #contents .main-headline {
    height: auto;
    padding: 40px 30px;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  #contents .main-headline {
    padding: 40px 15px;
  }
}
#contents .main-headline h2 {
  display: inline-block;
}
@media screen and (max-width: 900px) {
  #contents .main-headline h2 {
    position: relative;
  }
  #contents .main-headline h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: url("../images/title-balloon.png") no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 900px) and (max-width: 230px) {
  #contents .main-headline h2::before {
    content: none;
  }
}

#contents .main-headline h2 .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-left: 170px;
}
@media screen and (max-width: 900px) {
  #contents .main-headline h2 .inner {
    position: static;
    transform: translate(0, 0);
    padding-left: 0;
  }
}
#contents .main-headline h2 .inner.no-calc {
  padding-left: 0;
}
#contents .main-headline h2 .inner.no-calc::before {
  content: none;
}
#contents .main-headline h2 .inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 144px;
  height: 94px;
  background: url("../images/icn-calc.png") no-repeat;
}
@media screen and (max-width: 900px) {
  #contents .main-headline h2 .inner::before {
    content: none;
  }
}
#contents .main-headline h2 .icn {
  margin-bottom: 15px;
}
#contents .main-headline h2 span {
  display: block;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 400px) {
  #contents .main-headline h2 span {
    white-space: normal;
  }
}
#contents .main-headline h2 span.txt01 {
  color: #ffda48;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  #contents .main-headline h2 span.txt01 {
    font-size: 16px;
  }
}
@media screen and (max-width: 300px) {
  #contents .main-headline h2 span.txt01 {
    font-size: 12px;
    line-height: 1.4;
  }
}
#contents .txt_Ann {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
}
#contents .main-headline h2 span.txt02, #contents .main-headline h2 span.txt03 {
  margin-top: 15px;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .main-headline h2 span.txt02, #contents .main-headline h2 span.txt03 {
    font-size: 25px;
  }
}
@media screen and (max-width: 300px) {
  #contents .main-headline h2 span.txt02, #contents .main-headline h2 span.txt03 {
    font-size: 18px;
    line-height: 1.4;
  }
}
#contents .main-headline h2 span.txt03 {
  display: none;
  margin-top: 0;
}
#contents .step-flow {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  #contents .step-flow {
    width: 75%;
    padding-top: 30px;
  }
}
@media screen and (max-width: 300px) {
  #contents .step-flow {
    width: 100%;
  }
}
#contents .step-flow .step-flow-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents .step-flow .step-flow-inner::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #d6ceaf;
}
@media screen and (max-width: 900px) {
  #contents .step-flow .step-flow-inner::before {
    top: 9px;
    height: 2px;
  }
}
#contents .step-flow .step-flow-inner::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: #d6ceaf;
}
@media screen and (max-width: 900px) {
  #contents .step-flow .step-flow-inner::after {
    top: 9px;
    height: 2px;
  }
}
#contents .step-flow .step-flow-inner .item {
  position: relative;
  z-index: 2;
}
#contents .step-flow .step-flow-inner .item .number {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background-color: #d6ceaf;
  font-size: 14px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
}
@media screen and (max-width: 900px) {
  #contents .step-flow .step-flow-inner .item .number {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    font-size: 10px;
  }
}
#contents .step-flow .step-flow-inner .item p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  white-space: nowrap;
  font-size: 13px;
  color: #d6ceaf;
}
@media screen and (max-width: 900px) {
  #contents .step-flow .step-flow-inner .item p {
    font-size: 10px;
  }
}
#contents .footer-balloon {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-content: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  height: 115px;
  background-color: #fff;
  border: 1px solid #cfcdc5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  animation: fluffy1 3s ease infinite;
}
#contents .footer-balloon::after, #contents .footer-balloon::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
}
#contents .footer-balloon::after {
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 15px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-left: -13px;
  border-bottom-color: #fff;
}
#contents .footer-balloon::before {
  border-color: rgba(195, 195, 195, 0);
  border-top-width: 11px;
  border-bottom-width: 16px;
  border-left-width: 14px;
  border-right-width: 14px;
  margin-left: -15px;
  margin-bottom: 0;
  border-bottom-color: #c3c3c3;
}
#contents .footer-balloon p {
  width: 100%;
  text-align: center;
}
#contents .footer-balloon p.p01 {
  font-size: 19px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  #contents .footer-balloon p.p01 {
    font-size: 16px;
  }
}
#contents .footer-balloon p.p02 {
  margin-top: 10px;
}
#contents .footer-balloon p.p02 .value {
  font-size: 44px;
  color: #cb4e6f;
}
@media screen and (max-width: 900px) {
  #contents .footer-balloon p.p02 .value {
    font-size: 37px;
  }
}
#contents .footer-balloon p.p02 .value b {
  display: inline-block;
  padding-bottom: 3px;
  background: url("../images/bg-yellow.png") repeat-x center bottom;
}
#contents .footer-balloon p.p02 > span:nth-of-type(2) {
  font-size: 19px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  #contents .footer-balloon p.p02 > span:nth-of-type(2) {
    font-size: 16px;
  }
}

#globalFooter {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
}
#globalFooter .footer-information {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
#globalFooter .footer-information .balloon {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 63px;
  padding: 0 20px;
  background-color: #ff4c73;
  border-radius: 8px;
  color: #fff;
}
#globalFooter .footer-information .balloon .fb-lead {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}
#globalFooter .footer-information .balloon .fb-amount {
  display: flex;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-left: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
#globalFooter .footer-information .balloon .fb-max {
  font-size: 13px;
  margin-right: 4px;
}
#globalFooter .footer-information .balloon .fb-num {
  font-size: 30px;
}
#globalFooter .footer-information .balloon .fb-unit {
  font-size: 16px;
  margin-left: 2px;
}
#globalFooter .footer-information .tel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-left: 15px;
}
#globalFooter .footer-information .tel > span {
  padding-left: 35px;
  font-size: 35px;
  font-weight: 700;
  background: url("../images/icn-tel.png") no-repeat left center;
}
#globalFooter .footer-information .tel .tag {
  width: 140px;
  margin-left: 10px;
}
#globalFooter .footer-information .tel .tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 25px;
  border: 1px solid #e2dfdf;
  border-radius: 3px;
  font-size: 13px;
}
#globalFooter .footer-information .tel .tag span:nth-of-type(2) {
  margin-top: 5px;
}
#globalFooter .footer-information .btn {
  margin-left: 20px;
}
#globalFooter .footer-information .btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 220px;
  height: 60px;
  border-radius: 60px;
  background-color: #cb4e6f;
  border-bottom: 4px solid #a23e59;
}
@media screen and (min-width: 901px) {
  #globalFooter .footer-information .btn span {
    transition: opacity 0.3s;
  }
  #globalFooter .footer-information .btn span:hover {
    opacity: 0.7;
  }
}
#globalFooter .footer-information .btn span img {
  width: 115px;
}
#globalFooter .footer-information-sp {
  padding: 15px 30px;
  background-color: #fff;
}
#globalFooter .footer-information-sp .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-content: center;
  min-height: 75px;
  background-color: #3c8f54;
  border-radius: 60px;
  border-bottom: 3px solid #307243;
  color: #fff;
  text-decoration: none;
}
#globalFooter .footer-information-sp .btn a > span {
  display: inline-block;
  padding-left: 45px;
  background: url("../images/icn-tel-sp.png") no-repeat left center;
  background-size: 35px auto;
}
#globalFooter .footer-information-sp .btn a > span span {
  display: block;
  text-align: center;
}
#globalFooter .footer-information-sp .btn a > span span.txt01 {
  font-size: 18px;
  font-weight: 700;
}
#globalFooter .footer-information-sp .btn a > span span.txt02 {
  margin-top: 5px;
  font-size: 12px;
}
#globalFooter .footer-information-sp .btn a p {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}
#globalFooter .footer-information-sp .btn a p b {
  text-decoration: underline;
}
@media screen and (max-width: 350px) {
  #globalFooter .footer-information-sp .btn a p {
    font-size: 12px;
  }
}
@media screen and (max-width: 330px) {
  #globalFooter .footer-information-sp .btn a p {
    font-size: 10px;
  }
}
#globalFooter .footer-information-sp .balloon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 20px;
  padding: 3px 8px;
  height: 60px;
  background-color: #fff;
  border: 2px solid #3c8f54;
  border-radius: 7px;
}
#globalFooter .footer-information-sp .balloon::after, #globalFooter .footer-information-sp .balloon::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
}
#globalFooter .footer-information-sp .balloon::after {
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 15px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-left: -13px;
  border-bottom-color: #fff;
}
#globalFooter .footer-information-sp .balloon::before {
  border-color: rgba(195, 195, 195, 0);
  border-top-width: 11px;
  border-bottom-width: 16px;
  border-left-width: 14px;
  border-right-width: 14px;
  margin-left: -15px;
  margin-bottom: 1px;
  border-bottom-color: #3c8f54;
}
#globalFooter .footer-information-sp .balloon p.p01 {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#globalFooter .footer-information-sp .balloon p.p02 {
  margin-left: 10px;
}
#globalFooter .footer-information-sp .balloon p.p02 .value {
  font-size: 34px;
  color: #3c8f54;
}
#globalFooter .footer-information-sp .balloon p.p02 span:nth-of-type(2) {
  margin-left: 5px;
  font-size: 14px;
  font-weight: 700;
}
#globalFooter .footer-information-sp .balloon p.p02 span:nth-of-type(2) b {
  color: #3c8f54;
  font-weight: 700;
}
#globalFooter .logo {
  padding: 20px 0;
  text-align: center;
  background-color: #f3f0e4;
}
#globalFooter .logo img {
  width: 130px;
}
@media screen and (max-width: 900px) {
  #globalFooter .logo img {
    width: 150px;
  }
}

.number-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.number-title .number {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background-color: #cb4e6f;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 36px;
}
@media screen and (max-width: 900px) {
  .number-title .number {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 22px;
  }
}
.number-title .text {
  padding-left: 25px;
  font-size: 32px;
  font-weight: 700;
}
.number-title .text b {
  padding-left: 10px;
  font-size: 20px;
  font-weight: bold;
  color: red;
}
@media screen and (max-width: 900px) {
  .number-title .text b {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .number-title .text {
    padding-left: 15px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.number-title-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 40px;
}
.number-title-2 .text {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .number-title-2 .text {
    font-size: 20px;
    line-height: 1.4;
  }
}

.icon-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.icon-title .icon {
  flex-shrink: 0;
  width: 60px;
}
@media screen and (max-width: 900px) {
  .icon-title .icon {
    width: 50px;
  }
}
.icon-title .icon img {
  width: 100%;
}
.icon-title .text {
  margin-left: 20px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}
.icon-title .text b {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: red;
}
@media screen and (max-width: 900px) {
  .icon-title .text b {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .icon-title .text {
    margin-left: 12px;
    font-size: 18px;
  }
}

.question {
  margin-top: 15px;
}
.question a {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 16px;
  color: #225b96;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .question a {
    font-size: 14px;
    line-height: 1.4;
  }
}
.question a::before {
  content: "?";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #225b96;
  color: #fff;
  font-size: 15px;
  font-family: Arial;
}
@media screen and (max-width: 900px) {
  .question a::before {
    top: 0;
    transform: translateY(0);
  }
}

.btn-groups {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .btn-groups {
    margin-top: 50px;
  }
}
.btn-groups > div:nth-of-type(2) {
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  .btn-groups > div:nth-of-type(2) {
    width: 62%;
    margin-left: 7%;
  }
  .btn-groups > div:nth-of-type(2) a {
    width: 100%;
  }
}
.btn-groups > div.disabled a {
  background-color: #ccc;
}
.btn-groups > div.disabled a:hover {
  cursor: default;
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .btn-groups .btn-next,
  .btn-groups .btn-modify {
    width: 100%;
  }
}
.btn-groups .btn-next a,
.btn-groups .btn-modify a {
  width: 600px;
  background-color: #cb4e6f;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .btn-groups .btn-next a,
  .btn-groups .btn-modify a {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .btn-groups .btn-back {
    width: 31%;
  }
}
.btn-groups .btn-back a {
  width: 300px;
  background-color: #fff;
  color: #cb4e6f;
}
@media screen and (max-width: 900px) {
  .btn-groups .btn-back a {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .btn-groups .yes, .btn-groups .no {
    width: 46.5% !important;
  }
}
.btn-groups .yes a, .btn-groups .no a {
  width: 460px;
  background-color: #fff;
  color: #cb4e6f;
}
.btn-groups .yes a.active, .btn-groups .no a.active {
  background-color: #cb4e6f;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .btn-groups .yes a, .btn-groups .no a {
    width: 100%;
  }
}
.btn-groups a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 70px;
  border-radius: 7px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  font-size: 24px;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (min-width: 901px) {
  .btn-groups a {
    transition: opacity 0.3s;
  }
  .btn-groups a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 900px) {
  .btn-groups a {
    font-size: 20px;
  }
}

.price .value {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.point {
  margin-top: 15px;
}
.point li {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
}
.point li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #cb4e6f;
}
.point li:not(:nth-of-type(1)) {
  margin-top: 15px;
}

.input-wrap.radio {
  width: 32px;
  height: 32px;
  border-radius: 32px;
}
.input-wrap.radio {
  cursor: pointer;
  position: relative;
  min-height: 32px;
  overflow: hidden;
  padding-left: 32px;
  display: inline-block;
}
.input-wrap.radio:before {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 3px solid #aaaaaa;
  background-color: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
  content: '';
  z-index: 1;
}
.input-wrap.radio:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #cb4e6f;
  z-index: 1;
}
.input-wrap.radio input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px;
  box-shadow: 27px -1px #FFF;
  border-radius: 20px;
}
.input-wrap.radio input[type="radio"]:checked {
  box-shadow: none;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  .input-wrap.radio {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
  .input-wrap.radio {
    cursor: pointer;
    position: relative;
    min-height: 30px;
    overflow: hidden;
    padding-left: 30px;
    display: inline-block;
  }
  .input-wrap.radio:before {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #aaaaaa;
    background-color: #fff;
    border-radius: 50%;
    left: 0;
    top: 0;
    content: '';
    z-index: 1;
  }
  .input-wrap.radio:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #cb4e6f;
    z-index: 1;
  }
  .input-wrap.radio input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px;
    box-shadow: 25px -1px #FFF;
    border-radius: 18px;
  }
  .input-wrap.radio input[type="radio"]:checked {
    box-shadow: none;
    z-index: 5;
  }
}
.input-wrap.checkbox {
  width: 32px;
  height: 32px;
}
.input-wrap.checkbox {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  overflow: hidden;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  box-sizing: border-box;
  height: 32px;
}
.input-wrap.checkbox:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  left: 0px;
  top: 0;
  border: 3px solid #aaaaaa;
  z-index: 3;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
}
.input-wrap.checkbox:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  display: block;
  width: 9px;
  height: 16px;
  margin-left: -4px;
  border-right: 3px solid #cb4e6f;
  border-bottom: 3px solid #cb4e6f;
  transform: rotate(45deg);
  z-index: 3;
}
.input-wrap.checkbox input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: -41px;
  width: 24px;
  height: 22px;
  display: block;
  transform: translateY(-50%);
  box-shadow: 42px 0px #fff;
  margin-top: -2px;
}
.input-wrap.checkbox input[type="checkbox"]:checked {
  box-shadow: none;
}
@media screen and (max-width: 900px) {
  .input-wrap.checkbox {
    width: 26px;
    height: 26px;
  }
  .input-wrap.checkbox {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    overflow: hidden;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    box-sizing: border-box;
    height: 26px;
  }
  .input-wrap.checkbox:before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 0px;
    top: 0;
    border: 3px solid #aaaaaa;
    z-index: 3;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
  }
  .input-wrap.checkbox:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    display: block;
    width: 9px;
    height: 16px;
    margin-left: -4px;
    border-right: 3px solid #cb4e6f;
    border-bottom: 3px solid #cb4e6f;
    transform: rotate(45deg);
    z-index: 3;
  }
  .input-wrap.checkbox input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: -41px;
    width: 18px;
    height: 16px;
    display: block;
    transform: translateY(-50%);
    box-shadow: 36px 0px #fff;
    margin-top: -2px;
  }
  .input-wrap.checkbox input[type="checkbox"]:checked {
    box-shadow: none;
  }
  .input-wrap.checkbox::after {
    top: 5px !important;
    width: 7px !important;
    height: 14px !important;
    margin-left: -3px !important;
  }
  .input-wrap.checkbox input {
    left: -35px !important;
  }
}

.point-box {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .point-box {
    display: table;
    height: 75px;
  }
}
.point-box .headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 35px;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #cb4e6f;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .point-box .headline {
    width: 85px;
    height: 75px;
    font-size: 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.point-box p {
  padding: 15px 0;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .point-box p {
    display: table-cell;
    padding: 15px;
    font-size: 15px;
    text-align: left;
    vertical-align: middle;
  }
}

.input-list.list01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .input-list.list01 {
    display: block;
    margin-top: 20px;
  }
}
.input-list.list01 label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 48%;
  height: 70px;
  margin-top: 30px;
  padding: 0 25px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 16px;
}
@media screen and (min-width: 901px) {
  .input-list.list01 label:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  .input-list.list01 label {
    width: 100%;
    height: 60px;
    margin-top: 15px;
    padding: 0 15px 0 20px;
    font-size: 15px;
    border-radius: 5px;
  }
}
.input-list.list01 label.checked .input-wrap::before {
  border-color: #cb4e6f;
}
.input-list.list01 label .input-wrap {
  flex-shrink: 0;
  margin-right: 20px;
}
.input-list.list02 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .input-list.list02 {
    display: block;
  }
}
.input-list.list02 label {
  display: block;
  width: 48.5%;
  margin-top: 30px;
  padding: 30px 0 0 30px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .input-list.list02 label:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  .input-list.list02 label {
    width: 100%;
    padding: 20px 0 0 20px;
    margin-top: 15px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 900px) and (max-width: 500px) {
  .input-list.list02 label {
    padding: 10px 0 0 10px;
  }
}

.input-list.list02 label.checked .input-wrap::before {
  border-color: #cb4e6f;
}
.input-list.list02 label:nth-of-type(2n) {
  margin-left: 3%;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label:nth-of-type(2n) {
    margin-left: 0;
  }
}
.input-list.list02 label.full {
  width: 100%;
}
.input-list.list02 label .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.input-list.list02 label .content .sentence {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-bottom: 35px;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence {
    align-items: center;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .input-list.list02 label .content .sentence {
    padding-right: 10px;
  }
}
.input-list.list02 label .content .sentence .input-wrap {
  flex-shrink: 0;
  margin-right: 20px;
  margin-top: 3px;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence .input-wrap {
    margin: 0 20px 0 10px;
  }
}
.input-list.list02 label .content .sentence .inner {
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence .inner {
    padding-bottom: 30px;
  }
}
.input-list.list02 label .content .sentence p {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence p {
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  .input-list.list02 label .content .sentence p {
    font-size: 14px;
  }
}
.input-list.list02 label .content .sentence p.caution {
  margin-top: 10px !important;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence p.caution {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .input-list.list02 label .content .sentence p.caution {
    font-size: 12px;
  }
}
.input-list.list02 label .content .sentence .price {
  margin-top: 35px;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence .price {
    margin-top: 10px;
  }
}
.input-list.list02 label .content .sentence .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence .price .value {
    font-size: 27px;
  }
}
@media screen and (max-width: 500px) {
  .input-list.list02 label .content .sentence .price .value {
    font-size: 20px;
  }
}
.input-list.list02 label .content .sentence .price .unit {
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .sentence .price .unit {
    font-size: 10px;
  }
}
.input-list.list02 label .content .thumbnail {
  flex-shrink: 0;
  width: 140px;
  position: relative;
  background-color: transparent;
}
.input-list.list02 label .content .thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.input-list.list02 label .content .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  .input-list.list02 label .content .thumbnail {
    width: 100px;
  }
}
@media screen and (max-width: 450px) {
  .input-list.list02 label .content .thumbnail {
    width: 70px;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-pink {
  color: #cb4e6f;
}

.text-fs12 {
  font-size: 12px;
}

.text-fs14 {
  font-size: 14px;
}

.text-fs16 {
  font-size: 16px;
}

.text-fs18 {
  font-size: 18px;
}

.text-fs19 {
  font-size: 19px;
}

.text-fs20 {
  font-size: 20px;
}

.text-fs21 {
  font-size: 21px;
}

.text-fs22 {
  font-size: 22px;
}

.text-fs23 {
  font-size: 23px;
}

.text-fs24 {
  font-size: 24px;
}

.text-fs24 {
  font-size: 24px;
}

.text-fs25 {
  font-size: 25px;
}

.text-fs26 {
  font-size: 26px;
}

.text-fs27 {
  font-size: 27px;
}

.text-fs28 {
  font-size: 28px;
}

.text-fs30 {
  font-size: 30px;
}

@media screen and (max-width: 900px) {
  .text-fs12 {
    font-size: 12px;
  }

  .text-fs14 {
    font-size: 14px;
  }

  .text-fs16 {
    font-size: 14px;
  }

  .text-fs18 {
    font-size: 16px;
  }

  .text-fs19 {
    font-size: 18px;
  }

  .text-fs20 {
    font-size: 18px;
  }

  .text-fs21 {
    font-size: 18px;
  }

  .text-fs22 {
    font-size: 20px;
  }

  .text-fs23 {
    font-size: 20px;
  }

  .text-fs24 {
    font-size: 22px;
  }

  .text-fs24 {
    font-size: 22px;
  }

  .text-fs25 {
    font-size: 24px;
  }

  .text-fs26 {
    font-size: 24px;
  }

  .text-fs27 {
    font-size: 24px;
  }

  .text-fs28 {
    font-size: 24px;
  }

  .text-fs30 {
    font-size: 24px;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 900px) {
  .mt0 {
    margin-top: 0 !important;
  }

  .mt5 {
    margin-top: 5px !important;
  }

  .mt10 {
    margin-top: 10px !important;
  }

  .mt15 {
    margin-top: 10px !important;
  }

  .mt20 {
    margin-top: 15px !important;
  }

  .mt25 {
    margin-top: 15px !important;
  }

  .mt30 {
    margin-top: 20px !important;
  }

  .mt35 {
    margin-top: 20px !important;
  }

  .mt40 {
    margin-top: 30px !important;
  }

  .mt45 {
    margin-top: 30px !important;
  }

  .mt50 {
    margin-top: 40px !important;
  }

  .mt60 {
    margin-top: 40px !important;
  }

  .mt70 {
    margin-top: 50px !important;
  }

  .mt80 {
    margin-top: 50px !important;
  }

  .mt90 {
    margin-top: 50px !important;
  }

  .mt100 {
    margin-top: 50px !important;
  }

  .mt110 {
    margin-top: 60px !important;
  }

  .mt120 {
    margin-top: 60px !important;
  }

  .mt130 {
    margin-top: 60px !important;
  }

  .mt140 {
    margin-top: 70px !important;
  }

  .mt150 {
    margin-top: 70px !important;
  }

  .mtsp20 {
    margin-top: 20px !important;
  }

  .mb0 {
    margin-bottom: 0 !important;
  }

  .mb5 {
    margin-bottom: 5px !important;
  }

  .mb10 {
    margin-bottom: 10px !important;
  }

  .mb15 {
    margin-bottom: 10px !important;
  }

  .mb20 {
    margin-bottom: 15px !important;
  }

  .mb25 {
    margin-bottom: 15px !important;
  }

  .mb30 {
    margin-bottom: 20px !important;
  }

  .mb35 {
    margin-bottom: 20px !important;
  }

  .mb40 {
    margin-bottom: 30px !important;
  }

  .mb45 {
    margin-bottom: 30px !important;
  }

  .mb50 {
    margin-bottom: 40px !important;
  }

  .mb60 {
    margin-bottom: 40px !important;
  }

  .mb70 {
    margin-bottom: 50px !important;
  }

  .mb80 {
    margin-bottom: 50px !important;
  }

  .mb90 {
    margin-bottom: 50px !important;
  }

  .mb100 {
    margin-bottom: 50px !important;
  }

  .mb110 {
    margin-bottom: 60px !important;
  }

  .mb120 {
    margin-bottom: 60px !important;
  }

  .mb130 {
    margin-bottom: 60px !important;
  }

  .mb140 {
    margin-bottom: 70px !important;
  }

  .pt0 {
    padding-top: 0 !important;
  }

  .pt5 {
    padding-top: 5px !important;
  }

  .pt10 {
    padding-top: 10px !important;
  }

  .pt15 {
    padding-top: 10px !important;
  }

  .pt20 {
    padding-top: 15px !important;
  }

  .pt25 {
    padding-top: 15px !important;
  }

  .pt30 {
    padding-top: 20px !important;
  }

  .pt35 {
    padding-top: 20px !important;
  }

  .pt40 {
    padding-top: 30px !important;
  }

  .pt45 {
    padding-top: 30px !important;
  }

  .pt50 {
    padding-top: 40px !important;
  }

  .pt60 {
    padding-top: 40px !important;
  }

  .pt70 {
    padding-top: 50px !important;
  }

  .pt80 {
    padding-top: 50px !important;
  }

  .pt90 {
    padding-top: 50px !important;
  }

  .pt100 {
    padding-top: 50px !important;
  }

  .pb0 {
    padding-bottom: 0 !important;
  }

  .pb5 {
    padding-bottom: 5px !important;
  }

  .pb10 {
    padding-bottom: 10px !important;
  }

  .pb15 {
    padding-bottom: 10px !important;
  }

  .pb20 {
    padding-bottom: 15px !important;
  }

  .pb25 {
    padding-bottom: 15px !important;
  }

  .pb30 {
    padding-bottom: 20px !important;
  }

  .pb35 {
    padding-bottom: 20px !important;
  }

  .pb40 {
    padding-bottom: 30px !important;
  }

  .pb45 {
    padding-bottom: 30px !important;
  }

  .pb50 {
    padding-bottom: 40px !important;
  }

  .pb60 {
    padding-bottom: 40px !important;
  }

  .pb70 {
    padding-bottom: 50px !important;
  }

  .pb80 {
    padding-bottom: 50px !important;
  }

  .pb90 {
    padding-bottom: 50px !important;
  }

  .pb100 {
    padding-bottom: 50px !important;
  }
}
/*--------------------------
HOME
----------------------------*/
#contents .contents-box.step01 {
  padding-bottom: 30px;
}
#contents .contents-box.step01 .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: -30px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box {
    display: block;
    margin: 20px -30px 0;
    border-bottom: 1px solid #e4dcbe;
  }
}
#contents .contents-box.step01 .box label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 46.5%;
  margin-top: 70px;
}
@media screen and (min-width: 901px) {
  #contents .contents-box.step01 .box label:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label {
    border-top: 1px solid #e4dcbe;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label.checked {
    background-color: #ebe4c9;
  }
}
#contents .contents-box.step01 .box label.checked .input::before {
  border-color: #cb4e6f;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label {
    width: 100%;
    margin-top: 0;
    padding: 15px 20px 15px 25px;
  }
}
@media screen and (max-width: 900px) and (max-width: 350px) {
  #contents .contents-box.step01 .box label {
    padding: 10px;
  }
}

#contents .contents-box.step01 .box label .input {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  margin-right: 30px;
}
#contents .contents-box.step01 .box label .input {
  cursor: pointer;
  position: relative;
  min-height: 40px;
  overflow: hidden;
  padding-left: 40px;
  display: inline-block;
}
#contents .contents-box.step01 .box label .input:before {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid #aaaaaa;
  background-color: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
  content: '';
  z-index: 1;
}
#contents .contents-box.step01 .box label .input:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #cb4e6f;
  z-index: 1;
}
#contents .contents-box.step01 .box label .input input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px;
  box-shadow: 35px -1px #FFF;
  border-radius: 28px;
}
#contents .contents-box.step01 .box label .input input[type="radio"]:checked {
  box-shadow: none;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label .input {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border-radius: 30px;
  }
  #contents .contents-box.step01 .box label .input {
    cursor: pointer;
    position: relative;
    min-height: 30px;
    overflow: hidden;
    padding-left: 30px;
    display: inline-block;
  }
  #contents .contents-box.step01 .box label .input:before {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #aaaaaa;
    background-color: #fff;
    border-radius: 50%;
    left: 0;
    top: 0;
    content: '';
    z-index: 1;
  }
  #contents .contents-box.step01 .box label .input:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #cb4e6f;
    z-index: 1;
  }
  #contents .contents-box.step01 .box label .input input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px;
    box-shadow: 25px -1px #FFF;
    border-radius: 18px;
  }
  #contents .contents-box.step01 .box label .input input[type="radio"]:checked {
    box-shadow: none;
    z-index: 5;
  }
}
#contents .contents-box.step01 .box label .label-box {
  flex-grow: 1;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label .label-box {
    border-radius: 5px;
  }
}
#contents .contents-box.step01 .box label .label-box .headding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 65px;
  padding: 0 15px 0 30px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step01 .box label .label-box .headding {
    padding: 0 10px 0 15px;
  }
}
#contents .contents-box.step01 .box label .label-box .headding.bg-brown {
  background-color: #d17e3f;
}
#contents .contents-box.step01 .box label .label-box .headding.bg-green {
  background-color: #5f9d2e;
}
#contents .contents-box.step01 .box label .label-box .headding.bg-purple {
  background-color: #7a1d7d;
}
#contents .contents-box.step01 .box label .label-box .headding.bg-blue {
  background-color: #225b96;
}
#contents .contents-box.step01 .box label .label-box .headding .plan-name {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step01 .box label .label-box .headding .plan-name {
    font-size: 22px;
  }
}
@media screen and (max-width: 350px) {
  #contents .contents-box.step01 .box label .label-box .headding .plan-name {
    font-size: 18px;
  }
}
#contents .contents-box.step01 .box label .label-box .headding a {
  padding-right: 25px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: url("../images/icn-arrow-white.png") no-repeat right center;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step01 .box label .label-box .headding a {
    font-size: 12px;
  }
}
#contents .contents-box.step01 .box label .label-box .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 20px 0 0 20px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step01 .box label .label-box .content {
    padding: 10px 0 0 15px;
  }
}
#contents .contents-box.step01 .box label .label-box .content .sentence {
  padding-bottom: 20px;
}
#contents .contents-box.step01 .box label .label-box .content .sentence .plan-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label .label-box .content .sentence .plan-desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.step01 .box label .label-box .content .sentence .plan-desc {
    font-size: 15px;
    padding-right: 10px;
  }
}
#contents .contents-box.step01 .box label .label-box .content .sentence .tag {
  margin-top: 10px;
}
#contents .contents-box.step01 .box label .label-box .content .sentence .tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 25px;
  width: 65px;
  border-radius: 25px;
  color: #fff;
  font-size: 12px;
  background-color: #47484d;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label .label-box .content .sentence .tag span {
    height: 22px;
    width: 60px;
    padding-bottom: 1px;
    font-size: 11px;
  }
}
#contents .contents-box.step01 .box label .label-box .content .sentence .price {
  margin-top: 8px;
}
#contents .contents-box.step01 .box label .label-box .content .sentence .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step01 .box label .label-box .content .sentence .price .value {
    font-size: 32px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.step01 .box label .label-box .content .sentence .price .value {
    font-size: 24px;
  }
}
#contents .contents-box.step01 .box label .label-box .content .sentence .price .unit {
  font-size: 14px;
}
@media screen and (max-width: 300px) {
  #contents .contents-box.step01 .box label .label-box .content .sentence .price .unit {
    font-size: 12px;
  }
}
#contents .contents-box.step01 .box label .label-box .content .thumbnail {
  flex-shrink: 0;
  width: 135px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step01 .box label .label-box .content .thumbnail {
    width: 100px;
  }
}
@media screen and (max-width: 360px) {
  #contents .contents-box.step01 .box label .label-box .content .thumbnail {
    width: 70px;
  }
}
#contents .contents-box.step02 {
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 {
    padding-bottom: 25px;
  }
}
#contents .contents-box.step02 .step02-accordion-box {
  display: none;
}
#contents .contents-box.step02 .box {
  padding: 60px 0;
  border-bottom: 1px solid #e4dcbe;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box {
    position: relative;
    padding: 15px 0 45px;
    border-bottom: none;
  }
  #contents .contents-box.step02 .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 100vw;
    height: 1px;
    background-color: #e4dcbe;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box01 {
    margin-top: 15px;
  }
}
#contents .contents-box.step02 .box01 .box-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box01 .box-inner {
    display: block;
  }
}
#contents .contents-box.step02 .box01 .box-inner .right {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box01 .box-inner .right {
    width: 100%;
    margin-top: 15px;
  }
}
#contents .contents-box.step02 .box01 .box-inner .right select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 2px solid #cb4e6f;
  border-radius: 5px;
  font-size: 16px;
  background: url("../images/icn-arrow-select.png") no-repeat calc(100% - 20px) center;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box01 .box-inner .right select {
    height: 60px;
    font-size: 15px;
  }
}
#contents .contents-box.step02 .box02 .input-list label {
  display: none;
}
#contents .contents-box.step02 .box02 .input-list label.active {
  display: flex;
}
#contents .contents-box.step02 .box02 .input-list label .title {
  flex-grow: 1;
  padding-right: 10px;
  line-height: 1.6;
}
#contents .contents-box.step02 .box02 .input-list label .detail-link {
  flex-shrink: 0;
  width: 90px;
  padding-right: 25px;
  font-size: 13px;
  font-weight: 500;
  color: #225b96;
  text-decoration: none;
  background: url("../images/icn-arrow-blue.png") no-repeat right center;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box02 .input-list label .detail-link {
    padding-right: 15px;
    background-size: 11px auto;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box03::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 100vw;
    height: 1px;
    background-color: #e4dcbe;
  }
}
#contents .contents-box.step02 .box03 .input-list label .title {
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box03 .input-list label .title {
    font-size: 17px;
  }
}
#contents .contents-box.step02 .box03 .input-list label .price {
  flex-shrink: 0;
  text-align: right;
}
#contents .contents-box.step02 .box03 .input-list label .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box03 .input-list label .price .value {
    font-size: 27px;
  }
}
#contents .contents-box.step02 .box03 .input-list label .price .unit {
  padding-left: 8px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step02 .box03 .input-list label .price .unit {
    font-size: 10px;
  }
}
#contents .contents-box.step03 {
  padding-bottom: 80px;
}
#contents .contents-box.step03 .icon-title {
  background: url("../images/icn-arrow-pink-circle.png") no-repeat calc(100% - 10px) center;
}
@media screen and (min-width: 901px) {
  #contents .contents-box.step03 .icon-title:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .icon-title {
    background-position: calc(100% - 10px) bottom;
  }
  #contents .contents-box.step03 .icon-title .icon img {
    width: 46px;
  }
}
#contents .contents-box.step03 .icon-title.close {
  background: url("../images/icn-arrow-pink-circle02.png") no-repeat calc(100% - 10px) center;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .icon-title.close {
    background-position: calc(100% - 10px) bottom;
  }
}
#contents .contents-box.step03 .icon-title .text {
  padding-bottom: 10px;
}
#contents .contents-box.step03 .caution {
  margin-top: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .caution {
    font-size: 11px;
  }
}
#contents .contents-box.step03 .option-box {
  display: none;
}
#contents .contents-box.step03 .intro-list {
  display: none;
}
#contents .contents-box.step03 .intro-list.active {
  display: flex;
}
#contents .contents-box.step03 .flower-list {
  justify-content: space-between;
}
#contents .contents-box.step03 .flower-list label {
  display: none;
  margin-left: 0 !important;
}
#contents .contents-box.step03 .flower-list label.active {
  display: block;
}
#contents .contents-box.step03 .photo-box,
#contents .contents-box.step03 .ikotsu-box,
#contents .contents-box.step03 .sankotsu-box {
  display: none;
}
#contents .contents-box.step03 .photo-box.active,
#contents .contents-box.step03 .ikotsu-box.active,
#contents .contents-box.step03 .sankotsu-box.active {
  display: block;
}
#contents .contents-box.step03 .tsuya-box {
  display: none;
}
#contents .contents-box.step03 .tsuya-box.active {
  display: block;
}
#contents .contents-box.step03 .tsuya-box .input-list {
  display: none;
}
#contents .contents-box.step03 .tsuya-box .input-list.active {
  display: flex;
}
#contents .contents-box.step03 .box {
  padding: 40px 0 60px;
  border-bottom: 1px solid #e4dcbe;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .box {
    border-bottom: none;
  }
}
#contents .contents-box.step03 .box .wrap {
  display: none;
}
@media screen and (min-width: 901px) {
  #contents .contents-box.step03 .box .icon-title + .question {
    margin-left: 12px;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .box {
    position: relative;
    padding: 15px 0 45px;
    border-bottom: none;
  }
  #contents .contents-box.step03 .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 100vw;
    height: 1px;
    background-color: #e4dcbe;
  }
}
#contents .contents-box.step03 .box01 {
  margin-top: 20px;
}
#contents .contents-box.step03 .box02 .input-list label .title {
  flex-grow: 1;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step03 .box02 .input-list label .title {
    line-height: 1.4;
  }
}
#contents .contents-box.step03 .box02 .input-list label .price {
  flex-shrink: 0;
  text-align: right;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step03 .box02 .input-list label .price {
    width: 90px;
  }
}
#contents .contents-box.step03 .box02 .input-list label .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .box02 .input-list label .price .value {
    font-size: 27px;
  }
}
@media screen and (max-width: 500px) {
  #contents .contents-box.step03 .box02 .input-list label .price .value {
    font-size: 20px;
  }
}
#contents .contents-box.step03 .box02 .input-list label .price .unit {
  padding-left: 8px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .box02 .input-list label .price .unit {
    font-size: 10px;
  }
}
#contents .contents-box.step03 .box04 .price {
  margin-top: 60px;
}
#contents .contents-box.step03 .set-choice {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  border: 2px solid #cb4e6f;
}
#contents .contents-box.step03 .set-choice .headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 35px;
  font-size: 17px;
  color: #fff;
  background-color: #cb4e6f;
}
#contents .contents-box.step03 .set-choice select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 70px;
  padding: 0 35px;
  font-size: 18px;
  border: none;
  background: url("../images/icn-arrow-select.png") no-repeat calc(100% - 20px) center;
  background-color: #fff;
}
#contents .contents-box.step03 .set-caution {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  margin-top: 15px;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .set-caution {
    font-size: 11px;
  }
}
#contents .contents-box.step03 .btn-groups.group01 {
  margin-top: 60px;
  padding-top: 80px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.step03 .btn-groups.group01 {
    position: relative;
    border-top: none;
    margin-top: 0;
  }
  #contents .contents-box.step03 .btn-groups.group01::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 100vw;
    height: 1px;
    background-color: #e4dcbe;
  }
}
#contents .contents-box.result {
  padding-bottom: 80px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#contents .contents-box.result .box {
  padding: 40px 0 60px;
  border-bottom: 1px solid #e4dcbe;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box {
    position: relative;
    padding: 25px 0 45px;
    border-bottom: none;
  }
  #contents .contents-box.result .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 100vw;
    height: 1px;
    background-color: #e4dcbe;
  }
}
#contents .contents-box.result .simulation-result {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .simulation-result {
    border-radius: 5px;
  }
}
#contents .contents-box.result .simulation-result .headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 35px;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #cb4e6f;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .simulation-result .headline {
    font-size: 14px;
  }
}
#contents .contents-box.result .simulation-result .price {
  padding: 20px 0 15px;
}
#contents .contents-box.result .simulation-result .price .value {
  color: #cb4e6f;
  font-size: 47px;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .simulation-result .price .value {
    font-size: 45px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .simulation-result .price .value {
    font-size: 33px;
  }
}
#contents .contents-box.result .simulation-result .price .unit {
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .simulation-result .price .unit {
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .simulation-result .price .unit {
    font-size: 12px;
  }
}
#contents .contents-box.result .discount-price {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .discount-price {
    border-radius: 5px;
  }
}
#contents .contents-box.result .discount-price .headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 35px;
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #cb4e6f;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .discount-price .headline {
    font-size: 14px;
  }
}
#contents .contents-box.result .discount-price .price {
  padding: 20px 0 15px;
}
#contents .contents-box.result .discount-price .price .value {
  color: #cb4e6f;
  font-size: 47px;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .discount-price .price .value {
    font-size: 45px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .discount-price .price .value {
    font-size: 33px;
  }
}
#contents .contents-box.result .discount-price .price .unit {
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .discount-price .price .unit {
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .discount-price .price .unit {
    font-size: 12px;
  }
}
#contents .contents-box.result .result-box-photo {
  display: none;
}
#contents .contents-box.result .result-box-photo.active {
  display: block;
}
#contents .contents-box.result .box02 .sub-title {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .sub-title {
    margin-top: 30px;
    font-size: 18px;
  }
}
#contents .contents-box.result .box02 .choice-plan-box .plan-box {
  display: none;
}
#contents .contents-box.result .box02 .choice-plan-box .plan-box.active {
  display: block;
}
#contents .contents-box.result .box02 .plan-box {
  margin-top: 20px;
  flex-grow: 1;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .plan-box {
    border-radius: 5px;
  }
}
#contents .contents-box.result .box02 .plan-box .headding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 65px;
  padding: 0 15px 0 30px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .plan-box .headding {
    padding: 0 10px 0 15px;
  }
}
#contents .contents-box.result .box02 .plan-box .headding.bg-brown {
  background-color: #d17e3f;
}
#contents .contents-box.result .box02 .plan-box .headding.bg-green {
  background-color: #5f9d2e;
}
#contents .contents-box.result .box02 .plan-box .headding.bg-purple {
  background-color: #7a1d7d;
}
#contents .contents-box.result .box02 .plan-box .headding.bg-blue {
  background-color: #225b96;
}
#contents .contents-box.result .box02 .plan-box .headding .plan-name {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
#contents .contents-box.result .box02 .plan-box .headding .plan-name br {
  display: none;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .plan-box .headding .plan-name {
    font-size: 22px;
  }
}
#contents .contents-box.result .box02 .plan-box .headding a {
  padding-right: 25px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: url("../images/icn-arrow-white.png") no-repeat right center;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .plan-box .headding a {
    font-size: 12px;
  }
}
#contents .contents-box.result .box02 .plan-box .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 20px 0 0 20px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .plan-box .content {
    padding: 10px 0 0 15px;
  }
}
#contents .contents-box.result .box02 .plan-box .content .sentence {
  padding-bottom: 20px;
}
#contents .contents-box.result .box02 .plan-box .content .sentence .plan-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .plan-box .content .sentence .plan-desc {
    font-size: 15px;
  }
}
#contents .contents-box.result .box02 .plan-box .content .sentence .tag {
  margin-top: 10px;
}
#contents .contents-box.result .box02 .plan-box .content .sentence .tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 25px;
  width: 65px;
  border-radius: 25px;
  color: #fff;
  font-size: 12px;
  background-color: #47484d;
}
#contents .contents-box.result .box02 .plan-box .content .sentence .price {
  margin-top: 8px;
}
#contents .contents-box.result .box02 .plan-box .content .sentence .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .plan-box .content .sentence .price .value {
    font-size: 32px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .box02 .plan-box .content .sentence .price .value {
    font-size: 24px;
  }
}
#contents .contents-box.result .box02 .plan-box .content .sentence .price .unit {
  font-size: 14px;
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .box02 .plan-box .content .sentence .price .unit {
    font-size: 12px;
  }
}
#contents .contents-box.result .box02 .plan-box .content .thumbnail {
  flex-shrink: 0;
  width: 135px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .plan-box .content .thumbnail {
    width: 100px;
  }
}
@media screen and (max-width: 360px) {
  #contents .contents-box.result .box02 .plan-box .content .thumbnail {
    width: 70px;
  }
}
#contents .contents-box.result .box02 .result-place-box .place-box {
  display: none;
}
#contents .contents-box.result .box02 .result-place-box .place-box.active {
  display: flex;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .result-place-box .place-box.active {
    display: block;
  }
}
#contents .contents-box.result .box02 .place-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 20px;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .place-box {
    display: block;
    padding: 15px;
    border-radius: 5px;
  }
}
#contents .contents-box.result .box02 .place-box .thumbnail {
  flex-shrink: 0;
  width: 51.3%;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .place-box .thumbnail {
    width: 100%;
  }
  #contents .contents-box.result .box02 .place-box .thumbnail img {
    width: 100%;
  }
}
#contents .contents-box.result .box02 .place-box .sentence {
  flex-grow: 1;
  padding-left: 30px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .place-box .sentence {
    margin-top: 15px;
    padding-left: 0;
  }
}
#contents .contents-box.result .box02 .place-box .sentence .place-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .place-box .sentence .place-name {
    font-size: 15px;
  }
}
#contents .contents-box.result .box02 .place-box .sentence .place-address {
  margin-top: 10px;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box02 .place-box .sentence .place-address {
    font-size: 15px;
  }
}
#contents .contents-box.result .box02 .place-box .sentence p {
  margin-top: 25px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .box02 .place-box .sentence p {
    font-size: 13px;
  }
}
#contents .contents-box.result .box02 .result-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 70px;
  margin-top: 15px;
  padding: 0 25px 0 20px;
  background-color: #fff;
  border-radius: 10px;
}
#contents .contents-box.result .box02 .result-content.result-hozen {
  height: auto;
  min-height: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .result-content {
    height: 60px;
    border-radius: 5px;
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .box02 .result-content {
    font-size: 14px;
  }
}
#contents .contents-box.result .box02 .result-content .headline {
  line-height: 1.6;
}
#contents .contents-box.result .box02 .result-content .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .result-content .price .value {
    font-size: 25px;
  }
}
@media screen and (max-width: 300px) {
  #contents .contents-box.result .box02 .result-content .price .value {
    font-size: 20px;
  }
}
#contents .contents-box.result .box02 .result-content .price .unit {
  margin-left: 5px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box02 .result-content .price .unit {
    font-size: 10px;
  }
}
#contents .contents-box.result .box03 .form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box03 .form-item {
    display: block;
    margin-top: 30px;
  }
}
#contents .contents-box.result .box03 .form-item .form-title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box03 .form-item .form-title {
    font-size: 18px;
  }
}
#contents .contents-box.result .box03 .form-item .form-content {
  width: 500px;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box03 .form-item .form-content {
    width: 100%;
    margin-top: 12px;
  }
}
#contents .contents-box.result .box03 .form-item .form-content input {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #cb4e6f;
  border-radius: 5px;
  background-color: #fff;
  font-size: 18px;
}
#contents .contents-box.result .box03 .form-item .form-content input:placeholder-shown {
  color: #aaaaaa;
}
#contents .contents-box.result .box03 .form-item .form-content input::-webkit-input-placeholder {
  color: #aaaaaa;
}
#contents .contents-box.result .box03 .form-item .form-content input:-moz-placeholder {
  color: #aaaaaa;
}
#contents .contents-box.result .box03 .form-item .form-content input::-moz-placeholder {
  color: #aaaaaa;
}
#contents .contents-box.result .box03 .form-item .form-content input:-ms-input-placeholder {
  color: #aaaaaa;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box03 .form-item .form-content input {
    height: 60px;
    padding: 0 20px;
    font-size: 15px;
  }
}
#contents .contents-box.result .error {
  display: none;
}
#contents .contents-box.result .error.active {
  display: block;
  margin-top: 8px;
  color: red;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box04::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 100vw;
    height: 1px;
    background-color: #e4dcbe;
  }
}
#contents .contents-box.result .box04 .privacy-policy-box {
  margin-top: 40px;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 5px;
}
#contents .contents-box.result .box04 .privacy-policy-box .wrap {
  height: 220px;
  overflow-y: scroll;
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .box04 .privacy-policy-box .wrap {
    height: 290px;
  }
}
#contents .contents-box.result .box04 .privacy-policy-box .inner {
  padding: 15px 60px 20px 30px;
}
@media screen and (max-width: 500px) {
  #contents .contents-box.result .box04 .privacy-policy-box .inner {
    padding: 15px 40px 15px 15px;
  }
}
#contents .contents-box.result .box04 .privacy-policy-box p {
  font-size: 16px;
  text-indent: -1em;
  margin-left: 1em;
  line-height: 2;
}
#contents .contents-box.result .box04 .agree-box {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}
#contents .contents-box.result .box04 .agree-box label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (min-width: 901px) {
  #contents .contents-box.result .box04 .agree-box label:hover {
    cursor: pointer;
  }
}
#contents .contents-box.result .box04 .agree-box label.checked .input-wrap::before {
  border-color: #cb4e6f;
}
#contents .contents-box.result .box04 .agree-box label:nth-of-type(2) {
  margin-top: 25px;
}
#contents .contents-box.result .box04 .agree-box label span {
  margin-left: 25px;
  font-size: 16px;
}
#contents .contents-box.result .btn-submit {
  margin-top: 40px;
  text-align: center;
}
#contents .contents-box.result .btn-submit input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 600px;
  height: 70px;
  border-radius: 7px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  font-size: 24px;
  text-decoration: none;
  font-weight: 500;
  background-color: #cb4e6f;
  border: none;
  color: #fff;
}
@media screen and (min-width: 901px) {
  #contents .contents-box.result .btn-submit input {
    transition: opacity 0.3s;
  }
  #contents .contents-box.result .btn-submit input:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 901px) {
  #contents .contents-box.result .btn-submit input:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  #contents .contents-box.result .btn-submit input {
    width: 100%;
  }
}
#contents .contents-box.thanks {
  padding-top: 100px;
}
#contents .contents-box.thanks p {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
}

.modal-layer {
  display: none;
  position: fixed;
  z-index: 100;
  top: 85px;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 185px;
  background-color: #f3f0e4;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-layer.active {
  display: block;
  animation: show 0.3s linear;
}
@media screen and (max-width: 900px) {
  .modal-layer {
    top: 50px;
    padding-bottom: 110px;
  }
}
.modal-layer .modal-content .contents-inner {
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .contents-inner {
    padding-top: 80px;
  }
}
.modal-layer .modal-content .btn-close {
  position: absolute;
  top: 30px;
  right: 20px;
}
@media screen and (min-width: 901px) {
  .modal-layer .modal-content .btn-close:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .btn-close {
    top: 25px;
  }
}
.modal-layer .modal-content .btn-close img {
  width: 50px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .btn-close img {
    width: 30px;
  }
}
.modal-layer .modal-content .slider .swiper-container {
  overflow: visible;
}
.modal-layer .modal-content .slider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .slider .swiper-slide {
    border-radius: 5px;
  }
}
.modal-layer .modal-content .slider .pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 35px;
}
@media screen and (min-width: 901px) {
  .modal-layer .modal-content .slider .pager .swiper-prev:hover,
  .modal-layer .modal-content .slider .pager .swiper-next:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .slider .pager .swiper-prev img,
  .modal-layer .modal-content .slider .pager .swiper-next img {
    width: 20px;
  }
}
.modal-layer .modal-content .slider .pager .swiper-pager span {
  width: 10px;
  height: 10px;
  margin: 0 7px;
  opacity: 1;
  background-color: #d6ceaf;
}
.modal-layer .modal-content .slider .pager .swiper-pager span.swiper-pagination-bullet-active {
  background-color: #cb4e6f;
}
.modal-layer .modal-content .content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content {
    margin-top: 25px;
    padding: 30px;
    border-radius: 5px;
  }
}
.modal-layer .modal-content .content .title {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .title {
    font-size: 22px;
  }
}
.modal-layer .modal-content .content .description {
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .description {
    margin-top: 20px;
    font-size: 15px;
  }
}
.modal-layer .modal-content .content .description-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .description-box {
    display: block;
  }
}
.modal-layer .modal-content .content .description-box .sentence {
  flex-grow: 1;
  padding-right: 60px;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .description-box .sentence {
    padding-right: 0;
  }
}
.modal-layer .modal-content .content .description-box .price {
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .description-box .price {
    margin-top: 30px;
  }
}
.modal-layer .modal-content .content .description-box .price .tag {
  margin-bottom: 10px;
}
.modal-layer .modal-content .content .description-box .price .tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 25px;
  width: 65px;
  border-radius: 25px;
  color: #fff;
  font-size: 12px;
  background-color: #47484d;
}
.modal-layer .modal-content .content .description-box .price .value {
  font-size: 38px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .description-box .price .value {
    font-size: 27px;
  }
}
.modal-layer .modal-content .content .description-box .price .unit {
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .description-box .price .unit {
    font-size: 10px;
  }
}
.modal-layer .modal-content .content .address {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9e3cb;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .address {
    margin-top: 30px;
  }
}
.modal-layer .modal-content .content .address p {
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.6;
  background: url("../images/icn-map.png") no-repeat left center;
  background-size: 25px auto;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .address p {
    font-size: 15px;
  }
}
.modal-layer .modal-content .content .information {
  margin-top: 40px;
  padding: 30px;
  background-color: #fcf6f8;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .information {
    margin-top: 30px;
    padding: 25px 20px;
    border-radius: 5px;
  }
}
.modal-layer .modal-content .content .information > div:nth-of-type(2) {
  margin-top: 40px;
}
.modal-layer .modal-content .content .information > div:nth-of-type(1) {
  margin-top: 0px;
}
.modal-layer .modal-content .content .information > div:nth-of-type(3) {
  margin-top: 40px;
}
.modal-layer .modal-content .content .information > div .headline {
  font-size: 18px;
  font-weight: 500;
}
.modal-layer .modal-content .content .information > div ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 0px;
}
.modal-layer .modal-content .content .information > div ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 27px;
  margin: 10px 10px 0 0;
  padding: 0 15px;
  border-radius: 27px;
  background-color: #cb4e6f;
  color: #fff;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .information > div ul li {
    height: 25px;
    font-size: 13px;
  }
}
.modal-layer .modal-content .content .include-list {
  margin-top: 40px;
  padding: 30px;
  background-color: #fcf6f8;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .include-list {
    padding: 30px 20px;
  }
}
.modal-layer .modal-content .content .include-list .headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 35px;
  background-color: #cb4e6f;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .include-list .headline {
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  .modal-layer .modal-content .content .include-list .headline {
    padding: 5px;
    height: auto;
    min-height: 35px;
    font-size: 12px;
  }
}
.modal-layer .modal-content .content .include-list .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.modal-layer .modal-content .content .include-list .list .item {
  width: 12.5%;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 901px) {
  .modal-layer .modal-content .content .include-list .list .item:not(:nth-of-type(6n + 1)) {
    margin-left: 5%;
  }
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .include-list .list .item {
    width: 32%;
  }
  .modal-layer .modal-content .content .include-list .list .item:not(:nth-of-type(3n + 1)) {
    margin-left: 2%;
  }
}
.modal-layer .modal-content .content .include-list .list .item .name {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .modal-layer .modal-content .content .include-list .list .item .name {
    font-size: 12px;
  }
}

.modal-balloon-layer {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.modal-balloon-layer.active {
  display: block;
  animation: show 0.3s linear;
}
.modal-balloon-layer .modal-box-wrap {
  position: absolute;
  max-width: 670px;
}
@media screen and (max-width: 900px) {
  .modal-balloon-layer .modal-box-wrap.with-input::before {
    left: 85px;
  }
}
.modal-balloon-layer .modal-box-wrap.privacy {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
.modal-balloon-layer .modal-box-wrap.privacy::before {
  content: none;
}
.modal-balloon-layer .modal-box-wrap .modal-inner {
  max-height: 500px;
  padding: 30px 50px 30px 30px;
  background-color: #fff;
  overflow-y: auto;
  border-top: 20px solid #fff;
  border-bottom: 20px solid #fff;
}
@media screen and (max-width: 900px) {
  .modal-balloon-layer .modal-box-wrap .modal-inner {
    width: 100% !important;
    max-height: 350px;
  }
}
.modal-balloon-layer .modal-box-wrap .modal-inner .modal-box-inner p {
  line-height: 1.6;
  word-break: break-all;
}
.modal-balloon-layer .modal-box-wrap .modal-inner .modal-box-inner p span {
  font-size: 20px;
  font-weight: bold;
}
.modal-balloon-layer .modal-box-wrap .modal-inner .modal-box-inner p + p {
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .modal-balloon-layer .modal-box-wrap {
    max-width: 100%;
    width: calc(100% - 30px);
    left: 15px !important;
  }
}
@media screen and (max-width: 900px) {
  .modal-balloon-layer .modal-box-wrap.top.with-input::before {
    left: 85px;
  }
}
.modal-balloon-layer .modal-box-wrap.top::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 17.3px 10px;
  border-color: transparent transparent #fff transparent;
}
.modal-balloon-layer .modal-box-wrap::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17.3px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
}
.modal-balloon-layer .modal-box-wrap .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (min-width: 901px) {
  .modal-balloon-layer .modal-box-wrap .modal-close:hover {
    cursor: pointer;
  }
}
.modal-balloon-layer .modal-box-wrap .modal-close img {
  width: 20px;
}
.modal-balloon-layer .modal-box-wrap .modal-box {
  display: none;
}
.modal-balloon-layer .modal-box-wrap .modal-box.active {
  display: block;
  opacity: 0;
}
.modal-balloon-layer .modal-box-wrap .modal-box.active.show {
  opacity: 1;
}
.modal-balloon-layer .modal-box-wrap .modal-box .img {
  text-align: center;
  margin-bottom: 30px;
}
.modal-balloon-layer .modal-box-wrap .modal-box .img img {
  max-width: 70%;
}
.modal-balloon-layer .modal-box-wrap .modal-box .headline {
  font-size: 18px;
  color: #cb4e6f;
}
.modal-balloon-layer .modal-box-wrap .modal-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
}
.modal-balloon-layer .modal-box-wrap .modal-box ul {
  margin-top: 30px;
}
.modal-balloon-layer .modal-box-wrap .modal-box ul li {
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}
.modal-balloon-layer .modal-box-wrap .modal-box ul li:not(:nth-of-type(1)) {
  margin-top: 20px;
}
.modal-balloon-layer .modal-box-wrap .modal-box ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #cb4e6f;
}
.modal-balloon-layer .modal-box-wrap .modal-box .caution {
  margin-top: 20px;
  font-size: 14px;
  color: #979797;
}

/*--------------------------
SUB
----------------------------*/
body.step01 {
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  body.step01 {
    padding-bottom: 105px;
  }
}
body.step01 #contents .contents-box.step01 {
  display: block;
}
body.step01 #contents .contents-box.step02, body.step01 #contents .contents-box.step03, body.step01 #contents .contents-box.result {
  display: none;
}
body.step01 #contents .step-flow .item:nth-of-type(1) .number {
  background-color: #cb4e6f;
}
body.step01 #contents .step-flow .item:nth-of-type(1) p {
  color: #cb4e6f;
}
body.step01 #globalFooter .footer-information .balloon .img02 {
  display: none;
}
body.step01 #globalFooter .footer-information .btn {
  display: none;
}

body.step02 {
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  body.step02 {
    padding-bottom: 105px;
  }
}
body.step02 #contents .contents-box.step02 {
  display: block;
}
body.step02 #contents .contents-box.step01, body.step02 #contents .contents-box.step03, body.step02 #contents .contents-box.result {
  display: none;
}
body.step02 #contents .step-flow .step-flow-inner::before {
  background-color: #cb4e6f;
}
body.step02 #contents .step-flow .item:nth-of-type(1) .number,
body.step02 #contents .step-flow .item:nth-of-type(2) .number {
  background-color: #cb4e6f;
}
body.step02 #contents .step-flow .item:nth-of-type(1) p,
body.step02 #contents .step-flow .item:nth-of-type(2) p {
  color: #cb4e6f;
}
body.step02 #globalFooter .footer-information .balloon .img02 {
  display: none;
}
body.step02 #globalFooter .logo {
  display: none;
}

body.step03 {
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  body.step03 {
    padding-bottom: 105px;
  }
}
body.step03 #contents .contents-box.step03 {
  display: block;
}
body.step03 #contents .contents-box.step01, body.step03 #contents .contents-box.step02, body.step03 #contents .contents-box.result {
  display: none;
}
body.step03 #contents .step-flow .step-flow-inner::before,
body.step03 #contents .step-flow .step-flow-inner::after {
  background-color: #cb4e6f;
}
body.step03 #contents .step-flow .item:nth-of-type(1) .number,
body.step03 #contents .step-flow .item:nth-of-type(2) .number,
body.step03 #contents .step-flow .item:nth-of-type(3) .number {
  background-color: #cb4e6f;
}
body.step03 #contents .step-flow .item:nth-of-type(1) p,
body.step03 #contents .step-flow .item:nth-of-type(2) p,
body.step03 #contents .step-flow .item:nth-of-type(3) p {
  color: #cb4e6f;
}
body.step03 #globalFooter .footer-information .balloon .img02 {
  display: none;
}
body.step03 #globalFooter .logo {
  display: none;
}

body.result {
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  body.result {
    padding-bottom: 105px;
  }
}
body.result #contents .main-headline h2::before {
  content: none;
}
body.result #contents .main-headline h2 .inner {
  padding-left: 0;
}
body.result #contents .main-headline h2 .inner::before {
  content: none;
}
body.result #contents .main-headline h2 .icn, body.result #contents .main-headline h2 .txt01, body.result #contents .main-headline h2 .txt02 {
  display: none;
}
body.result #contents .main-headline h2 .txt03 {
  display: block;
}
body.result #contents .contents-box.result {
  display: block;
}
body.result #contents .contents-box.step01, body.result #contents .contents-box.step02, body.result #contents .contents-box.step03 {
  display: none;
}
body.result #contents .step-flow {
  display: none;
}
body.result #globalFooter .footer-information .balloon .img02 {
  display: none;
}
body.result #globalFooter .logo {
  display: none;
}

body.thanks,
body.error,
body.underlayer {
  padding-bottom: 200px;
}
@media screen and (max-width: 900px) {
  body.thanks,
  body.error,
  body.underlayer {
    padding-bottom: 286px;
  }
}
body.thanks .main-headline h2::before,
body.error .main-headline h2::before,
body.underlayer .main-headline h2::before {
  content: none !important;
}
body.thanks .main-headline h2 .inner,
body.error .main-headline h2 .inner,
body.underlayer .main-headline h2 .inner {
  padding-left: 0 !important;
}
body.thanks .main-headline h2 .inner::before,
body.error .main-headline h2 .inner::before,
body.underlayer .main-headline h2 .inner::before {
  content: none !important;
}
body.thanks .main-headline h2 .txt04,
body.error .main-headline h2 .txt04,
body.underlayer .main-headline h2 .txt04 {
  color: #fff;
}
