@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap");
/*変数*/
/*PC パソコン----------------------------------*/
body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 180%;
  font-weight: 300;
  font-style: normal;
  color: #171C30;
  width: 100%;
}

@media screen and (max-width: 899px) {
  body {
    font-size: 14px;
    line-height: 160%;
  }
}

/*共通パーツ----------------------------------*/
.none {
  display: none !important;
}

.pc_none {
  display: none !important;
}

@media screen and (max-width: 899px) {
  .pc_none {
    display: block !important;
  }
}

.sp_none {
  display: block;
}

@media screen and (max-width: 899px) {
  .sp_none {
    display: none !important;
  }
}

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

a {
  text-decoration: none;
}

a:link {
  color: #171C30;
}

a:visited {
  color: #171C30;
}

a:active {
  color: #FF8E3C;
}

a:hover {
  color: #FF8E3C;
  text-decoration: none;
}

a:hover,
a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

/*親要素 水平 右寄せ*/
.flex_end {
  justify-content: flex-end;
}

/*親要素 水平 左寄せ*/
.flex_start {
  justify-content: flex-start;
}

/*親要素 水平 中央*/
.flex_center {
  justify-content: center;
}

/* 1行のみの場合はコレ入れよう */
.between {
  justify-content: space-between;
}

/*子要素 垂直 中央*/
.align_center {
  align-self: center;
}

/*子要素 垂直 下*/
.align_end {
  align-self: flex-end;
}

/*共通レイアウトパーツ----------------------------------*/
/*コンテンツ*/
main {
  width: 100%;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 899px) {
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
  }
}

.cont_box_orange {
  background-color: #FF8E3C;
}

.cont_box_beige {
  background-color: #FEF4E4;
}

.cont_section {
  margin-top: 60px;
}

@media screen and (max-width: 899px) {
  .cont_section {
    margin-top: 30px;
  }
}

.cont_section730 {
  width: 730px;
  margin: 60px auto 0 auto;
}

@media screen and (max-width: 899px) {
  .cont_section730 {
    width: 100%;
    margin: 30px auto 0 auto;
  }
}

/*カラー*/
.bg_none {
  background-color: none !important;
}

/*パディング----------------------------------*/
.padding-0 {
  padding: 0px !important;
}

/*マージン----------------------------------*/
.margin-auto {
  margin: 0 auto;
}

.margin-top5 {
  margin-top: 5px;
}

.margin-top10 {
  margin-top: 10px;
}

.margin-top20 {
  margin-top: 20px;
}

.margin-top30 {
  margin-top: 30px;
}

.margin-top40 {
  margin-top: 40px;
}

.margin-top50 {
  margin-top: 50px;
}

.margin-top60 {
  margin-top: 60px;
}

.margin-top80 {
  margin-top: 80px;
}

.margin-top100 {
  margin-top: 100px;
}

.margin-top120 {
  margin-top: 120px;
}

.margin-bottom5 {
  margin-bottom: 5px;
}

.margin-bottom10 {
  margin-bottom: 10px !important;
}

.margin-bottom20 {
  margin-bottom: 20px;
}

.margin-bottom30 {
  margin-bottom: 30px;
}

.margin-bottom40 {
  margin-bottom: 40px;
}

.margin-bottom50 {
  margin-bottom: 50px;
}

.margin-bottom60 {
  margin-bottom: 60px;
}

.margin-bottom80 {
  margin-bottom: 80px;
}

.margin-bottom100 {
  margin-bottom: 100px;
}

.margin-bottom120 {
  margin-bottom: 120px;
}

.margin-tb5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.margin-tb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.margin-right10 {
  margin-right: 10px;
}

.margin-left10 {
  margin-left: 10px;
}

/*レイアウト幅*/
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w70 {
  width: 70%;
}

.w85 {
  width: 85%;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 899px) {
  .w_sp10 {
    width: 10%;
  }
}

@media screen and (max-width: 899px) {
  .w_sp15 {
    width: 15%;
  }
}

@media screen and (max-width: 899px) {
  .w_sp20 {
    width: 20%;
  }
}

@media screen and (max-width: 899px) {
  .w_sp25 {
    width: 25%;
  }
}

@media screen and (max-width: 899px) {
  .w_sp30 {
    width: 30%;
  }
}

@media screen and (max-width: 899px) {
  .w_sp100 {
    width: 100%;
  }
}

/*テキスト*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.text_middle {
  vertical-align: middle;
}

.ttl_cate {
  font-size: 20px;
  font-weight: 800;
  line-height: 2rem;
}

@media screen and (max-width: 899px) {
  .ttl_cate {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5rem;
  }
}

.sub_ttl_cate {
  font-size: 64px;
  font-family: "Lilita One", cursive;
  color: #FF8E3C;
  line-height: 4rem;
  margin-bottom: 50px;
}

@media screen and (max-width: 899px) {
  .sub_ttl_cate {
    font-size: 34px;
    line-height: 2rem;
    margin-bottom: 40px;
  }
}

.ttl_wd,
.ttl_dt {
  position: relative;
  padding-left: 95px;
}

@media screen and (max-width: 899px) {
  .ttl_wd,
  .ttl_dt {
    position: relative;
    padding-left: 0px;
    font-size: 13px;
    margin-bottom: 5px;
  }
}

.sub_ttl_wd,
.sub_ttl_dt {
  padding-left: 95px;
}

@media screen and (max-width: 899px) {
  .sub_ttl_wd,
  .sub_ttl_dt {
    padding-left: 45px;
    font-size: 36px;
  }
  .sub_ttl_wd span,
  .sub_ttl_dt span {
    font-size: 24px;
  }
}

.ttl_wd::before {
  content: " ";
  display: block;
  width: 78px;
  height: 77px;
  background: url("https://funcreate.itembox.design/item/ttl_wd.svg") no-repeat;
  position: absolute;
  top: 35%;
  left: 0%;
}

@media screen and (max-width: 899px) {
  .ttl_wd::before {
    width: 41px;
    height: 41px;
    background: url("https://funcreate.itembox.design/item/ic_webdeco.svg") no-repeat;
    position: absolute;
    top: 90%;
    left: 0%;
  }
}

.ttl_dt::before {
  content: " ";
  display: block;
  width: 77px;
  height: 78px;
  background: url("https://funcreate.itembox.design/item/ttl_data.svg") no-repeat;
  position: absolute;
  top: 35%;
  left: 0%;
}

@media screen and (max-width: 899px) {
  .ttl_dt::before {
    width: 41px;
    height: 41px;
    background: url("https://funcreate.itembox.design/item/ic_data.svg") no-repeat;
    position: absolute;
    top: 90%;
    left: 0%;
  }
}

.h_ttl_1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 1.2em;
}

@media screen and (max-width: 899px) {
  .h_ttl_1 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.h_ttl_1_theme {
  font-size: 32px;
  font-weight: 600;
  color: #FF8E3C;
  border-bottom: 1px solid #FF8E3C;
  padding-bottom: 15px;
  margin-bottom: 12px;
}

@media screen and (max-width: 899px) {
  .h_ttl_1_theme {
    font-size: 16px;
    padding-bottom: 5px;
    margin-bottom: 8px;
  }
}

.h_ttl_2, .h_ttl_2_w {
  font-size: 32px;
  font-weight: 600;
  color: #FF8E3C;
  border-bottom: 1px solid #FF8E3C;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

@media screen and (max-width: 899px) {
  .h_ttl_2, .h_ttl_2_w {
    font-size: 16px;
    padding-bottom: 5px;
    margin-bottom: 30px;
  }
}

.h_ttl_3 {
  font-size: 24px;
  font-weight: 600;
  background-color: #FFE974;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 8px 15px;
}

@media screen and (max-width: 899px) {
  .h_ttl_3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.h_ttl_3_normal {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media screen and (max-width: 899px) {
  .h_ttl_3_normal {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.h_ttl_4 {
  font-size: 20px;
  font-weight: 600;
  padding: 0 10px;
  margin-bottom: 20px;
  border-left: 4px solid #272343;
}

@media screen and (max-width: 899px) {
  .h_ttl_4 {
    font-size: 14px;
  }
}

.required {
  display: inline-block;
  margin-left: 15px;
  padding: 2px 10px 1px 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4rem;
  background: #F45D48;
  border-radius: 5px;
  vertical-align: middle;
}

@media screen and (max-width: 899px) {
  .required {
    padding: 1px 5px 0px 5px;
    font-size: 12px;
  }
}

.new {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 3px 1px 3px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 0.8rem;
  background: #f22200;
  border-radius: 3px;
  vertical-align: middle;
}

@media screen and (max-width: 899px) {
  .new {
    padding: 1px 2px 0px 2px;
    font-size: 10px;
  }
}

.ttl_orange {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FF8E3C;
}

@media screen and (max-width: 899px) {
  .ttl_orange {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_orange_bl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FF8E3C;
  border-bottom: 1px solid #FF8E3C;
  padding-bottom: 10px;
}

@media screen and (max-width: 899px) {
  .ttl_orange_bl {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_white_bl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 10px;
}

@media screen and (max-width: 899px) {
  .ttl_white_bl {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_graybox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  background-color: #F5F5F5;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_graybox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_DKbluebox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #FFFFFF;
  background-color: #272343;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_DKbluebox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_bluebox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #FFFFFF;
  background-color: #47C1D1;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_bluebox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_DKorangebox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #FFFFFF;
  background-color: #F45D48;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_DKorangebox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_orangebox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #FFFFFF;
  background-color: #FF8E3C;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_orangebox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_DKyellowbox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #171C30;
  background-color: #FFD803;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_DKyellowbox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_beigebox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #171C30;
  background-color: #FEF4E4;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_beigebox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_DKemegreenbox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #FFFFFF;
  background-color: #078080;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_DKemegreenbox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_emegreenbox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #171C30;
  background-color: #BAE8E8;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_emegreenbox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_pinkbox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #171C30;
  background-color: #F0B2C9;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_pinkbox {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_RTblue2box {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #171C30;
  background-color: #B2DCF0;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_RTblue2box {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_greenbox {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #171C30;
  background-color: #CBF0B2;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .ttl_greenbox {
    font-size: 14px;
    font-weight: bold;
  }
}

.sub_ttl_theme {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media screen and (max-width: 899px) {
  .sub_ttl_theme {
    font-size: 14px;
  }
}

.ttl_normal {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media screen and (max-width: 899px) {
  .ttl_normal {
    font-size: 14px;
    font-weight: bold;
  }
}

.ttl_no_normal {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: -8px;
}

.ttl_no_normal_small {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ttl_bg_pink {
  color: #FFFFFF !important;
  background-color: #C44888 !important;
}

.ttl_bg_blue {
  color: #FFFFFF !important;
  background-color: #4896C4 !important;
}

.ttl_bg_green {
  color: #FFFFFF !important;
  background-color: #8AC448 !important;
}

.days_box {
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto;
  padding: 4px 15px 3px 15px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  line-height: 1.4rem;
  vertical-align: middle;
}

.font_bold {
  font-weight: bold !important;
}

.font_l {
  font-size: 20px !important;
}

@media screen and (max-width: 899px) {
  .font_l {
    font-size: 16px !important;
  }
}

.font_normal {
  font-size: 16px !important;
}

.font_lb {
  font-size: 20px !important;
  font-weight: bold !important;
}

@media screen and (max-width: 899px) {
  .font_lb {
    font-size: 16px !important;
  }
}

.font_lb200 {
  font-size: 200% !important;
  font-weight: bold !important;
}

@media screen and (max-width: 899px) {
  .font_lb200 {
    font-size: 20px !important;
  }
}

.font_lb200_ps {
  font-size: 200% !important;
  font-weight: bold !important;
}

@media screen and (max-width: 899px) {
  .font_lb200_ps {
    font-size: 200% !important;
  }
}

.font_s {
  font-size: 12px !important;
  line-height: 1.4rem !important;
}

.font_orange {
  color: #F9553E;
}

.font_white {
  color: #FFFFFF !important;
}

.font_price {
  font-size: 20px;
}

@media screen and (max-width: 899px) {
  .font_price {
    font-size: 18px;
  }
}

@media screen and (max-width: 899px) {
  .font_s_sp {
    font-size: 0.8em;
    line-height: 1rem;
  }
}

.marker_orange {
  background: linear-gradient(transparent 60%, #FAAE2B 60%);
}

.marker_yellow {
  background: linear-gradient(transparent 60%, #FFE974 60%);
}

.marker_green {
  background: linear-gradient(transparent 60%, #BAE8E8 60%);
}

.marker_dKblue {
  padding-bottom: 10px;
  border-bottom: 2px solid #272343;
}

.bubble_orange,
.bubble_green {
  position: relative;
  padding: 1.5rem 2rem;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 899px) {
  .bubble_orange,
  .bubble_green {
    padding: 1rem;
    font-size: 14px;
  }
}

.bubble_orange:after,
.bubble_green:after {
  position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: "";
  border-width: 10px 10px 0 10px;
  border-style: solid;
}

.bubble_orange {
  background: #F45D48;
}

.bubble_orange:after {
  border-color: #F45D48 transparent transparent transparent;
}

.bubble_green {
  background: #272343;
}

.bubble_green:after {
  border-color: #272343 transparent transparent transparent;
}

.bubble_orange span,
.bubble_green span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}

@media screen and (max-width: 899px) {
  .bubble_orange span,
  .bubble_green span {
    font-size: 14px;
  }
}

/*ボタン*/
/*共通CSS*/
a.btn,
.btn {
  transition: 0.3s;
  display: block;
  text-align: center;
}

a.btn:hover,
.btn:hover {
  transition: 0.3s;
  opacity: 0.8;
}

/*詳細見るボタン*/
.btn-more {
  margin-bottom: 20px;
}

.btn-more a,
.btn-more {
  font-size: 16px;
  padding: 7px 2px;
  border-radius: 5px;
  display: block;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 899px) {
  .btn-more a,
  .btn-more {
    font-size: 14px;
  }
}

.btn-more a:before,
.btn-more:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media screen and (max-width: 899px) {
  .btn-more a:before,
  .btn-more:before {
    top: 50%;
    bottom: 50%;
    right: 5px;
    width: 9px;
    height: 9px;
  }
}

.btn-more a:hover,
.btn-more:hover,
.btn-arch a:hover,
.btn-arch:hover {
  transition: 0.3s;
  opacity: 0.8;
}

.btn-arch {
  margin-bottom: 10px;
}

.btn-arch a {
  font-size: 18px;
  color: #171C30;
  padding: 10px 0;
  margin: 5px 0;
}

@media screen and (max-width: 899px) {
  .btn-arch a {
    font-size: 14px;
  }
}

/*でかボタン*/
a.btn-c,
.btn-c {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding: 1.5rem;
  border-radius: 100vh;
  margin: 40px auto 60px auto;
  min-width: 350px;
  max-width: 450px;
  border: none;
}

@media screen and (max-width: 899px) {
  a.btn-c,
  .btn-c {
    font-size: 16px;
    min-width: 90%;
    padding: 1rem;
  }
}

a.btn-c:before,
.btn-c:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media screen and (max-width: 899px) {
  a.btn-c:before,
  .btn-c:before {
    top: 50%;
    bottom: 50%;
    right: 17px;
    width: 9px;
    height: 9px;
  }
}

a.btn-c-db,
.btn-c-db {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding: 1.5rem;
  border-radius: 100vh;
  margin: 40px auto 60px auto;
  min-width: 350px;
  max-width: 450px;
  border: none;
}

@media screen and (max-width: 899px) {
  a.btn-c-db,
  .btn-c-db {
    font-size: 16px;
    min-width: 90%;
    padding: 1rem;
  }
}

a.btn-c-db:before,
.btn-c-db:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #272343;
  border-right: 3px solid #272343;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media screen and (max-width: 899px) {
  a.btn-c-db:before,
  .btn-c-db:before {
    top: 50%;
    bottom: 50%;
    right: 17px;
    width: 9px;
    height: 9px;
  }
}

a.btn-c-s,
.btn-c-s {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding: 1.5rem;
  border-radius: 100vh;
  margin: 5px auto 60px auto;
  min-width: 350px;
  max-width: 450px;
  border: none;
}

@media screen and (max-width: 899px) {
  a.btn-c-s,
  .btn-c-s {
    font-size: 14px;
    min-width: 90%;
    padding: 0.5rem;
  }
}

a.btn-c-s:before,
.btn-c-s:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media screen and (max-width: 899px) {
  a.btn-c-s:before,
  .btn-c-s:before {
    top: 50%;
    bottom: 50%;
    right: 17px;
    width: 9px;
    height: 9px;
  }
}

/*リンク無し　でかボタン*/
.btn-box {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1.5rem;
  border-radius: 100vh;
  margin: 20px auto;
  width: 100%;
  cursor: pointer;
  border: none;
}

@media screen and (max-width: 899px) {
  .btn-box {
    font-size: 12px;
    width: 100%;
    margin: 10px auto 20px auto;
    padding: 5px;
  }
}

/*Web deco ボタン*/
a.btn--wd {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding: 1.5rem 2rem 1.5rem 5rem;
  border-radius: 100vh;
  margin: 40px auto 60px auto;
  color: #FFFFFF;
  background-color: #FF8E3C;
  min-width: 240px;
}

@media screen and (max-width: 899px) {
  a.btn--wd {
    font-size: 16px;
    padding: 1.5rem 0rem 1.5rem 1rem;
    margin: 0px auto 40px auto;
  }
}

a.btn--wd:after {
  content: " ";
  display: block;
  width: 41px;
  height: 41px;
  background: url("https://funcreate.itembox.design/item/ic_webdeco.svg") no-repeat;
  position: absolute;
  top: calc(50% - 1.3rem);
  left: 2rem;
}

@media screen and (max-width: 899px) {
  a.btn--wd:after {
    top: calc(30% - 0.4rem);
    left: 1.5rem;
  }
}

a.btn--RTorange,
.btn--RTorange,
.btn-more-RTorange a,
.btn-more-RTorange {
  color: #FFFFFF !important;
  background-color: #FAAE2B;
}

a.btn--orange,
.btn--orange,
.btn-more-orange a,
.btn-more-orange {
  color: #FFFFFF !important;
  background-color: #FF8E3C;
}

a.btn--DKorange,
.btn--DKorange,
.btn-more-DKorange a,
.btn-more-DKorange {
  color: #FFFFFF !important;
  background-color: #F45D48;
}

a.btn--DKblue,
.btn--DKblue,
.btn-more-DKblue a,
.btn-more-DKblue {
  color: #FFFFFF !important;
  background-color: #272343;
}

a.btn--beige,
.btn--beige,
.btn-more-beige a,
.btn-more-beige {
  color: #171C30 !important;
  background-color: #FEF4E4;
}

a.btn--yellow,
.btn--yellow,
.btn-more-yellow a,
.btn-more-yellow {
  color: #171C30 !important;
  background-color: #FFE974;
}

a.btn--DKyellow,
.btn--DKyellow,
.btn-more-DKyellow a,
.btn-more-DKyellow {
  color: #171C30 !important;
  background-color: #FFD803;
}

a.btn--DKemegreen,
.btn--DKemegreen,
.btn-more-DKemegreen a,
.btn-more-DKemegreen {
  color: #FFFFFF !important;
  background-color: #078080;
}

a.btn--emegreen,
.btn--emegreen,
.btn-more-emegreen a,
.btn-more-emegreen {
  color: #171C30 !important;
  background-color: #BAE8E8;
}

a.btn--green,
.btn--green,
.btn-more-green a,
.btn-more-green {
  /* color: $black !important;
    background-color: $RTgreen; */
  color: #FFFFFF !important;
  background-color: #f22200;
}

a.btn--DKgreen,
.btn--DKgreen,
.btn-more-DKgreen a,
.btn-more-DKgreen {
  color: #FFFFFF !important;
  background-color: #8AC448;
}

a.btn--line,
.btn--line,
.btn-more-line a,
.btn-more-line {
  color: #171C30 !important;
  border: 1px solid #171C30;
}

/* list */
ul.list_kome {
  padding: 0.5em;
  /* margin-bottom: 30px; */
}

ul.list_kome li {
  position: relative;
  text-indent: -0.3em;
  line-height: 1.2em;
  padding: 0.5em 0.5em 0.5em 1em;
}

ul.list_kome li:before {
  content: "※";
  display: inline-block;
  position: relative;
  top: 0px;
}

ul.list_normal {
  padding: 0.5em;
  /* margin-bottom: 30px; */
}

ul.list_normal li {
  position: relative;
  text-indent: -1em;
  line-height: 1.2em;
  padding: 0.5em 0.5em 0.5em 1em;
}

ul.list_normal li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #FF8E3C;
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 5px;
}

ul.list_ship {
  padding: 0.5em;
}

ul.list_ship li {
  position: relative;
  font-weight: bold;
  text-indent: -1em;
  line-height: 1.2em;
  padding: 0.5em 0.5em 0.3em 1em;
}

ul.list_ship li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 10%;
  position: relative;
  top: -1px;
  margin-right: 5px;
}

ul.list_ship li.orange:before {
  background-color: #FF8E3C;
}

ul.list_ship li.DKorange:before {
  background-color: #F45D48;
}

ul.list_ship li.DKblue:before {
  background-color: #272343;
}

ul.list_ship li.DKemegreen:before {
  background-color: #078080;
}

ol.list_number {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 0.5em;
  /* background: $beige; */
  /* margin-bottom: 30px; */
}

ol.list_number li {
  position: relative;
  text-indent: 0em;
  line-height: 1.4em;
  padding: 0.5em 0.5em 0.5em 2em;
}

ol.list_number li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #FF8E3C;
  color: white;
  font-family: "Lilita One", cursive;
  font-size: 16px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list_faq dl {
  padding: 0.5em;
  /*     margin-bottom: 30px;
 */
}

.list_faq dt,
.list_faq dd {
  position: relative;
  text-indent: 0em;
  line-height: 1.6em;
  padding: 0.5em 0.5em 0.5em 2em;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 899px) {
  .list_faq dt,
  .list_faq dd {
    line-height: 1.4em;
    padding: 1.2em 0.5em 0.5em 2.5em;
    font-weight: normal;
    font-size: 14px;
  }
}

.list_faq dd {
  margin-bottom: 40px;
}

.list_faq dd p {
  font-weight: normal;
  font-size: 14px;
}

.list_faq dd:before {
  content: "A";
  background: #FF8E3C;
  font-weight: normal;
}

.list_faq dt:before {
  content: "Q";
  background: #272343;
  font-weight: normal;
}

.list_faq dt:before,
.list_faq dd:before {
  position: absolute;
  /*以下数字のデザイン変える*/
  display: inline-block;
  color: white;
  font-family: "Lilita One", cursive;
  font-size: 20px;
  border-radius: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 26px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* box */
.item_box {
  padding: 20px 15px 0px 15px;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
}

.item_box_block {
  padding: 20px 15px 0px 15px;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  align-items: flex-end;
}

.box_point {
  position: relative;
  padding: 20px;
  border-radius: 0 5px 5px 5px;
  background: #E3F6F5;
  margin: 40px 0 30px 0;
}

@media screen and (max-width: 899px) {
  .box_point {
    font-size: 14px;
    padding: 20px;
  }
}

.box_point:before {
  font-family: "Lilita One", cursive;
  font-size: 16px;
  line-height: 1.8rem;
  position: absolute;
  top: -28px;
  left: 0px;
  padding: 0 20px;
  content: "POINT !!";
  color: #FFFFFF;
  border-radius: 5px 5px 0 0;
  background: #078080;
}

@media screen and (max-width: 899px) {
  .box_point:before {
    font-size: 14px;
    line-height: 1.4rem;
    top: -23px;
    padding: 0 20px;
  }
}

.box_caution {
  position: relative;
  padding: 20px;
  border-radius: 0 5px 5px 5px;
  border: solid 2px #FF8E3C;
  margin: 40px 0 30px 0;
}

@media screen and (max-width: 899px) {
  .box_caution {
    font-size: 14px;
    padding: 20px;
  }
}

.box_caution:before {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8rem;
  position: absolute;
  top: -29px;
  left: -1px;
  padding: 0 20px;
  content: "ご注意下さい !!";
  color: #FFFFFF;
  border-radius: 5px 5px 0 0;
  background: #FF8E3C;
}

@media screen and (max-width: 899px) {
  .box_caution:before {
    font-size: 14px;
    line-height: 1.4rem;
    top: -23px;
    padding: 0 20px;
  }
}

.ti_ship {
  padding: 15px 20px 5px 20px;
  border-radius: 5px 5px 0 0;
  margin: 0;
  color: #FFFFFF !important;
  font-weight: bold;
}

.ti_ship span {
  font-size: 2em;
  color: #FFFFFF !important;
  font-weight: bold;
}

.line_col_DKemegreen {
  border: solid 2px #078080;
}

.line_col_DKblue {
  border: solid 2px #272343;
}

.line_col_DKorange {
  border: solid 2px #F45D48;
}

.line_col_orange {
  border: solid 2px #FF8E3C;
}

.bg_col_DKemegreen {
  background-color: #078080 !important;
}

.bg_col_DKblue {
  background-color: #272343 !important;
}

.bg_col_DKorange {
  background-color: #F45D48 !important;
}

.bg_col_orange {
  background-color: #FF8E3C !important;
}

.box_ship {
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 0 0 5px 5px;
}

.box_line_gray {
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: solid 1px #c9c9c9;
}

.box_line_gray_item {
  padding: 15px 20px;
  border-radius: 5px;
  border: solid 1px #c9c9c9;
}

@media screen and (max-width: 899px) {
  .box_line_gray_item {
    padding: 5px;
  }
}

.box_line_orange {
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: solid 1px #FF8E3C;
}

.box_line_green {
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: solid 1px #078080;
}

.box_gray {
  padding: 15px 20px;
  background-color: #F5F5F5;
  margin-bottom: 30px;
  border-radius: 5px;
}

.box_DKblue {
  padding: 15px 20px;
  background-color: #272343;
  margin-bottom: 30px;
  border-radius: 5px;
  color: #FFFFFF;
}

.box_orange {
  padding: 15px 20px;
  background-color: #FF8E3C;
  margin-bottom: 30px;
  border-radius: 5px;
  color: #FFFFFF;
}

.box_RTorange {
  padding: 15px 20px;
  background-color: #FAAE2B;
  margin-bottom: 30px;
  border-radius: 5px;
}

.box_yellow {
  padding: 15px 20px;
  background-color: #FFE974;
  margin-bottom: 30px;
  border-radius: 5px;
}

.box_DKyellow {
  padding: 15px 20px;
  background-color: #FFD803;
  margin-bottom: 30px;
  border-radius: 5px;
}

.box_data {
  padding: 30px 50px;
  background-color: #FF8E3C;
  margin-bottom: 60px;
  border-radius: 5px;
}

@media screen and (max-width: 899px) {
  .box_data {
    padding: 20px 15px;
  }
}

.box_beige {
  padding: 15px 15px;
  background-color: #FEF4E4;
  margin-bottom: 30px;
  border-radius: 5px;
}

.box_green {
  padding: 15px 20px;
  background-color: #DAF9DE;
  margin-bottom: 30px;
  border-radius: 5px;
}

.box_DKemegreen {
  padding: 15px 20px;
  background-color: #078080;
  margin-bottom: 30px;
  border-radius: 5px;
  color: #FFFFFF;
}

.box_greeting {
  position: relative;
  padding: 30px 50px;
  background-color: #FEF4E4;
  margin-bottom: 60px;
  border-radius: 5px;
}

.box_greeting p {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 899px) {
  .box_greeting {
    padding: 20px 15px;
  }
}

/* 定義リスト */
.specification dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-bottom: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 899px) {
  .specification dl {
    flex-flow: column;
    font-size: 12px;
  }
}

.specification dt {
  flex-basis: 15%;
  padding: 10px;
  background-color: #F5F5F5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 899px) {
  .specification dt {
    border-bottom: none;
    padding: 3px 10px;
  }
}

.specification dd {
  flex-basis: 85%;
  padding: 10px;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 899px) {
  .specification dd {
    padding: 5px 10px;
  }
}

/* 定義リスト アイコンメニュー説明*/
.icon_text dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.icon_text dt {
  flex-basis: 15%;
  padding: 10px 0;
}

.icon_text dd {
  flex-basis: 85%;
  padding: 10px 20px;
}

/* table ノーマル */
.tbl_normal {
  max-width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 899px) {
  .tbl_normal {
    font-size: 12px;
  }
}

.tbl_normal table {
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.tbl_normal thead th {
  background: #dddddd;
  color: #171C30;
  font-weight: bold;
}

.tbl_normal th,
.tbl_normal td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.6em;
  background: #FFFFFF;
}

.tbl_normal th {
  background: #F5F5F5;
  color: #171C30;
  font-weight: bold;
}

/* table スクロール */
.tbl_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 899px) {
  .tbl_scroll {
    font-size: 12px;
  }
}

.tbl_scroll table {
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.1);
  table-layout: fixed;
  width: 1080px;
}

.tbl_scroll thead th {
  background: #dddddd;
  color: #171C30;
  font-weight: bold;
}

.tbl_scroll th,
.tbl_scroll td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.6em;
  text-align: center;
  background: #FFFFFF;
}

.tbl_scroll th {
  background: #F5F5F5;
  color: #171C30;
  font-weight: bold;
}

.normal {
  margin-top: 10px;
  border-bottom: solid 1px #e1e1dd;
  border-left: solid 1px #e1e1dd;
  border-right: none;
  border-top: none;
}

@media screen and (max-width: 899px) {
  .normal {
    font-size: 12px;
  }
}

.normal thead th {
  background-color: #efeee9;
  color: #171C30;
  font-weight: bold;
}

.normal th {
  padding: 10px 8px;
  border-bottom: none;
  border-left: none;
  border-right: solid 1px #e1e1dd;
  border-top: solid 1px #e1e1dd;
  background-color: #fbfbf9;
  color: #171C30;
  font-weight: bold;
  vertical-align: middle;
}

.normal td {
  padding: 10px 8px;
  border-bottom: none;
  border-left: none;
  border-right: solid 1px #e1e1dd;
  border-top: solid 1px #e1e1dd;
  /* [disabled]color:#000000; */
}

.normal td .gray {
  background-color: #fbfbf9;
}

.normal td .gray2 {
  background-color: #696969;
  padding: 20px 0;
}

caption {
  color: #171C30;
  font-weight: bold;
  text-align: left;
  padding: 0;
  margin-top: 10px;
}

/*Flexbox*/
.flex_p2_s1_rev > .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_rev > .item {
    display: block;
  }
}

.flex_p2_s1_rev > .item:nth-child(2n) {
  flex-direction: row-reverse;
}

.flex_p2_s1_rev > .item > .item-text {
  width: 46%;
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_rev > .item > .item-text {
    width: 100%;
    margin-bottom: 30px;
  }
}

.flex_p2_s1_rev > .item > .item-img {
  width: 46%;
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_rev > .item > .item-img {
    width: 100%;
    margin-bottom: 10px;
  }
}

.flex_p2_s2_rev > .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media screen and (max-width: 899px) {
  .flex_p2_s2_rev > .item {
    margin-bottom: 30px;
  }
}

.flex_p2_s2_rev > .item:nth-child(odd) {
  flex-direction: row-reverse;
}

.flex_p2_s2_rev > .item > .item-img,
.flex_p2_s2_rev > .item > .item-text {
  width: 46%;
}

.flex_p2_s1_row {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_row {
    margin-bottom: 30px;
  }
}

.flex_p2_s1_row > .item {
  width: 46%;
  margin-bottom: 80px;
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_row > .item {
    width: 100%;
    margin-bottom: 0px;
  }
}

.flex_p2_s1_row > .item:not(:nth-child(2n + 2)) {
  margin-right: 8%;
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_row > .item:not(:nth-child(2n + 2)) {
    margin-right: 0%;
  }
}

@media screen and (max-width: 899px) {
  .flex_p2_s1_row > .item:not(:nth-child(2n + 1)) {
    margin-right: 0%;
  }
}

/* grid */
.grid_p2_s1 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p2_s1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid_p2_s2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.grid_p3_s1 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p3_s1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid_p3_s2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p3_s2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.grid_p3_s3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p3_s3 {
    gap: 8px;
  }
}

.grid_p4_s2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p4_s2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.grid_p6_s3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p6_s3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.grid_p6_s4 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p6_s4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.grid_p6_s2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p6_s2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.grid_p7_s4 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(7, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p7_s4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.grid_p8_s4 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(8, 1fr);
}

@media screen and (max-width: 899px) {
  .grid_p8_s4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.grid_p11_s6 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(11, 1fr);
}

.grid_p11_s6 p {
  font-size: 12px;
  font-weight: 800;
  line-height: 1rem;
}

@media screen and (max-width: 899px) {
  .grid_p11_s6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
}

/*データについて*/
.grid_data {
  display: grid;
  gap: 24px;
  grid-template-columns: 3fr 1fr;
}

@media screen and (max-width: 899px) {
  .grid_data {
    display: block;
  }
}

@media screen and (max-width: 899px) {
  .grid_data > .item1 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 899px) {
  .grid_data > .item2 {
    width: 46%;
  }
}

/*セット割引*/
/*独自コメント4*/
.rate_high {
  display: none;
}

/*独自コメント5*/
.rate_low {
  display: none;
}

/*独自コメント6*/
.rate_none {
  display: none;
}

.set_discount {
  text-align: center;
  padding-top: 10px;
}

.set_discount li {
  border: 2px solid #FAAE2B;
  padding: 20px 10px;
  border-radius: 5px;
  margin-bottom: 0px;
}

.set_discount .item {
  margin-bottom: 20px !important;
  line-height: 1.8rem;
}

.data_discount {
  text-align: center;
}

.data_discount li {
  border: 2px solid #FAAE2B;
  padding: 10px;
  border-radius: 5px;
}

.data_discount .item {
  margin-bottom: 5px !important;
  line-height: 1.8rem;
}

@media screen and (max-width: 899px) {
  .data_discount li .font_lb {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 899px) {
  .data_discount li .font_orange {
    font-size: 0.8rem !important;
  }
}

/*タペストリー料金表*/
table.fee {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  word-break: break-word;
  word-wrap: overflow-wrap;
  line-height: 2.5em;
}

table.fee tr {
  border-bottom: 2px solid #FFFFFF;
}

table.fee th,
table.fee td {
  border-right: 2px solid #FFFFFF;
}

table.fee thead tr {
  background-color: #696969;
  color: #FFFFFF;
}

table.fee tbody th {
  background: #696969;
  color: #FFFFFF;
}

.txt {
  text-align: center;
}

.noprice {
  background-color: #F5F5F5;
  text-align: center;
  font-size: 0.8em;
}

.th-noprice {
  font-size: 0.8em;
}

.price1 {
  background: linear-gradient(#ffe4e1, #fac6c0);
  text-align: center;
  color: #167f92;
}

.price2 {
  background: linear-gradient(#e6f2f5, #bfe8f2);
  text-align: center;
  color: #FFFFFF;
}

.price3 {
  background: linear-gradient(#fffac9, #f7ed86);
  text-align: center;
  color: #167f92;
}

.non {
  background: #FFFFFF;
}

/* セル全体でリンク */
.fee a {
  display: block;
  text-decoration: none;
}

/*料金表 ボタンバージョン*/
.btn-square-shadow1 {
  display: inline-block;
  text-decoration: none;
  background: #ffe4e1;
  /*ボタン色*/
  color: #FFFFFF;
  border-bottom: solid 4px #fac6c0;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.btn-square-shadow1:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /*影を小さく*/
  border-bottom: none;
}

.btn-square-shadow2 {
  display: inline-block;
  text-decoration: none;
  background: #e6f2f5;
  /*ボタン色*/
  color: #FFFFFF;
  border-bottom: solid 4px #bfe8f2;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.btn-square-shadow2:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /*影を小さく*/
  border-bottom: none;
}

.btn-square-shadow3 {
  display: inline-block;
  text-decoration: none;
  background: #fffac9;
  /*ボタン色*/
  color: #FFFFFF;
  border-bottom: solid 4px #f7ed86;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.btn-square-shadow3:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /*影を小さく*/
  border-bottom: none;
}

.btn-square-shadow4 {
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  background: #dcdcdc;
  /*ボタン色*/
  color: #FFFFFF;
  border-bottom: solid 4px #808080;
  border-radius: 3px;
  width: 80%;
  height: 100%;
  text-align: center;
}

.btn-square-shadow4:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /*影を小さく*/
  border-bottom: none;
}

/*---------------------------------
アコーディオンボックス　グリーン
--------------------------------*/
.acbox {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 10px;
  /* ボックス全体の位置調整 */
}

.acbox label {
  width: auto;
  font-size: 16px;
  /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #8bc34a;
  /* ラベルの背景色 */
  position: relative;
  display: block;
  padding: 8px;
  border-radius: 4px;
  /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
  border-bottom: solid 4px #006400;
}

.acbox label:hover {
  background: #8bc34a;
  /* ラベルにマウスを乗せた時の背景色 */
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
}

.acbox input {
  display: none;
}

.acbox label:after {
  color: #FFFFFF;
  content: "OPEN▼";
  /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox input:checked ~ label::after {
  content: "CLOSE▲";
  /* ラベルをクリックした後のアイコン */
}

.acbox div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s;
  /* 開閉スピードの設定 */
}

.acbox input:checked ~ div {
  height: auto;
  padding: 18px;
  /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF;
  border: 2px solid #beecbe;
  /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #8bc34a;
  /* クリック後のラベルの背景色 */
}

.acbox-under {
  font-size: 15px;
  /* 開いた部分の文字サイズ */
  color: #555555;
  /* 開いた部分の文字色 */
}

/*---------------------------------
  アコーディオンボックス　ブルー
  --------------------------------*/
.acbox-bl {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 10px;
  /* ボックス全体の位置調整 */
}

.acbox-bl label {
  width: auto;
  font-size: 16px;
  /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #1e90ff;
  /* ラベルの背景色 */
  position: relative;
  display: block;
  padding: 8px;
  border-radius: 4px;
  /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
  border-bottom: solid 4px #2f4f4f;
}

.acbox-bl label:hover {
  background: #1e90ff;
  /* ラベルにマウスを乗せた時の背景色 */
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
}

.acbox-bl input {
  display: none;
}

.acbox-bl label:after {
  color: #FFFFFF;
  content: "OPEN▼";
  /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox-bl input:checked ~ label::after {
  content: "CLOSE▲";
  /* ラベルをクリックした後のアイコン */
}

.acbox-bl div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s;
  /* 開閉スピードの設定 */
}

.acbox-bl input:checked ~ div {
  height: auto;
  padding: 18px;
  /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF;
  border: 2px solid #a5d0fc;
  /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox-bl input:checked ~ label {
  background: #1e90ff;
  /* クリック後のラベルの背景色 */
}

.acbox-bl-under {
  font-size: 15px;
  /* 開いた部分の文字サイズ */
  color: #555555;
  /* 開いた部分の文字色 */
}

/*---------------------------------
  アコーディオンボックス　オレンジ
  --------------------------------*/
.acbox-or {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 10px;
  /* ボックス全体の位置調整 */
}

.acbox-or label {
  width: auto;
  font-size: 16px;
  /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #ff8c00;
  /* ラベルの背景色 */
  position: relative;
  display: block;
  padding: 8px;
  border-radius: 4px;
  /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
  border-bottom: solid 4px #d2691e;
}

.acbox-or label:hover {
  background: #ff8c00;
  /* ラベルにマウスを乗せた時の背景色 */
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
}

.acbox-or input {
  display: none;
}

.acbox-or label:after {
  color: #FFFFFF;
  content: "OPEN▼";
  /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox-or input:checked ~ label::after {
  content: "CLOSE▲";
  /* ラベルをクリックした後のアイコン */
}

.acbox-or div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s;
  /* 開閉スピードの設定 */
}

.acbox-or input:checked ~ div {
  height: auto;
  padding: 18px;
  /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF;
  border: 2px solid #dab499;
  /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox-or input:checked ~ label {
  background: #ff8c00;
  /* クリック後のラベルの背景色 */
}

.acbox-or-under {
  font-size: 15px;
  /* 開いた部分の文字サイズ */
  color: #555555;
  /* 開いた部分の文字色 */
}

/*---------------------------------
  アコーディオンボックス　レッド
  --------------------------------*/
.acbox-red {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 10px;
  /* ボックス全体の位置調整 */
}

.acbox-red label {
  width: auto;
  font-size: 21px;
  /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #dc143c;
  /* ラベルの背景色 */
  position: relative;
  display: block;
  padding: 12px;
  border-radius: 4px;
  /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
  border-bottom: solid 4px #800000;
}

.acbox-red label:hover {
  background: #dc143c;
  /* ラベルにマウスを乗せた時の背景色 */
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
}

.acbox-red input {
  display: none;
}

.acbox-red label:after {
  color: #FFFFFF;
  content: "OPEN▼";
  /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -12px;
}

.acbox-red input:checked ~ label::after {
  content: "CLOSE▲";
  /* ラベルをクリックした後のアイコン */
}

.acbox-red div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s;
  /* 開閉スピードの設定 */
}

.acbox-red input:checked ~ div {
  height: auto;
  padding: 18px;
  /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF;
  border: 2px solid #e7b2bd;
  /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox-red input:checked ~ label {
  background: #dc143c;
  /* クリック後のラベルの背景色 */
}

.acbox-red-under {
  font-size: 15px;
  /* 開いた部分の文字サイズ */
  color: #555555;
  /* 開いた部分の文字色 */
}

/*---------------------------------
  Youtube
  --------------------------------*/
.YoutubeWrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.YoutubeWrapper iframe {
  width: 100%;
  height: 100%;
}

/*short*/
.YoutubeWrapperS {
  width: 70%;
  /* 伸縮する横幅 */
  max-width: 400px;
  /* 最大の横幅 */
  margin: 0 auto 60px auto;
  /* 画面の中央に配置 */
}

.YoutubeWrapperS iframe {
  aspect-ratio: 9 / 16;
  width: 100%;
  height: 100%;
}

/*---------------------------------
  フローティングバナー
  --------------------------------*/
.floating-banner {
  position: fixed;
  /* バナーを追従させる */
  z-index: 99999;
  /* 他の要素の下に隠れないように */
  bottom: 0;
  /* バナーの上下の位置 */
  right: 0;
  /* バナーの左右の位置 */
  width: 300px;
  /* バナーの横幅 */
}

@media screen and (max-width: 899px) {
  .floating-banner {
    display: none;
    /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}

@media screen and (max-width: 899px) {
  .floating-banner {
    display: block;
    /* 消していたバナーを表示させる */
    width: 100vw;
    /* スマホの画面幅いっぱいにバナーを表示 */
  }
}

.floating-banner__image {
  max-width: 100%;
  /* 画像の最大幅 */
}

/*---------------------------------
  ランキング
  --------------------------------*/
.th_ranking {
  font-size: 0.9em;
  background-color: #ffe974;
  border-radius: 5px;
  margin-bottom: 10px;
}

/*---------------------------------
  スマホ背景
  --------------------------------*/
.wd_video_wrap {
  text-align: center;
}

.wd_video {
  width: 70%;
}
